From 6c672d2575764b48c8570e8d10d3434abec1ab5e Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 10 Aug 2016 19:38:20 -0700 Subject: initialise jot editor if it is used as a file drop target and isn't yet opened. --- view/tpl/jot-header.tpl | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 9de049b58..fc87c14d7 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -503,6 +503,7 @@ function enableOnUser(){ // cancel event and hover styling DragDropUploadFileHover(e); + if (!editor) $("#profile-jot-text").val(""); // fetch FileList object @@ -527,7 +528,11 @@ function enableOnUser(){ xhr.addEventListener('load', function (e) { //console.log('xhr upload complete', e); window.fileUploadsCompleted = window.fileUploadsCompleted + 1; - addeditortext(xhr.responseText); + + initEditor(function() { + addeditortext(xhr.responseText); + }); + $('#jot-media').val($('#jot-media').val() + xhr.responseText); // When all the uploads have completed, refresh the page if (window.filesToUpload > 0 && window.fileUploadsCompleted === window.filesToUpload) { -- cgit v1.2.3 From 87a74a44d36db55909401d73e18bd65c66d31461 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 12 Aug 2016 17:40:22 +0200 Subject: possible quickfix for multi-acl not honoring jotnets --- view/js/acl.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'view') diff --git a/view/js/acl.js b/view/js/acl.js index b36fa97a1..411190ac9 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -95,6 +95,12 @@ ACL.prototype.on_submit = function() { that.form_id.append(""); }); + var formfields = $('.profile-jot-net input').serializeArray(); + + $.each(formfields, function(i, field) { + that.form_id.append(""); + }); + }; ACL.prototype.search = function() { -- cgit v1.2.3 From 1b90e851f9e53924923d7110591caf50085236c2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 13 Aug 2016 22:17:47 +0200 Subject: fix #480, enable bbcode autocomplete for photo comments and remove some redundant javascript --- view/js/main.js | 1 + view/js/mod_photos.js | 16 +--------------- view/tpl/comment_item.tpl | 1 + view/tpl/conv_item.tpl | 1 - 4 files changed, 3 insertions(+), 16 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 21157bdfe..6fa4bf78a 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -635,6 +635,7 @@ function updateConvItems(mode,data) { $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1"); /* autocomplete bbcode */ $(".comment-edit-form textarea").bbco_autocomplete('bbcode'); + console.log('bla'); var bimgs = ((preloadImages) ? false : $(".wall-item-body img").not(function() { return this.complete; })); var bimgcount = bimgs.length; diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index e3df3ca68..cbc1d8fa1 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -7,21 +7,7 @@ $(document).ready(function() { $("#photo-edit-newtag").val('@' + data.name); }); - $('#id_body').bbco_autocomplete('bbcode'); - - $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() { - var selstr; - $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() { - selstr = $(this).text(); - $('#jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); - $('#jot-public').hide(); - }); - if(selstr === null) { - $('#jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); - $('#jot-public').show(); - } - }).trigger('change'); - + $('textarea').bbco_autocomplete('bbcode'); showHideBodyTextarea(); }); diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 74917d089..5920efafa 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -71,3 +71,4 @@
+
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 903a23eed..add80885b 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -225,7 +225,6 @@
{{$item.comment}}
-
{{/if}} -- cgit v1.2.3 From 6f0ac133cc18e7c6778b2100de5d3d9334fd4444 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sat, 13 Aug 2016 22:27:53 +0200 Subject: remove js debugging --- view/js/main.js | 1 - 1 file changed, 1 deletion(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 6fa4bf78a..21157bdfe 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -635,7 +635,6 @@ function updateConvItems(mode,data) { $(".comment-edit-form textarea").editor_autocomplete(baseurl+"/acl?f=&n=1"); /* autocomplete bbcode */ $(".comment-edit-form textarea").bbco_autocomplete('bbcode'); - console.log('bla'); var bimgs = ((preloadImages) ? false : $(".wall-item-body img").not(function() { return this.complete; })); var bimgcount = bimgs.length; -- cgit v1.2.3 From 541d0dce90c1984bf37f75f213aac48a569d4f97 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 14 Aug 2016 11:31:00 +0200 Subject: btn/dropdown rendering issue --- view/tpl/profile_advanced.tpl | 54 ++++++++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 24 deletions(-) (limited to 'view') diff --git a/view/tpl/profile_advanced.tpl b/view/tpl/profile_advanced.tpl index 947bdd51c..59490ccc1 100755 --- a/view/tpl/profile_advanced.tpl +++ b/view/tpl/profile_advanced.tpl @@ -1,32 +1,38 @@
- - {{/if}} -- cgit v1.2.3 From cb9ac6dd3435a429a58250d326ff76ca5f97398a Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 14 Aug 2016 06:46:48 -0400 Subject: Replace hardcoded button title in javascript to translatable text --- view/tpl/jot-header.tpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 32d5cae03..3d38df0f0 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -375,12 +375,12 @@ function enableOnUser(){ if($('#jot-nocomment').val() > 0) { $('#jot-nocomment').val(0); $('#profile-nocomment, #profile-nocomment-sub').removeClass('fa-comments-o').addClass('fa-comments'); - $('#profile-nocomment-wrapper').attr('title', 'Comments enabled'); + $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_enabled}}'); } else { $('#jot-nocomment').val(1); $('#profile-nocomment, #profile-nocomment-sub').removeClass('fa-comments').addClass('fa-comments-o'); - $('#profile-nocomment-wrapper').attr('title', 'Comments disabled'); + $('#profile-nocomment-wrapper').attr('title', '{{$nocomment_disabled}}'); } } -- cgit v1.2.3 From 229cc2ac431cdcef80cc45a42178fe7a1e4233e4 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 14 Aug 2016 06:55:02 -0400 Subject: Change text for submenu on small screens to be static toggle statement --- view/tpl/jot.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index bd615b1df..20357b66f 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -158,7 +158,7 @@
  •  {{$voting}}
  • {{/if}} {{if $feature_nocomment}} -
  •  {{$nocommenttitle}}
  • +
  •  {{$nocommenttitlesub}}
  • {{/if}}
    -- cgit v1.2.3 From dd8d20f089670294beedc9fc181a26e95ed76842 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 15 Aug 2016 18:52:27 +0200 Subject: implement groups in the acl select. please notice that selecting *custom selection* now sets an empty (public) acl. it was set to self before... --- view/js/acl.js | 79 +++++++++++++++++++++++++++++++++++++++++++++------------- 1 file changed, 62 insertions(+), 17 deletions(-) (limited to 'view') diff --git a/view/js/acl.js b/view/js/acl.js index 411190ac9..9e3acf8e1 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -13,6 +13,7 @@ function ACL(backend_url) { that.deny_gid = []; that.group_uids = []; + that.selected_id = ''; that.info = $("#acl-info"); that.list = $("#acl-list"); @@ -33,6 +34,10 @@ function ACL(backend_url) { that.acl_select.change(function(event) { var option = that.acl_select.val(); + if(option != 'public' && option != 'onlyme' && option != 'limited') { // selected group + that.on_showgroup(event); + } + if(option == 'public') { // public that.on_showall(event); } @@ -147,18 +152,33 @@ ACL.prototype.on_showall = function(event) { return true; // return true so that state changes from update_view() will be applied }; +ACL.prototype.on_showgroup = function(event) { + var xid = that.acl_select.children(":selected").val(); + that.selected_id = that.acl_select.children(":selected").attr('id'); + + // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton + event.stopPropagation(); + + that.allow_cid = []; + that.allow_gid = [xid]; + that.deny_cid = []; + that.deny_gid = []; + + that.update_view(that.selected_id); + that.on_submit(); + + return true; // return true so that state changes from update_view() will be applied +}; + + ACL.prototype.on_showlimited = function(event) { // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton event.stopPropagation(); - if(that.allow_cid.length === 0 && that.allow_gid.length === 0 && that.deny_cid.length === 0 && that.deny_gid.length === 0) { - that.allow_cid = [that.self[0]]; - } - - that.allow_cid = (that.allow_cid || []); - that.allow_gid = (that.allow_gid || []); - that.deny_cid = (that.deny_cid || []); - that.deny_gid = (that.deny_gid || []); + that.allow_cid = []; + that.allow_gid = []; + that.deny_cid = []; + that.deny_gid = []; that.update_view(event.target.value); that.on_submit(); @@ -237,7 +257,7 @@ ACL.prototype.set_allow = function(itemid) { if (that.deny_cid.indexOf(id)>=0) that.deny_cid.remove(id); break; } - that.update_view(); + that.update_view('limited'); }; ACL.prototype.set_deny = function(itemid) { @@ -261,16 +281,20 @@ ACL.prototype.set_deny = function(itemid) { if (that.allow_cid.indexOf(id)>=0) that.allow_cid.remove(id); break; } - that.update_view(); + that.update_view('limited'); }; ACL.prototype.update_select = function(set) { + if(set != 'public' && set != 'onlyme' && set != 'limited') { + $('#' + set).prop('selected', true ); + } that.showall.prop('selected', set === 'public'); that.onlyme.prop('selected', set === 'onlyme'); that.showlimited.prop('selected', set === 'limited'); }; ACL.prototype.update_view = function(value) { + if(that.form_id) { that.form_id.data('allow_cid', that.allow_cid); that.form_id.data('allow_gid', that.allow_gid); @@ -278,7 +302,7 @@ ACL.prototype.update_view = function(value) { that.form_id.data('deny_gid', that.deny_gid); } - if (that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0) { + if (that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { that.list.hide(); //hide acl-list that.info.show(); //show acl-info that.update_select('public'); @@ -289,6 +313,17 @@ ACL.prototype.update_view = function(value) { } + else if (that.allow_gid.length === 1 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { + that.list.hide(); //hide acl-list + that.info.hide(); //show acl-info + that.selected_id = that.allow_gid[0].substring(0,40); + that.update_select(that.selected_id); + + /* jot acl */ + $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('.profile-jot-net input').attr('disabled', 'disabled'); + } + // if value != 'onlyme' we should fall through this one else if (that.allow_gid.length === 0 && that.allow_cid.length === 1 && that.allow_cid[0] === that.self[0] && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { that.list.hide(); //hide acl-list @@ -306,10 +341,16 @@ ACL.prototype.update_view = function(value) { that.update_select('limited'); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); - $('.profile-jot-net input').attr('disabled', 'disabled'); - + if(that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'limited') { + $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('.profile-jot-net input').attr('disabled', false); + } + else { + $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('.profile-jot-net input').attr('disabled', 'disabled'); + } } + $("#acl-list-content .acl-list-item").each(function() { $(this).removeClass("groupshow grouphide"); }); @@ -384,9 +425,13 @@ ACL.prototype.populate = function(data) { $(data.items).each(function(){ html = "
    "+that.item_tpl+"
    "; html = html.format(this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable); - if (this.uids !== undefined) that.group_uids[this.xid] = this.uids; - if (this.self === 'abook-self') that.self[0] = this.xid; - //console.log(html); + if (this.uids !== undefined) { + that.group_uids[this.xid] = this.uids; + that.onlyme.before($('').attr('id', this.xid.substring(0,40)).attr('value', this.xid).text(this.name)); + } + if (this.self === 'abook-self') { + that.self[0] = this.xid; + } that.list_content.append(html); }); $("#acl-list-content .acl-list-item img[data-src]").each(function(i, el) { -- cgit v1.2.3 From 4b101c2240b32053fad98354585bb69ff315aec2 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 15 Aug 2016 22:54:07 +0200 Subject: provide group options serverside and minor cleanup --- view/js/acl.js | 34 +++++++++++++++++----------------- view/tpl/acl_selector.tpl | 1 + 2 files changed, 18 insertions(+), 17 deletions(-) (limited to 'view') diff --git a/view/js/acl.js b/view/js/acl.js index 9e3acf8e1..086d85750 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -13,6 +13,7 @@ function ACL(backend_url) { that.deny_gid = []; that.group_uids = []; + that.group_ids = []; that.selected_id = ''; that.info = $("#acl-info"); @@ -131,7 +132,7 @@ ACL.prototype.on_onlyme = function(event) { that.deny_gid = []; - that.update_view(event.target.value); + that.update_view(); that.on_submit(); return true; // return true so that state changes from update_view() will be applied @@ -146,28 +147,27 @@ ACL.prototype.on_showall = function(event) { that.deny_cid = []; that.deny_gid = []; - that.update_view(event.target.value); + that.update_view(); that.on_submit(); return true; // return true so that state changes from update_view() will be applied }; ACL.prototype.on_showgroup = function(event) { - var xid = that.acl_select.children(":selected").val(); - that.selected_id = that.acl_select.children(":selected").attr('id'); + var xid = that.acl_select.children(":selected").val(); - // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton - event.stopPropagation(); + // preventDefault() isn't called here as we want state changes from update_view() to be applied to the radiobutton + event.stopPropagation(); - that.allow_cid = []; - that.allow_gid = [xid]; - that.deny_cid = []; - that.deny_gid = []; + that.allow_cid = []; + that.allow_gid = [xid]; + that.deny_cid = []; + that.deny_gid = []; - that.update_view(that.selected_id); - that.on_submit(); + that.update_view(); + that.on_submit(); - return true; // return true so that state changes from update_view() will be applied + return true; // return true so that state changes from update_view() will be applied }; @@ -180,7 +180,7 @@ ACL.prototype.on_showlimited = function(event) { that.deny_cid = []; that.deny_gid = []; - that.update_view(event.target.value); + that.update_view('limited'); that.on_submit(); return true; // return true so that state changes from update_view() will be applied @@ -316,7 +316,7 @@ ACL.prototype.update_view = function(value) { else if (that.allow_gid.length === 1 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value !== 'limited') { that.list.hide(); //hide acl-list that.info.hide(); //show acl-info - that.selected_id = that.allow_gid[0].substring(0,40); + that.selected_id = that.group_ids[that.allow_gid[0]]; that.update_select(that.selected_id); /* jot acl */ @@ -427,17 +427,17 @@ ACL.prototype.populate = function(data) { html = html.format(this.photo, this.name, this.type, this.xid, '', this.self, this.link, this.taggable); if (this.uids !== undefined) { that.group_uids[this.xid] = this.uids; - that.onlyme.before($('').attr('id', this.xid.substring(0,40)).attr('value', this.xid).text(this.name)); + that.group_ids[this.xid] = this.id; } if (this.self === 'abook-self') { that.self[0] = this.xid; } that.list_content.append(html); }); + $("#acl-list-content .acl-list-item img[data-src]").each(function(i, el) { // Replace data-src attribute with src attribute for every image $(el).attr('src', $(el).data("src")); $(el).removeAttr("data-src"); }); - //that.update_view(); }; diff --git a/view/tpl/acl_selector.tpl b/view/tpl/acl_selector.tpl index ddeb25a39..dbddc24a9 100755 --- a/view/tpl/acl_selector.tpl +++ b/view/tpl/acl_selector.tpl @@ -16,6 +16,7 @@ -- cgit v1.2.3 From 7fc254a81c5648653a03a7a631195d7c5212dcba Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 15 Aug 2016 17:18:42 -0700 Subject: Use double quotes for strings passed via templates to javascript. Some translated strings have unescaped single quotes. --- view/tpl/jot-header.tpl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'view') diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 3d38df0f0..c63aa053e 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -411,7 +411,7 @@ function enableOnUser(){ $.post("embedphotos/album", {name: album}, function(data) { if (data['status']) { - $('#embedPhotoModalLabel').html('{{$modalchooseimages}}'); + $('#embedPhotoModalLabel').html("{{$modalchooseimages}}"); $('#embedPhotoModalBodyAlbumDialog').html('\
    -
    - -
    -
    - +
    + +
    + +
    +

    Pages

    +
    + + + {{foreach $pages as $page}} + + + + + + + {{/foreach}} +
    Export?Page TitlePage LinkType
    +
    + + +
    +
    +
    + {{$page.title}}
    +
    +
    +
    + {{$page.pagetitle}}
    +
    +
    +
    + {{$page.mimetype}}
    +
    +
    +
    -
    -- cgit v1.2.3 From 80ed05d45d0e9f7f23848919a3a8af388988fdd9 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 20 Aug 2016 15:22:30 -0400 Subject: Export of pages and their layouts to a zip file works. Bug on importing the exported zip file for pages. --- view/tpl/webpage_export_list.tpl | 6 ++++-- view/tpl/website_portation_tools.tpl | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index 1b943ace8..d980ea981 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -17,7 +17,9 @@

    Pages

    - + + + {{foreach $pages as $page}} diff --git a/view/tpl/website_portation_tools.tpl b/view/tpl/website_portation_tools.tpl index d9ebed179..2f68a7393 100644 --- a/view/tpl/website_portation_tools.tpl +++ b/view/tpl/website_portation_tools.tpl @@ -46,7 +46,7 @@
    - +
    -- cgit v1.2.3 From 2d42d587388aeaedf8b53b2b56b3b4ccda37af03 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 20 Aug 2016 16:05:27 -0400 Subject: Layouts list and are selectable for export to the zip file --- view/tpl/webpage_export_list.tpl | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'view') diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index d980ea981..faffbf8c6 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -47,6 +47,41 @@ {{/foreach}}
    Export?Page TitlePage LinkType
    Export?Page TitlePage LinkType
    @@ -27,7 +29,7 @@ -
    +
    {{$page.title}}
    + +
    +

    Layouts

    +
    + + + + + {{foreach $layouts as $layout}} + + + + + + + {{/foreach}} +
    Export?Layout NameLayout DescriptionType
    +
    + + +
    +
    +
    + {{$layout.name}}
    +
    +
    +
    + {{$layout.description}}
    +
    +
    +
    + {{$layout.mimetype}}
    +
    +
    +
    -- cgit v1.2.3 From 1c61e316b477460f05b263b9a01cc5d37b5e8cb6 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 20 Aug 2016 21:08:15 -0400 Subject: Block export and re-import works. Fixed bug where layout content was not being imported properly. --- view/tpl/webpage_export_list.tpl | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) (limited to 'view') diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index faffbf8c6..1df4586b0 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -82,6 +82,42 @@ {{/foreach}} + +
    +

    Blocks

    +
    + + + + + {{foreach $blocks as $block}} + + + + + + + {{/foreach}} +
    Export?Block TitleBlock NameType
    +
    + + +
    +
    +
    + {{$block.title}}
    +
    +
    +
    + {{$block.name}}
    +
    +
    +
    + {{$block.mimetype}}
    +
    +
    +
    + -- cgit v1.2.3 From d39cf23b2f15ed94048ea7596d7581be7ef8c001 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 21 Aug 2016 06:53:19 -0400 Subject: Visual improvements to the export element table --- view/tpl/webpage_export_list.tpl | 50 ++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 25 deletions(-) (limited to 'view') diff --git a/view/tpl/webpage_export_list.tpl b/view/tpl/webpage_export_list.tpl index 1df4586b0..1d28f62df 100644 --- a/view/tpl/webpage_export_list.tpl +++ b/view/tpl/webpage_export_list.tpl @@ -12,33 +12,33 @@
    -
    -

    Pages

    +
    +
    - + {{foreach $pages as $page}} - - - -
    Export?Page TitlePage LinkType
    Page LinkPage TitleType
    +
    +
    - {{$page.title}}
    + {{$page.pagetitle}}
    +
    - {{$page.pagetitle}}
    + {{$page.title}}
    +
    {{$page.mimetype}}
    @@ -47,33 +47,33 @@ {{/foreach}}
    - +
    -

    Layouts

    +
    - + {{foreach $layouts as $layout}} - - - -
    Export?Layout NameLayout DescriptionType
    Layout NameLayout DescriptionType
    +
    +
    {{$layout.name}}
    +
    {{$layout.description}}
    +
    {{$layout.mimetype}}
    @@ -82,33 +82,33 @@ {{/foreach}}
    - +
    -

    Blocks

    +
    - + {{foreach $blocks as $block}} - - - - -- cgit v1.2.3 From 411d7aa6c498404374457efa7df4faa5da41f0f5 Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Wed, 5 Oct 2016 22:29:57 +0200 Subject: Updating strings for it, nl and es.. --- view/es-es/hmessages.po | 13567 ++++++++++++++++++++++----------------------- view/es-es/hstrings.php | 3199 +++++------ view/it/hmessages.po | 9579 ++++++++++++++++---------------- view/it/hstrings.php | 1924 +++---- view/nl/hmessages.po | 13609 +++++++++++++++++++++++----------------------- view/nl/hstrings.php | 3213 +++++------ 6 files changed, 22714 insertions(+), 22377 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 0e6b25df5..bf2f8c515 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-26 00:02-0700\n" -"PO-Revision-Date: 2016-08-31 06:34+0000\n" +"POT-Creation-Date: 2016-09-30 00:02-0700\n" +"PO-Revision-Date: 2016-10-05 11:10+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -24,84 +24,87 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social Networking" msgstr "Redes sociales" #: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Mostly Public" msgstr "Social - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Restricted" msgstr "Social - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Private" msgstr "Social - Privado" #: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Community Forum" msgstr "Foro de discusión" #: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Mostly Public" msgstr "Foro - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Restricted" msgstr "Foro - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Private" msgstr "Foro - Privado" #: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed Republish" msgstr "Republicar un \"feed\"" #: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Mostly Public" msgstr "Feed - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Restricted" msgstr "Feed - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special Purpose" msgstr "Propósito especial" #: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Celebrity/Soapbox" msgstr "Especial - Celebridad / Tribuna improvisada" #: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Group Repository" msgstr "Especial - Repositorio de grupo" #: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../include/permissions.php:943 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/Settings/Channel.php:442 +#: ../../include/permissions.php:949 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 #: ../../include/selectors.php:140 msgid "Other" msgstr "Otro" #: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:943 +#: ../../include/permissions.php:949 msgid "Custom/Expert Mode" msgstr "Modo personalizado/experto" @@ -109,19 +112,19 @@ msgstr "Modo personalizado/experto" msgid "Can view my channel stream and posts" msgstr "Pueden verse la actividad y publicaciones de mi canal" -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:42 msgid "Can send me their channel stream and posts" msgstr "Se me pueden enviar entradas y contenido de un canal" -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:36 msgid "Can view my default channel profile" msgstr "Puede verse mi perfil de canal predeterminado." -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:37 msgid "Can view my connections" msgstr "Pueden verse mis conexiones" -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:38 msgid "Can view my file storage and photos" msgstr "Pueden verse mi repositorio de ficheros y mis fotos" @@ -141,11 +144,11 @@ msgstr "Pueden crearse / modificarse páginas personales en mi canal" msgid "Can post on my channel (wall) page" msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:44 msgid "Can comment on or like my posts" msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:45 msgid "Can send me private mail messages" msgstr "Se me pueden enviar mensajes privados" @@ -161,7 +164,7 @@ msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a tra msgid "Can chat with me" msgstr "Se puede chatear conmigo" -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:53 msgid "Can source my public posts in derived channels" msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" @@ -169,11 +172,11 @@ msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos msgid "Can administer my channel" msgstr "Se puede administrar mi canal" -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:238 msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 msgid "Collection" msgstr "Colección" @@ -197,196 +200,202 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 -#: ../../include/conversation.php:1033 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1031 +#: ../../include/widgets.php:1683 msgid "Unknown" msgstr "Desconocido" -#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 -#: ../../include/nav.php:95 +#: ../../Zotlabs/Storage/Browser.php:225 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 +#: ../../include/conversation.php:1679 msgid "Files" msgstr "Ficheros" -#: ../../Zotlabs/Storage/Browser.php:227 +#: ../../Zotlabs/Storage/Browser.php:226 msgid "Total" msgstr "Total" -#: ../../Zotlabs/Storage/Browser.php:229 +#: ../../Zotlabs/Storage/Browser.php:228 msgid "Shared" msgstr "Compartido" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:321 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 +#: ../../Zotlabs/Module/Webpages.php:239 msgid "Create" msgstr "Crear" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1696 msgid "Upload" msgstr "Subir" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 -#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Storage/Browser.php:234 +#: ../../Zotlabs/Module/Admin/Channels.php:163 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 msgid "Name" msgstr "Nombre" -#: ../../Zotlabs/Storage/Browser.php:236 +#: ../../Zotlabs/Storage/Browser.php:235 msgid "Type" msgstr "Tipo" -#: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 +#: ../../Zotlabs/Storage/Browser.php:236 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "Tamaño" -#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../Zotlabs/Storage/Browser.php:237 #: ../../Zotlabs/Module/Sharedwithme.php:102 msgid "Last Modified" msgstr "Última modificación" -#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 -#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../Zotlabs/Lib/Apps.php:341 +#: ../../include/channel.php:959 ../../include/channel.php:963 +#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 +#: ../../include/menu.php:113 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Connedit.php:607 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 -#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 -#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../Zotlabs/Lib/Apps.php:342 #: ../../include/conversation.php:660 msgid "Delete" msgstr "Eliminar" -#: ../../Zotlabs/Storage/Browser.php:301 +#: ../../Zotlabs/Storage/Browser.php:299 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Está usando %1$s de su espacio disponible para ficheros." -#: ../../Zotlabs/Storage/Browser.php:306 +#: ../../Zotlabs/Storage/Browser.php:304 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Está usando %1$s de %2$s que tiene a su disposición para ficheros. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:317 +#: ../../Zotlabs/Storage/Browser.php:315 msgid "WARNING:" -msgstr "ATENCIÓN:" +msgstr "ATENCIÓN: " -#: ../../Zotlabs/Storage/Browser.php:322 +#: ../../Zotlabs/Storage/Browser.php:320 msgid "Create new folder" msgstr "Crear nueva carpeta" -#: ../../Zotlabs/Storage/Browser.php:324 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Storage/Browser.php:337 +#: ../../Zotlabs/Storage/Browser.php:335 msgid "Drop files here to immediately upload" msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:229 ../../Zotlabs/Module/Channel.php:270 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Mail.php:121 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 -#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Group.php:13 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 -#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Events.php:264 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 #: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1068 #: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/photos.php:27 ../../include/items.php:3506 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 #: ../../include/attach.php:353 ../../include/attach.php:360 -#: ../../include/attach.php:440 ../../include/attach.php:902 -#: ../../include/attach.php:973 ../../include/attach.php:1125 +#: ../../include/attach.php:440 ../../include/attach.php:909 +#: ../../include/attach.php:980 ../../include/attach.php:1132 msgid "Permission denied." msgstr "Acceso denegado." -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:56 msgid "Not Found" msgstr "No encontrado" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 +#: ../../Zotlabs/Module/Block.php:79 ../../Zotlabs/Module/Display.php:120 +#: ../../include/help.php:59 msgid "Page not found." msgstr "Página no encontrada." -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:66 #: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:403 msgid "Permission denied" msgstr "Permiso denegado" @@ -405,11 +414,10 @@ msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../include/channel.php:859 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." @@ -425,1863 +433,2011 @@ msgstr "Ausente" msgid "Online" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Mensaje no válido" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "sin resultados" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "foro" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "encolado" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "enviado" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "aceptado para el envío" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "Grupo de canales: " -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "actualizado" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." +msgstr "Conexión no válida." -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "actualización ignorada" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permiso denegado" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "red" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "destinatario no encontrado" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "mensaje de correo revocado" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "correo enviado" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo publicaciones" -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." + +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Delivery report for %1$s" -msgstr "Informe de entrega para %1$s" +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opciones" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hay nada para importar." -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Volver a enviar" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." + +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Importación completada." -#: ../../Zotlabs/Module/Api.php:83 +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importar canal" + +#: ../../Zotlabs/Module/Import.php:548 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +"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/Api.php:84 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "Yes" -msgstr "Sí" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Fichero para subir" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valoración" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sitio web:" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "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/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 -#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:74 #: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 -#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 -#: ../../Zotlabs/Module/Settings.php:935 -#: ../../Zotlabs/Module/Settings.php:1040 -#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 -#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 -#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 -#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Setup.php:317 +#: ../../Zotlabs/Module/Setup.php:365 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:484 #: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 -#: ../../include/widgets.php:763 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:725 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 msgid "Submit" msgstr "Enviar" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 -msgid "Public Hubs" -msgstr "Servidores públicos" - -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Marcador añadido" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "Dirección del hub" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mis marcadores" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo de acceso" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Normas de registro" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, 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/Pubsites.php:33 -msgid "Stats" -msgstr "Estadísticas" +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s cuentas eliminadas" +msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" +msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "Valoraciones" +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" +msgstr "La cuenta '%s' ha sido eliminada" -#: ../../Zotlabs/Module/Pubsites.php:43 -msgid "Rate" -msgstr "Valorar" +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" +msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ubicación" +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" +msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 -#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Ver" +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Administration" +msgstr "Administración" -#: ../../Zotlabs/Module/Register.php:49 -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/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1561 +msgid "Accounts" +msgstr "Cuentas" -#: ../../Zotlabs/Module/Register.php:55 -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/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" +msgstr "seleccionar todo" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" +msgstr "Inscripciones en espera de confirmación" -#: ../../Zotlabs/Module/Register.php:131 -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/Admin/Accounts.php:170 +msgid "Request date" +msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Register.php:137 -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/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2212 +msgid "Email" +msgstr "Correo electrónico" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." +msgstr "Sin registros." -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "El registro está deshabilitado en este sitio." +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Aprobar" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "El registro en este hub está sometido a aprobación previa." +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" +msgstr "Rechazar" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Bloquear" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" +msgstr "Todos los canales" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" +msgstr "Fecha de registro" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" +msgstr "Último acceso" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" +msgstr "Caduca" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" +msgstr "Clase de servicio" + +#: ../../Zotlabs/Module/Admin/Accounts.php:189 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." +"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/Register.php:215 -msgid "Terms of Service" -msgstr "Términos del servicio" +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +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/Register.php:221 +#: ../../Zotlabs/Module/Admin/Channels.php:30 #, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canales censurados/no censurados" +msgstr[1] "%s canales censurados/no censurados" -#: ../../Zotlabs/Module/Register.php:223 +#: ../../Zotlabs/Module/Admin/Channels.php:39 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s código permitido/no permitido al canal" +msgstr[1] "%s código permitido/no permitido al canal" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Elija una contraseña" +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canales eliminados" +msgstr[1] "%s canales eliminados" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" +msgstr "Canal no encontrado" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' eliminado" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Name or caption" -msgstr "Nombre o descripción" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censurado" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' no censurado" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Código permitido al canal '%s'" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Admin/Channels.php:99 #, php-format -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" +msgid "Channel '%s' code disallowed" +msgstr "Código no permitido al canal '%s'" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1562 +msgid "Channels" +msgstr "Canales" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Select a channel role with your privacy requirements." -msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" +msgstr "Censurar" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" +msgstr "No censurar" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" +msgstr "Permitir código" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sí" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" +msgstr "No permitir código" -#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 -msgid "Registration" -msgstr "Registro" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1651 +msgid "Channel" +msgstr "Canal" -#: ../../Zotlabs/Module/Register.php:253 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 -#: ../../boot.php:1720 -msgid "Register" -msgstr "Registrarse" +#: ../../Zotlabs/Module/Admin/Channels.php:164 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Dirección" -#: ../../Zotlabs/Module/Register.php:266 +#: ../../Zotlabs/Module/Admin/Channels.php:166 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones." +"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 "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Marcador añadido" +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mis marcadores" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "La actualización ha sido marcada como exitosa" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Acceso público denegado." +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." +msgstr "La actualización de %s se ha realizado exitosamente." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 -#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 -msgid "Item not found." -msgstr "Elemento no encontrado." +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1665 ../../include/nav.php:94 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." +msgstr "No se encuentra la función de actualización de %s." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 -#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1292 -msgid "Cancel" -msgstr "Cancelar" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." +msgstr "No ha fallado ninguna actualización." -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento no válido." +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Han fallado las actualizaciones" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no encontrado." +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Intentar ejecutar este paso de actualización automáticamente" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "Desactivado" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- seleccionar -" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "Activado" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 -#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Bloquear la funcionalidad %s" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "No se encuentra el grupo" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Gestionar las funcionalidades" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No se encuentra el canal" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Actualizado el informe de configuraciones." -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "foro" +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1587 +#: ../../include/widgets.php:1597 +msgid "Logs" +msgstr "Informes" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Buscar resultados para:" +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Vaciar" -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Depuración" -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Grupo de canales: " +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Fichero de informe" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Conexión no válida." +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloqueadas" +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Nivel de depuración" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignoradas" +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 +#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:40 +#: ../../Zotlabs/Module/Admin.php:62 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3427 +msgid "Item not found." +msgstr "Elemento no encontrado." -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Ocultas" +#: ../../Zotlabs/Module/Admin/Plugins.php:284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extensión %s desactivada." -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archivadas" +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extensión %s activada." -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1568 -msgid "New" -msgstr "Nuevas" +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" +msgstr "Desactivar" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 -msgid "All" -msgstr "Todos/as" +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" +msgstr "Activar" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1565 +msgid "Plugins" +msgstr "Extensiones (plugins)" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" +msgstr "Cambiar" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Todas las conexiones" +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" +msgstr "Ajustes" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " +msgstr "Autor:" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " +msgstr "Mantenedor:" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " +msgstr "Versión mínima del proyecto:" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " +msgstr "Versión máxima del proyecto:" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " +msgstr "Versión mínima de PHP:" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Pendiente de aprobación" +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " +msgstr "Configuraciones compatibles con este servidor:" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " +msgstr "Se requiere:" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Editar conexión" +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" +msgstr "Deshabilitado - versiones incompatibles" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Eliminar conexión" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Escriba la URL pública del repositorio git del plugin." -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Dirección del canal" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" +msgstr "URL del repositorio git del plugin" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Red" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" +msgstr "Nombre personalizado del repositorio" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 -msgid "Status" -msgstr "Estado" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" +msgstr "(opcional)" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Conectado/a" +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" +msgstr "Descargar el repositorio" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Aprobar esta conexión" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" +msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Approve" -msgstr "Aprobar" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Instalar" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignorar esta conexión" +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1248 ../../include/conversation.php:1297 +msgid "Cancel" +msgstr "Cancelar" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" -msgstr "Ignorar" +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" +msgstr "Gestionar los repositorios" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" +msgstr "Repositorios de los plugins instalados" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:190 -msgid "Connections" -msgstr "Conexiones" +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" +msgstr "Instalar un nuevo repositorio de plugins" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 -#: ../../include/text.php:937 ../../include/acl_selectors.php:174 -#: ../../include/nav.php:169 -msgid "Search" -msgstr "Buscar" +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Actualizar" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Buscar sus conexiones" +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" +msgstr "Cambiar la rama" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Buscar conexiones" +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Photos.php:989 ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Eliminar" -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Encontrar" +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" +msgstr "Nuevo campo en el perfil" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" +msgstr "Alias del campo" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Imágenes de portada del perfil" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" +msgstr "Nombre del campo en el sistema" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "El ajuste del tamaño de la imagen ha fallado." +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" +msgstr "Tipo de entrada" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" +msgstr "Nombre del campo" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "La carga de la imagen ha fallado." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" +msgstr "Etiqueta a mostrar en la página del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "No ha sido posible procesar la imagen." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" +msgstr "Texto de ayuda" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 -msgid "female" -msgstr "mujer" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" +msgstr "Información adicional (opcional)" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../include/text.php:972 ../../include/text.php:984 +#: ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 -msgid "male" -msgstr "hombre" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" +msgstr "Definición del campo no encontrada" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" +msgstr "Modificar el campo del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1568 +msgid "Profile Fields" +msgstr "Campos del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 -msgid "cover photo" -msgstr "Imagen de portada del perfil" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" +msgstr "Campos básicos del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto no disponible." +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" +msgstr "Campos avanzados del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Subir fichero:" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" +msgstr "(Además de los campos básicos)" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleccionar un perfil:" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" +msgstr "Todos los campos disponibles" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Subir imagen de portada del perfil" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" +msgstr "Campos personalizados" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1180 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" +msgstr "Crear un campo personalizado" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "Omitir este paso" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" +msgstr "Estadísticas de la cola" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes de fotos" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" +msgstr "Total de entradas" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Recortar imagen" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" +msgstr "Prioridad" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" +msgstr "Dirección de destino" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Edición completada" +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" +msgstr "Marcar el servidor como permanentemente fuera de línea" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" +msgstr "Vaciar la cola para este servidor" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" +msgstr "Último contacto conocido" -#: ../../Zotlabs/Module/Setup.php:191 +#: ../../Zotlabs/Module/Admin/Security.php:77 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." +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." -#: ../../Zotlabs/Module/Setup.php:198 -msgid "Could not create table." -msgstr "No se puede crear la tabla." +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " -#: ../../Zotlabs/Module/Setup.php:203 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"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/
    " -#: ../../Zotlabs/Module/Setup.php:207 +#: ../../Zotlabs/Module/Admin/Security.php:82 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." +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." -#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 -#: ../../Zotlabs/Module/Setup.php:733 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1563 +msgid "Security" +msgstr "Seguridad" -#: ../../Zotlabs/Module/Setup.php:267 -msgid "System check" -msgstr "Verificación del sistema" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Bloquear páginas públicas" -#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Siguiente" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." -#: ../../Zotlabs/Module/Setup.php:272 -msgid "Check again" -msgstr "Verificar de nuevo" +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database connection" -msgstr "Conexión a la base de datos" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Setup.php:295 -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/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Se aceptan dominios de correo electrónico" -#: ../../Zotlabs/Module/Setup.php:296 +#: ../../Zotlabs/Module/Admin/Security.php:92 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." +"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 "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " -#: ../../Zotlabs/Module/Setup.php:297 -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/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "No se permiten dominios de correo electrónico" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Default is 127.0.0.1" -msgstr "De forma predeterminada es 127.0.0.1" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Permitir la comunicación solo desde estos sitios" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Port" -msgstr "Puerto de la base de datos" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Bloquear la comunicación desde estos sitios" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Permitir la comunicación solo desde estos canales" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Name" -msgstr "Nombre de la base de datos" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Bloquear la comunicación desde estos canales" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Type" -msgstr "Tipo de base de datos" +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -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/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Website URL" -msgstr "Dirección del sitio web" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Bloquear contenido con HTML incorporado desde estos dominios" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." +msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" +msgstr "Predeterminado" + +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" +msgstr "móvil" + +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" +msgstr "experimental" + +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" +msgstr "no soportado" + +#: ../../Zotlabs/Module/Admin/Site.php:221 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" +msgstr "No" + +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" +msgstr "Sí - con aprobación" + +#: ../../Zotlabs/Module/Admin/Site.php:223 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Api.php:84 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" +msgstr "Sí" + +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" +msgstr "Mi sitio no es un servidor público" + +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" +msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" +msgstr "Mi sitio es un servicio gratuito" + +#: ../../Zotlabs/Module/Admin/Site.php:231 +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:242 ../../Zotlabs/Module/Setup.php:336 msgid "Basic/Minimal Social Networking" msgstr "Red social básica o mínima" -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 msgid "Standard Configuration (default)" msgstr "Configuración estándar (por defecto)" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 msgid "Professional" msgstr "Profesional" -#: ../../Zotlabs/Module/Setup.php:343 -msgid "Site settings" -msgstr "Ajustes del sitio" +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" +msgstr "Principiante / Básico" + +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" +msgstr "Novato: no cualificado, pero dispuesto a aprender" + +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio: bastante cómodo" + +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "Avanzado: muy cómodo" + +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" +msgstr "Experto: puedo escribir código informático" + +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" +msgstr "Asistente: probablemente sé más que tú" + +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1560 +msgid "Site" +msgstr "Sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Register.php:253 +msgid "Registration" +msgstr "Registro" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" +msgstr "Subir fichero" + +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" +msgstr "Políticas" + +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzado" + +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" +msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 msgid "Server Configuration/Role" msgstr "Configuración del servidor" -#: ../../Zotlabs/Module/Setup.php:399 -msgid "PHP version 5.5 or greater is required." -msgstr "Se requiere la versión 5.5, o superior, de PHP." +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" +msgstr "Nivel de habilidad técnica predeterminado del sitio" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version" -msgstr "Versión de PHP" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Se utiliza para proporcionar la experiencia de los miembros adaptada al nivel de comodidad" -#: ../../Zotlabs/Module/Setup.php:415 -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/Admin/Site.php:281 +msgid "Lock the technical skill level setting" +msgstr "Bloquear el ajuste del nivel de habilidad técnica" -#: ../../Zotlabs/Module/Setup.php:416 -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/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" +msgstr "Los miembros pueden configurar por defecto su nivel de comodidad técnica" -#: ../../Zotlabs/Module/Setup.php:420 -msgid "PHP executable path" -msgstr "Ruta del ejecutable PHP" +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "Banner/Logo" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" +msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Setup.php:420 +#: ../../Zotlabs/Module/Admin/Site.php:285 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." +"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/Setup.php:425 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" +msgstr "Idioma del sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" +msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Setup.php:434 +#: ../../Zotlabs/Module/Admin/Site.php:287 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\"." +"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/Setup.php:435 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la transmisión de mensajes." +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" +msgstr "Tema del sistema para móviles" -#: ../../Zotlabs/Module/Setup.php:438 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móviles" -#: ../../Zotlabs/Module/Setup.php:456 -#, 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/Admin/Site.php:290 +msgid "Allow Feeds as Connections" +msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Setup.php:461 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Setup.php:463 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Setup.php:486 +#: ../../Zotlabs/Module/Admin/Site.php:291 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." +"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/Setup.php:487 -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/Admin/Site.php:292 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/Setup.php:490 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" +msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/Setup.php:502 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" +#: ../../Zotlabs/Module/Admin/Site.php:293 +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/Setup.php:503 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" +#: ../../Zotlabs/Module/Admin/Site.php:294 +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/Setup.php:504 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "Texto del registro" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "mysqli or postgres PHP module" -msgstr "módulo PHP mysqli o postgres" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" +#: ../../Zotlabs/Module/Admin/Site.php:296 +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/Setup.php:507 -msgid "xml PHP module" -msgstr "módulo PHP xml" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" +msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Setup.php:511 +#: ../../Zotlabs/Module/Admin/Site.php:297 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." +"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/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Setup.php:517 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" +"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/Setup.php:525 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Setup.php:529 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." +"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/Setup.php:533 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" +msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Setup.php:537 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." - -#: ../../Zotlabs/Module/Setup.php:541 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." +"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/Setup.php:545 -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/Admin/Site.php:301 +msgid "Force publish" +msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Admin/Site.php:301 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." +"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/Setup.php:564 -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/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Setup.php:565 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." +"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/Setup.php:566 +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" +msgstr "Iniciar sesión en la página personal" + +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." +"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/Setup.php:569 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" +msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." - -#: ../../Zotlabs/Module/Setup.php:584 -#, 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." +"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/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 -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/Admin/Site.php:306 +msgid "Directory Server URL" +msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Setup.php:586 -#, 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/Admin/Site.php:306 +msgid "Default directory server" +msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Setup.php:589 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" +msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Setup.php:605 -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 Red top " -"level folder" -msgstr "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior" +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" +msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Setup.php:609 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" +msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Setup.php:642 -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/Admin/Site.php:310 +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/Setup.php:643 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "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/Admin/Site.php:311 +msgid "Delivery interval" +msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Setup.php:644 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." +"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/Setup.php:645 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "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/Admin/Site.php:312 +msgid "Deliveries per process" +msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Setup.php:646 +#: ../../Zotlabs/Module/Admin/Site.php:312 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." +"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/Setup.php:647 -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/Admin/Site.php:313 +msgid "Poll interval" +msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "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." +"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/Setup.php:652 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" +msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Setup.php:658 +#: ../../Zotlabs/Module/Admin/Site.php:314 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:" +"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/Setup.php:661 -msgid "Url rewrite is working" -msgstr "La reescritura de las direcciones funciona correctamente" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Setup.php:670 -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/Admin/Site.php:315 +msgid "0 for no expiration of imported content" +msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." +msgstr "Ajustes del tema actualizados." -#: ../../Zotlabs/Module/Setup.php:731 -msgid "

    What next

    " -msgstr "

    Siguiente paso

    " +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." +msgstr "No se han encontrado temas." -#: ../../Zotlabs/Module/Setup.php:732 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "Instantánea de pantalla" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoración" -msgstr[1] "%d valoraciones" +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1566 +msgid "Themes" +msgstr "Temas" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Género:" +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" +msgstr "[Experimental]" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Estado:" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" +msgstr "[No soportado]" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Página personal:" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1672 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Edad:" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento no válido." -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/event.php:52 ../../include/event.php:84 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Ubicación:" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no encontrado." -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descripción:" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Lugar de nacimiento:" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Sobre mí:" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/channel.php:1034 ../../include/conversation.php:957 -msgid "Connect" -msgstr "Conectar" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "No se puede asociar a un destinatario." -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Foro público:" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "No se puede establecer la comunicación con el canal solicitado." -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Palabras clave:" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "No sugerir:" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Conexiones comunes:" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Mensajes" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Directorio global:" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Mensaje revocado." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Directorio local:" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversación eliminada." -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Encontrar:" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1184 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Sugerencias de canales" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "siguiente página" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "página anterior" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Ordenar opciones" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabético" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Para:" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabético inverso" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Asunto:" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "De más nuevo a más antiguo" +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "Su mensaje:" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "De más antiguo a más nuevo" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1244 +msgid "Attach file" +msgstr "Adjuntar fichero" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas entradas pueden estar ocultas)." +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1149 +msgid "Insert web link" +msgstr "Insertar enlace web" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Este sitio no es un servidor de directorio" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Enviar" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "El servidor de este directorio necesita un \"token\" de acceso" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1289 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento no encontrado" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:737 +#: ../../include/conversation.php:1294 +msgid "Encrypt text" +msgstr "Cifrar texto" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nombre del bloque" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Borrar mensaje" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" -msgstr "Insertar enlace web" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Informe de transmisión" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 -msgid "Title (optional)" -msgstr "Título (opcional)" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revocar el mensaje" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modificar este bloque" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nombre de la plantilla" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Eliminar conversación" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descripción de la plantilla (opcional)" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modificar la plantilla" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Responder" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Enlace de la página" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Editar la página web" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloqueadas" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoradas" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Ocultas" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nombre del menú" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archivadas" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1573 +msgid "New" +msgstr "Nuevas" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Título del menú" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Todos/as" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Todas las conexiones" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Enviar y proceder" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menús" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Eliminar" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creado" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostrar solo las conexiones archivadas" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Editado" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Pendiente de aprobación" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Borrar este menú" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Editar conexión" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modificar este menú" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Eliminar conexión" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Dirección del canal" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no encontrado" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Red" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modificar el menú" +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Estado" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Conectado/a" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nombre del menú" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignorar esta conexión" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Título del menú" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connedit.php:583 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignorar" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:901 ../../include/nav.php:191 +msgid "Connections" +msgstr "Conexiones" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:170 ../../include/widgets.php:315 +msgid "Search" +msgstr "Buscar" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "Aplicación instalada." +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Buscar sus conexiones" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Aplicación con errores" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Buscar conexiones" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Código incorporado" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Encontrar" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modificar la aplicación" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crear una aplicación" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Imágenes de portada del perfil" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "El ajuste del tamaño de la imagen ha fallado." -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obligatorio" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "No ha sido posible procesar la imagen" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Dirección (URL) de la aplicación" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "La carga de la imagen ha fallado." -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripción" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4341 +msgid "female" +msgstr "mujer" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4342 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Temas (opcional, lista separada por comas)" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4343 +msgid "male" +msgstr "hombre" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versión" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4344 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Precio de la aplicación" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4346 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Dirección (URL) donde adquirir la aplicación" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" +msgstr "Imagen de portada del perfil" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Búsqueda de Documentación" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto no disponible." -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Ayuda:" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Subir fichero:" -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:163 -msgid "Help" -msgstr "Ayuda" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleccionar un perfil:" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "Documentación de $Projectname" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Subir imagen de portada del perfil" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento no disponible" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Plantilla actualizada." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "Omitir este paso" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "Seleccione una foto de sus álbumes de fotos" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Plantilla no encontrada" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Recortar imagen" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nombre del módulo:" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Ayuda para el diseño de plantillas de página" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Edición completada" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contenido desde Firefox a $Projectname" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Editar la entrada" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Conexión actualizada." -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible para:" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ahora está conectado/a" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permiso denegado" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Fichero no encontrado." +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modificar los permisos del fichero" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 -msgid "Permissions" -msgstr "Permisos" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Establecer/editar los permisos" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:953 +msgid "View Profile" +msgstr "Ver el perfil" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Incluir todos los ficheros y subcarpetas" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Volver a la lista de ficheros" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiar/pegar este código para adjuntar el fichero al envío" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Compartir este fichero" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostrar la dirección de este fichero" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Avisar a sus contactos sobre este fichero" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "El nombre es obligatorio" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Dejar de ignorar" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 -#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Actualizar" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Este canal tiene un límite de %d tokens" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Desarchivar" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Se requiere el nombre y la contraseña." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivar" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token salvado." +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" -#: ../../Zotlabs/Module/Settings.php:312 -msgid "Not valid email." -msgstr "Correo electrónico no válido." +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" -#: ../../Zotlabs/Module/Settings.php:315 -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/Connedit.php:599 +msgid "Unhide" +msgstr "Mostrar" -#: ../../Zotlabs/Module/Settings.php:324 -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/Connedit.php:599 +msgid "Hide" +msgstr "Ocultar" -#: ../../Zotlabs/Module/Settings.php:341 -msgid "Password verification failed." -msgstr "La comprobación de la contraseña ha fallado." +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../Zotlabs/Module/Settings.php:348 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "¡Esta conexión está oculta!" -#: ../../Zotlabs/Module/Settings.php:352 -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/Connedit.php:610 +msgid "Delete this connection" +msgstr "Eliminar esta conexión" -#: ../../Zotlabs/Module/Settings.php:366 -msgid "Password changed." -msgstr "Contraseña cambiada." +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "Yo" -#: ../../Zotlabs/Module/Settings.php:368 -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/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "Familia" -#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 -#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 -#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 -#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 #: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/selectors.php:123 +#: ../../include/widgets.php:531 msgid "Friends" msgstr "Amigos/as" -#: ../../Zotlabs/Module/Settings.php:617 -msgid "Settings updated." -msgstr "Ajustes actualizados." - -#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 -#: ../../Zotlabs/Module/Settings.php:743 -msgid "Add application" -msgstr "Añadir aplicación" - -#: ../../Zotlabs/Module/Settings.php:684 -msgid "Name of application" -msgstr "Nombre de la aplicación" - -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 -msgid "Consumer Key" -msgstr "Consumer Key" - -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" - -#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "Conocidos/as" -#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 -msgid "Redirect" -msgstr "Redirigir" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Settings.php:687 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 -msgid "Icon url" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Ajustar la afinidad" -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Opcional" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Ajustar el perfil" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Application not found." -msgstr "Aplicación no encontrada." +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Settings.php:742 -msgid "Connected Apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "-" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Client key starts with" -msgstr "La \"client key\" empieza por" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Settings.php:747 -msgid "No name" -msgstr "Sin nombre" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3993 +#, php-format +msgid "Connection: %s" +msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Settings.php:748 -msgid "Remove authorization" -msgstr "Eliminar autorización" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Settings.php:761 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de los complementos" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Settings.php:768 -msgid "Feature/Addon Settings" -msgstr "Ajustes de los complementos" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "Account Settings" -msgstr "Configuración de la cuenta" +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "Current Password" -msgstr "Contraseña actual" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Settings.php:793 -msgid "Enter New Password" -msgstr "Escribir una nueva contraseña" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Confirm New Password" -msgstr "Confirmar la nueva contraseña" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." +#: ../../Zotlabs/Module/Connedit.php:762 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valoración" -#: ../../Zotlabs/Module/Settings.php:796 -#: ../../Zotlabs/Module/Settings.php:1236 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Settings.php:797 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Eliminar cuenta" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Settings.php:832 -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." -msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Settings.php:834 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " +"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/Settings.php:869 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Tokens de acceso para invitados" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Settings.php:876 -msgid "Login Name" -msgstr "Nombre de inicio de sesión" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Settings.php:877 -msgid "Login Password" -msgstr "Contraseña de inicio de sesión" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Settings.php:878 -msgid "Expires (yyyy-mm-dd)" -msgstr "Expira (aaaa-mm-dd)" +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "heredado" + +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 msgid "Their Settings" msgstr "Sus ajustes" -#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 msgid "My Settings" msgstr "Mis ajustes" -#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 -msgid "inherited" -msgstr "heredado" - -#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 msgid "Individual Permissions" msgstr "Permisos individuales" -#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -2289,507 +2445,506 @@ msgid "" " settings here." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "Off" -msgstr "Desactivado" - -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "On" -msgstr "Activado" - -#: ../../Zotlabs/Module/Settings.php:910 -msgid "Additional Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Module/Settings.php:934 -msgid "Connector Settings" -msgstr "Configuración del conector" - -#: ../../Zotlabs/Module/Settings.php:981 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" - -#: ../../Zotlabs/Module/Settings.php:984 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" - -#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 -msgid "mobile" -msgstr "móvil" - -#: ../../Zotlabs/Module/Settings.php:1035 -msgid "Display Settings" -msgstr "Ajustes de visualización" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Settings.php:1036 -msgid "Theme Settings" -msgstr "Ajustes del tema" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Última actualización:" -#: ../../Zotlabs/Module/Settings.php:1037 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento no encontrado" -#: ../../Zotlabs/Module/Settings.php:1038 -msgid "Content Settings" -msgstr "Ajustes del contenido" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1260 +msgid "Title (optional)" +msgstr "Título (opcional)" -#: ../../Zotlabs/Module/Settings.php:1045 -msgid "Select scheme" -msgstr "Elegir un esquema" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modificar este bloque" -#: ../../Zotlabs/Module/Settings.php:1047 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nombre de la plantilla" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Preload images before rendering the page" -msgstr "Carga previa de las imágenes antes de generar la página" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descripción de la plantilla (opcional)" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modificar la plantilla" -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Enlace de la página" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Editar la página web" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum number of conversations to load at any time:" -msgstr "Máximo número de conversaciones a cargar en cualquier momento:" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de plantilla de página del sistema - (avanzado)" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Settings.php:1057 -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Use blog/list mode on grid page" -msgstr "Mostrar mi red en modo blog" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" +msgstr "Menús" -#: ../../Zotlabs/Module/Settings.php:1059 -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "click to expand content exceeding this height" -msgstr "Pulsar para expandir el contenido que exceda de esta altura" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Eliminar" -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "Grid page max height of content (in pixels)" -msgstr "Altura máxima del contenido de mi red (en píxeles)" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:251 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creado" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Nobody except yourself" -msgstr "Nadie excepto usted" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Editado" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "Approved connections" -msgstr "Conexiones aprobadas" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "Any connections" -msgstr "Cualquier conexión" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" -#: ../../Zotlabs/Module/Settings.php:1095 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." -#: ../../Zotlabs/Module/Settings.php:1096 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" -#: ../../Zotlabs/Module/Settings.php:1171 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" -#: ../../Zotlabs/Module/Settings.php:1176 -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/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Your channel address is" -msgstr "Su dirección de canal es" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" -#: ../../Zotlabs/Module/Settings.php:1227 -msgid "Channel Settings" -msgstr "Ajustes del canal" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" -#: ../../Zotlabs/Module/Settings.php:1234 -msgid "Basic Settings" -msgstr "Configuración básica" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" -#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nombre completo:" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Settings.php:1237 -msgid "Your Timezone:" -msgstr "Su huso horario:" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Default Post Location:" -msgstr "Localización geográfica predeterminada para sus publicaciones:" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "Aplicación instalada." -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Geographical location to display on your posts" -msgstr "Localización geográfica que debe mostrarse en sus publicaciones" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Aplicación con errores" -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "Use Browser Location:" -msgstr "Usar la localización geográfica del navegador:" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Código incorporado" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "Adult Content" -msgstr "Contenido solo para adultos" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modificar la aplicación" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crear una aplicación" -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:257 +msgid "Required" +msgstr "Obligatorio" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Hide my online presence" -msgstr "Ocultar mi presencia en línea" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Dirección (URL) de la aplicación" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../Zotlabs/Module/Events.php:465 +msgid "Description" +msgstr "Descripción" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Settings.php:1251 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../Zotlabs/Module/Settings.php:1252 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Temas (opcional, lista separada por comas)" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versión" -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Precio de la aplicación" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Dirección (URL) donde adquirir la aplicación" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" +msgstr "Servidores públicos" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Advanced Privacy Settings" -msgstr "Configuración de privacidad avanzada" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Expire other channel content after this many days" -msgstr "Caducar contenido de otros canales después de este número de días" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Dirección del hub" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "0 or blank to use the website limit." -msgstr "0 o en blanco para usar el límite del sitio web." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo de acceso" -#: ../../Zotlabs/Module/Settings.php:1260 -#, php-format -msgid "This website expires after %d days." -msgstr "Este sitio web caduca después de %d días." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Normas de registro" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "This website does not expire imported content." -msgstr "Este sitio web no caduca el contenido importado." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Estadísticas" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "The website limit takes precedence if lower than your limit." -msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:958 +msgid "Ratings" +msgstr "Valoraciones" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "Valorar" -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Default Post and Publish Permissions" -msgstr "Permisos predeterminados de entradas y publicaciones" +#: ../../Zotlabs/Module/Pubsites.php:51 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicación" -#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" +#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Webpages.php:246 +#: ../../Zotlabs/Module/Events.php:680 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ver" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Use my default audience setting for the type of object published" -msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento no disponible" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Channel permissions category:" -msgstr "Categoría de los permisos del canal:" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Notification Settings" -msgstr "Configuración de las notificaciones" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" -#: ../../Zotlabs/Module/Settings.php:1281 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contenido desde Firefox a $Projectname" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "accepting a friend request" -msgstr "Acepte una solicitud de amistad" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Plantilla actualizada." -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "making an interesting profile change" -msgstr "Realice un cambio interesante en su perfil" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." -#: ../../Zotlabs/Module/Settings.php:1285 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripción de Páginas" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Plantilla no encontrada" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Nombre del módulo:" -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (\"muro\")" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Ayuda para el diseño de plantillas de página" -#: ../../Zotlabs/Module/Settings.php:1289 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" -#: ../../Zotlabs/Module/Settings.php:1291 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." -#: ../../Zotlabs/Module/Settings.php:1292 -msgid "You are tagged in a post" -msgstr "Usted sea etiquetado en una publicación" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visible para:" -#: ../../Zotlabs/Module/Settings.php:1293 -msgid "You are poked/prodded/etc. in a post" -msgstr "Reciba un toque o incitación en una publicación" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permiso denegado" -#: ../../Zotlabs/Module/Settings.php:1296 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Fichero no encontrado." -#: ../../Zotlabs/Module/Settings.php:1298 -msgid "Unseen grid activity" -msgstr "Nueva actividad en la red" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modificar los permisos del fichero" -#: ../../Zotlabs/Module/Settings.php:1299 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:658 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permisos" -#: ../../Zotlabs/Module/Settings.php:1300 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Establecer/editar los permisos" -#: ../../Zotlabs/Module/Settings.php:1300 -#: ../../Zotlabs/Module/Settings.php:1305 -#: ../../Zotlabs/Module/Settings.php:1306 -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "Recommended" -msgstr "Recomendado" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Incluir todos los ficheros y subcarpetas" -#: ../../Zotlabs/Module/Settings.php:1301 -msgid "Upcoming events" -msgstr "Próximos eventos" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Volver a la lista de ficheros" -#: ../../Zotlabs/Module/Settings.php:1302 -msgid "Events today" -msgstr "Eventos de hoy" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copiar/pegar este código para adjuntar el fichero al envío" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Compartir este fichero" -#: ../../Zotlabs/Module/Settings.php:1304 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Mostrar la dirección de este fichero" -#: ../../Zotlabs/Module/Settings.php:1305 -msgid "System info messages" -msgstr "Mensajes de información del sistema" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Avisar a sus contactos sobre este fichero" -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuar" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "New connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "System Registrations" -msgstr "Registros del sistema" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" -#: ../../Zotlabs/Module/Settings.php:1309 +#: ../../Zotlabs/Module/Connect.php:93 msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Notify me of events this many days in advance" -msgstr "Avisarme de los eventos con algunos días de antelación" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "Default photo upload folder" -msgstr "Carpeta por defecto de las fotos subidas" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" -#: ../../Zotlabs/Module/Settings.php:1319 -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "%Y - current year, %m - current month" -msgstr "%Y - año en curso, %m - mes actual" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crear" -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "Default file upload folder" -msgstr "Carpeta por defecto de los archivos subidos" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Administración de canales" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canal actual" -#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Eliminar el canal" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Cambiar a uno de sus canales seleccionándolo." -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Remove this channel." -msgstr "Eliminar este canal." +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canal principal" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Firefox Share $Projectname provider" -msgstr "Servicio de compartición de Firefox: proveedor $Projectname" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Convertir en predeterminado" -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Start calendar week on monday" -msgstr "Comenzar el calendario semanal por el lunes" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "red" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas isolicitudes de conexión" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canal delegado" #: ../../Zotlabs/Module/Group.php:24 msgid "Privacy group created." @@ -2800,7 +2955,7 @@ msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3931 +#: ../../include/items.php:3960 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." @@ -2844,649 +2999,616 @@ msgstr "Todos los canales conectados" msgid "Click on a channel to add or remove." msgstr "Haga clic en un canal para agregarlo o quitarlo." -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Mensaje no válido" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Fotos del perfil" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "sin resultados" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Álbum no encontrado." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Borrar álbum" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "encolado" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "enviado" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Borrar foto" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "aceptado para el envío" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "actualizado" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "actualización ignorada" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permiso denegado" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "destinatario no encontrado" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Subir fotos" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "mensaje de correo revocado" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleccionar uno existente (doble click)" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "correo enviado" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Crear un mensaje de estado para esta subida" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Informe de entrega para %1$s" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Título (opcional):" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opciones" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descripción (opcional):" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Volver a enviar" + +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "página web" + +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloque" + +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "plantilla" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Fotos de contacto" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importación completada" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" -msgstr "Ver foto" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importar elementos" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" -msgstr "Editar álbum" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto no disponible" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo electrónico válida. " -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Usar como imagen de portada del perfil" +#: ../../Zotlabs/Module/Invite.php:74 +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/Photos.php:940 -msgid "Private Photo" -msgstr "Foto privada" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" -msgstr "Anterior" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensajes enviados." +msgstr[1] "%d mensajes enviados." -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Ver tamaño completo" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" -#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Eliminar" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitaciones" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Editar foto" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Tendrá que suministrar este código de invitación:" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" +#: ../../Zotlabs/Module/Invite.php:139 +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/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" +#: ../../Zotlabs/Module/Invite.php:141 +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/Photos.php:1044 -msgid "Caption" -msgstr "Título" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "o visitar" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Dirección no encontrada." -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallado la búsqueda de la dirección." -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" -msgstr "Me gusta (cambiar)" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizando ubicaciones" -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1227 -msgid "Share" -msgstr "Compartir" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No encontrada ninguna dirección." -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Espere por favor" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar las direcciones del canal" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" -msgstr "Este es usted" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Comentar" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizar ahora" -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 -msgid "Preview" -msgstr "Previsualizar" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Me gusta/No me gusta" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Esta acción está restringida solo para miembros." -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1756 -msgid "View all" -msgstr "Ver todo" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1780 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Solicitud incorrecta." -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "el canal" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestión de las fotos" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "elemento" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "En esta foto:" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canal no disponible." -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mapa" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1991 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "foto" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1997 ../../include/conversation.php:148 +msgid "status" +msgstr "el mensaje de estado" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Cerrar" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1994 +#: ../../include/conversation.php:123 ../../include/event.php:961 +msgid "event" +msgstr "evento" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Ver álbum" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Fotos recientes" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, 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" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "página web" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloque" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "plantilla" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Impel.php:191 +#: ../../Zotlabs/Module/Like.php:431 #, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Impel.php:194 +#: ../../Zotlabs/Module/Like.php:433 #, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "No hay nada para importar." +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Acción completada." -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Gracias." -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Perfil no encontrado." -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Perfil eliminado." -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importación completada" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Perfil-" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importar elementos" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "El nuevo perfil ha sido creado." -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Perfil no disponible para clonar." -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Perfil no disponible para exportar." -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Se necesita el nombre del perfil." -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Pareja sentimental" -#: ../../Zotlabs/Module/Invite.php:74 -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/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló el envío del mensaje." +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Trabajo:" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religión" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Enviar invitaciones" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Género" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Su mensaje:" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Página personal" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Intereses" -#: ../../Zotlabs/Module/Invite.php:139 -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/Profiles.php:560 +msgid "Profile updated." +msgstr "Perfil actualizado." -#: ../../Zotlabs/Module/Invite.php:141 -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/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Ocultar la lista de conexiones a los visitantes del perfil" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "o visitar" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modificar los detalles de este perfil" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Ver este perfil" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Dirección no encontrada." +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Editar visibilidad" + +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestión del perfil" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Ha fallado la búsqueda de la dirección." +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizando ubicaciones" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crear un nuevo perfil usando estos ajustes" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "No encontrada ninguna dirección." +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clonar este perfil" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Gestionar las direcciones del canal" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Eliminar este perfil" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1564 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Personales" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizar ahora" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relación" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:55 +msgid "Miscellaneous" +msgstr "Varios" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importar perfil desde un fichero" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Exportar perfil a un fichero" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Servidor no encontrado" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Género" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Me gusta/No me gusta" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Esta acción está restringida solo para miembros." +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nombre del perfil" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Solicitud incorrecta." +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Este es su perfil principal." -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "el canal" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Nombre completo" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "elemento" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Título o descripción" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canal no disponible." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Dirección" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Acción anterior revocada." +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Ciudad" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Región o Estado" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "el mensaje de estado" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Código postal" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" -msgstr "evento" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "País" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Quién (si es pertinente)" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, 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" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s está de acuerdo" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Desde (fecha)" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no está de acuerdo" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Háblenos de usted" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s se abstiene" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Dirección de la página personal" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s participa" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Lugar de nacimiento" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no participa" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s quizá participe" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Creencias religiosas" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Acción completada." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Palabras clave utilizadas en los listados de directorios" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Gracias." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Por ejemplo: software de fotografía submarina" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Preferencias musicales" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libros, literatura" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Crear" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisión" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" -msgstr "Administración de canales" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Cine, danza, cultura, entretenimiento" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canal actual" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Aficiones o intereses" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Vida sentimental o amorosa" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canal principal" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Estudios" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Convertir en predeterminado" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Información de contacto y redes sociales" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Imagen del perfil" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canal delegado" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:91 +msgid "Edit Profiles" +msgstr "Editar perfiles" #: ../../Zotlabs/Module/Mitem.php:52 msgid "Unable to create element." @@ -3504,6 +3626,11 @@ msgstr "No es posible añadir el elemento al menú" msgid "Menu Item Permissions" msgstr "Permisos del elemento del menú" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" + #: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 msgid "Link Name" msgstr "Nombre del enlace" @@ -3600,1449 +3727,1607 @@ msgstr "Editar elemento del menú" msgid "Link text" msgstr "Texto del enlace" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Ajustes del tema actualizados." +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Instalación" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# Cuentas" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr "No se ha podido conectar a la base de datos." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# cuentas bloqueadas" +#: ../../Zotlabs/Module/Setup.php:192 +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/Admin.php:199 -msgid "# expired accounts" -msgstr "# cuentas caducadas" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "No se puede crear la tabla." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# cuentas que caducan" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "La base de datos del sitio ha sido instalada." -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Canales" +#: ../../Zotlabs/Module/Setup.php:208 +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/Admin.php:212 -msgid "# primary" -msgstr "# primario" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# clones" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Verificación del sistema" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Mensajes en cola" +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:949 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +msgid "Next" +msgstr "Siguiente" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Debe actualizar su software" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Verificar de nuevo" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 -#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 -#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 -#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 -#: ../../Zotlabs/Module/Admin.php:1745 -msgid "Administration" -msgstr "Administración" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Conexión a la base de datos" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Sumario" +#: ../../Zotlabs/Module/Setup.php:296 +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/Admin.php:245 -msgid "Registered accounts" -msgstr "Cuentas registradas" +#: ../../Zotlabs/Module/Setup.php:297 +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/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 -msgid "Pending registrations" -msgstr "Registros pendientes" +#: ../../Zotlabs/Module/Setup.php:298 +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/Admin.php:247 -msgid "Registered channels" -msgstr "Canales registrados" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Nombre del servidor de base de datos" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 -msgid "Active plugins" -msgstr "Extensiones (plugins) activas" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "De forma predeterminada es 127.0.0.1" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versión" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Puerto de la base de datos" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versión del repositorio (master)" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versión del repositorio (dev)" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" -#: ../../Zotlabs/Module/Admin.php:377 -msgid "Site settings updated." -msgstr "Ajustes del sitio actualizados." +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Contraseña de acceso a la base de datos" -#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 -msgid "Default" -msgstr "Predeterminado" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Nombre de la base de datos" -#: ../../Zotlabs/Module/Admin.php:416 -msgid "experimental" -msgstr "experimental" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Tipo de base de datos" -#: ../../Zotlabs/Module/Admin.php:418 -msgid "unsupported" -msgstr "no soportado" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../Zotlabs/Module/Admin.php:464 -msgid "Yes - with approval" -msgstr "Sí - con aprobación" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +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/Admin.php:470 -msgid "My site is not a public server" -msgstr "Mi sitio no es un servidor público" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "Dirección del sitio web" -#: ../../Zotlabs/Module/Admin.php:471 -msgid "My site has paid access only" -msgstr "Mi sitio es un servicio de pago" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Por favor, use SSL (https) si está disponible." -#: ../../Zotlabs/Module/Admin.php:472 -msgid "My site has free access only" -msgstr "Mi sitio es un servicio gratuito" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../Zotlabs/Module/Admin.php:473 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Ajustes del sitio" -#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 -msgid "Site" -msgstr "Sitio" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "Se requiere la versión 5.5, o superior, de PHP." -#: ../../Zotlabs/Module/Admin.php:504 -msgid "File upload" -msgstr "Subir fichero" +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "Versión de PHP" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Policies" -msgstr "Políticas" +#: ../../Zotlabs/Module/Setup.php:416 +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/Admin.php:506 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzado" +#: ../../Zotlabs/Module/Setup.php:417 +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/Admin.php:510 -msgid "Site name" -msgstr "Nombre del sitio" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "Ruta del ejecutable PHP" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../Zotlabs/Module/Setup.php:421 +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/Admin.php:515 -msgid "Administrator Information" -msgstr "Información del Administrador" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP en línea de comandos" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Setup.php:435 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" +"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/Admin.php:516 -msgid "System language" -msgstr "Idioma del sistema" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../Zotlabs/Module/Admin.php:517 -msgid "System theme" -msgstr "Tema gráfico del sistema" +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format 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.php:518 -msgid "Mobile system theme" -msgstr "Tema del sistema para móviles" - -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móviles" +"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/Admin.php:520 -msgid "Allow Feeds as Connections" -msgstr "Permitir contenidos RSS como conexiones" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso de los recursos del sistema)" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "Límites PHP de subida" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Maximum image size" -msgstr "Tamaño máximo de la imagen" +#: ../../Zotlabs/Module/Setup.php:487 +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/Admin.php:521 +#: ../../Zotlabs/Module/Setup.php:488 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." +"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/Admin.php:522 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Generar claves de cifrado" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "módulo libCurl PHP" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Invitation only" -msgstr "Solo con una invitación" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "módulo PHP GD graphics" -#: ../../Zotlabs/Module/Admin.php:523 -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/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "módulo PHP OpenSSL" -#: ../../Zotlabs/Module/Admin.php:524 -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/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "módulo PHP mysqli o postgres" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Register text" -msgstr "Texto del registro" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "módulo PHP mb_string" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Will be displayed prominently on the registration page." -msgstr "Se mostrará de forma destacada en la página de registro." +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Admin.php:526 -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/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Admin.php:526 +#: ../../Zotlabs/Module/Setup.php:512 msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." +"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/Admin.php:527 -msgid "Preserve site homepage URL" -msgstr "Preservar la dirección de la página personal" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Admin.php:527 +#: ../../Zotlabs/Module/Setup.php:518 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." +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Setup.php:530 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." +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Setup.php:538 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." +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Allowed email domains" -msgstr "Se aceptan dominios de correo electrónico" +#: ../../Zotlabs/Module/Setup.php:542 +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/Admin.php:530 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " +#: ../../Zotlabs/Module/Setup.php:546 +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/Admin.php:531 -msgid "Not allowed email domains" -msgstr "No se permiten dominios de correo electrónico" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Setup.php:565 msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." +"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/Admin.php:532 -msgid "Verify Email Addresses" -msgstr "Verificar las direcciones de correo electrónico" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Setup.php:567 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)." +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Force publish" -msgstr "Forzar la publicación" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Setup.php:584 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.php:534 -msgid "Import Public Streams" -msgstr "Importar contenido público" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format 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." +"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/Admin.php:535 -msgid "Login on Homepage" -msgstr "Iniciar sesión en la página personal" +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "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/Admin.php:535 +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format 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." +"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/Admin.php:536 -msgid "Enable context help" -msgstr "Habilitar la ayuda contextual" +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Admin.php:536 +#: ../../Zotlabs/Module/Setup.php:606 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." +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Directory Server URL" -msgstr "URL del servidor de directorio" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Default directory server" -msgstr "Servidor de directorio predeterminado" +#: ../../Zotlabs/Module/Setup.php:643 +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/Admin.php:540 -msgid "Proxy user" -msgstr "Usuario del proxy" +#: ../../Zotlabs/Module/Setup.php:644 +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/Admin.php:541 -msgid "Proxy URL" -msgstr "Dirección del proxy" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Admin.php:542 -msgid "Network timeout" -msgstr "Tiempo de espera de la red" +#: ../../Zotlabs/Module/Setup.php:646 +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/Admin.php:542 -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/Setup.php:647 +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/Admin.php:543 -msgid "Delivery interval" -msgstr "Intervalo de entrega" +#: ../../Zotlabs/Module/Setup.php:648 +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/Admin.php:543 +#: ../../Zotlabs/Module/Setup.php:650 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." +"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 "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/Admin.php:544 -msgid "Deliveries per process" -msgstr "Intentos de envío por proceso" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Admin.php:544 +#: ../../Zotlabs/Module/Setup.php:659 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." +"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/Admin.php:545 -msgid "Poll interval" -msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Admin.php:545 +#: ../../Zotlabs/Module/Setup.php:671 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." +"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/Admin.php:546 -msgid "Maximum Load Average" -msgstr "Carga media máxima" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." + +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    Siguiente paso

    " -#: ../../Zotlabs/Module/Admin.php:546 +#: ../../Zotlabs/Module/Setup.php:733 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." +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." -#: ../../Zotlabs/Module/Admin.php:547 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Caducidad del contenido importado de otros sitios (en días)" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." -#: ../../Zotlabs/Module/Admin.php:547 -msgid "0 for no expiration of imported content" -msgstr "0 para que no caduque el contenido importado" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." -#: ../../Zotlabs/Module/Admin.php:691 +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 #, php-format -msgid "Lock feature %s" -msgstr "Bloquear la funcionalidad %s" +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" + +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" -#: ../../Zotlabs/Module/Admin.php:699 -msgid "Manage Additional Features" -msgstr "Gestionar las funcionalidades" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/Admin.php:716 -msgid "No server found" -msgstr "Servidor no encontrado" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" +msgstr "Restablecer la contraseña" -#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." -#: ../../Zotlabs/Module/Admin.php:723 -msgid "for channel" -msgstr "por canal" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "on server" -msgstr "en el servidor" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" -#: ../../Zotlabs/Module/Admin.php:725 -msgid "Server" -msgstr "Servidor" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" -#: ../../Zotlabs/Module/Admin.php:759 +#: ../../Zotlabs/Module/Lostpass.php:95 msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." -#: ../../Zotlabs/Module/Admin.php:762 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"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/
    " +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" -#: ../../Zotlabs/Module/Admin.php:764 +#: ../../Zotlabs/Module/Lostpass.php:128 msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." - -#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 -msgid "Security" -msgstr "Seguridad" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." -#: ../../Zotlabs/Module/Admin.php:771 -msgid "Block public" -msgstr "Bloquear páginas públicas" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Estado de ánimo" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "Allow communications only from these sites" -msgstr "Permitir la comunicación solo desde estos sitios" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" -#: ../../Zotlabs/Module/Admin.php:774 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" - -#: ../../Zotlabs/Module/Admin.php:775 -msgid "Block communications from these sites" -msgstr "Bloquear la comunicación desde estos sitios" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Admin.php:776 -msgid "Allow communications only from these channels" -msgstr "Permitir la comunicación solo desde estos canales" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Eliminar este canal" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "WARNING: " +msgstr "ATENCIÓN:" -#: ../../Zotlabs/Module/Admin.php:777 -msgid "Block communications from these channels" -msgstr "Bloquear la comunicación desde estos canales" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Este canal va a ser completamente eliminado de la red. " -#: ../../Zotlabs/Module/Admin.php:778 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduzca su contraseña para su verificación:" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Eliminar este canal y todos sus clones de la red" -#: ../../Zotlabs/Module/Admin.php:780 -msgid "Block embedded HTML from these domains" -msgstr "Bloquear contenido con HTML incorporado desde estos dominios" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" -#: ../../Zotlabs/Module/Admin.php:798 -msgid "Update has been marked successful" -msgstr "La actualización ha sido marcada como exitosa" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Remove Channel" +msgstr "Eliminar el canal" -#: ../../Zotlabs/Module/Admin.php:808 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" -#: ../../Zotlabs/Module/Admin.php:811 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La actualización de %s se ha realizado exitosamente." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Admin.php:815 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" -#: ../../Zotlabs/Module/Admin.php:818 -#, php-format -msgid "Update function %s could not be found." -msgstr "No se encuentra la función de actualización de %s." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." -#: ../../Zotlabs/Module/Admin.php:834 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" -#: ../../Zotlabs/Module/Admin.php:838 -msgid "Failed Updates" -msgstr "Han fallado las actualizaciones" +#: ../../Zotlabs/Module/Match.php:68 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:955 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Conectar" -#: ../../Zotlabs/Module/Admin.php:840 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" -#: ../../Zotlabs/Module/Admin.php:841 -msgid "Attempt to execute this update step automatically" -msgstr "Intentar ejecutar este paso de actualización automáticamente" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Este sitio no es un servidor de directorio" -#: ../../Zotlabs/Module/Admin.php:872 -msgid "Queue Statistics" -msgstr "Estadísticas de la cola" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Admin.php:873 -msgid "Total Entries" -msgstr "Total de entradas" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Servidor no encontrado" -#: ../../Zotlabs/Module/Admin.php:874 -msgid "Priority" -msgstr "Prioridad" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." -#: ../../Zotlabs/Module/Admin.php:875 -msgid "Destination URL" -msgstr "Dirección de destino" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:728 +msgid "Profile Photos" +msgstr "Fotos del perfil" -#: ../../Zotlabs/Module/Admin.php:876 -msgid "Mark hub permanently offline" -msgstr "Marcar el servidor como permanentemente fuera de línea" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." +msgstr "Álbum no encontrado." -#: ../../Zotlabs/Module/Admin.php:877 -msgid "Empty queue for this hub" -msgstr "Vaciar la cola para este servidor" +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" +msgstr "Borrar álbum" -#: ../../Zotlabs/Module/Admin.php:878 -msgid "Last known contact" -msgstr "Último contacto conocido" +#: ../../Zotlabs/Module/Photos.php:133 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" -#: ../../Zotlabs/Module/Admin.php:914 -#, 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/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Borrar foto" -#: ../../Zotlabs/Module/Admin.php:921 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s cuentas eliminadas" -msgstr[1] "%s cuentas eliminadas" +#: ../../Zotlabs/Module/Photos.php:509 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Directory.php:63 +msgid "Public access denied." +msgstr "Acceso público denegado." -#: ../../Zotlabs/Module/Admin.php:957 -msgid "Account not found" -msgstr "Cuenta no encontrada" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" -#: ../../Zotlabs/Module/Admin.php:968 -#, php-format -msgid "Account '%s' deleted" -msgstr "La cuenta '%s' ha sido eliminada" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." -#: ../../Zotlabs/Module/Admin.php:976 +#: ../../Zotlabs/Module/Photos.php:608 #, php-format -msgid "Account '%s' blocked" -msgstr "La cuenta '%s' ha sido bloqueada" +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." -#: ../../Zotlabs/Module/Admin.php:984 -#, php-format -msgid "Account '%s' unblocked" -msgstr "La cuenta '%s' ha sido desbloqueada" +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." -#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 -#: ../../include/widgets.php:1491 -msgid "Accounts" -msgstr "Cuentas" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" +msgstr "Subir fotos" -#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 -msgid "select all" -msgstr "seleccionar todo" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" -#: ../../Zotlabs/Module/Admin.php:1047 -msgid "Registrations waiting for confirm" -msgstr "Inscripciones en espera de confirmación" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "Request date" -msgstr "Fecha de solicitud" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" +msgstr "Crear un mensaje de estado para esta subida" -#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "Correo electrónico" +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" +msgstr "Título (opcional):" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "No registrations." -msgstr "Sin registros." +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" +msgstr "Descripción (opcional):" -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Deny" -msgstr "Rechazar" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" +msgstr "El nombre del álbum no ha podido ser descifrado" -#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "Bloquear" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" +msgstr "Fotos de contacto" -#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "Desbloquear" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" -#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 -msgid "All Channels" -msgstr "Todos los canales" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" -#: ../../Zotlabs/Module/Admin.php:1062 -msgid "Register date" -msgstr "Fecha de registro" +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1677 +msgid "View Photo" +msgstr "Ver foto" -#: ../../Zotlabs/Module/Admin.php:1063 -msgid "Last login" -msgstr "Último acceso" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1694 +msgid "Edit Album" +msgstr "Editar álbum" -#: ../../Zotlabs/Module/Admin.php:1064 -msgid "Expires" -msgstr "Caduca" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: ../../Zotlabs/Module/Admin.php:1065 -msgid "Service Class" -msgstr "Clase de servicio" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" +msgstr "Foto no disponible" -#: ../../Zotlabs/Module/Admin.php:1067 -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/Photos.php:921 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" -#: ../../Zotlabs/Module/Admin.php:1068 -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/Photos.php:922 +msgid "Use as cover photo" +msgstr "Usar como imagen de portada del perfil" -#: ../../Zotlabs/Module/Admin.php:1104 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canales censurados/no censurados" -msgstr[1] "%s canales censurados/no censurados" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" +msgstr "Foto privada" -#: ../../Zotlabs/Module/Admin.php:1113 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s código permitido/no permitido al canal" -msgstr[1] "%s código permitido/no permitido al canal" +#: ../../Zotlabs/Module/Photos.php:940 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 +msgid "Previous" +msgstr "Anterior" -#: ../../Zotlabs/Module/Admin.php:1119 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canales eliminados" -msgstr[1] "%s canales eliminados" +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" +msgstr "Ver tamaño completo" -#: ../../Zotlabs/Module/Admin.php:1139 -msgid "Channel not found" -msgstr "Canal no encontrado" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" +msgstr "Editar foto" -#: ../../Zotlabs/Module/Admin.php:1149 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' eliminado" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurado" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" +msgstr "Mover la foto a un álbum" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Código permitido al canal '%s'" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Código no permitido al canal '%s'" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" -#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 -msgid "Channels" -msgstr "Canales" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Título" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "Censor" -msgstr "Censurar" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" -#: ../../Zotlabs/Module/Admin.php:1228 -msgid "Uncensor" -msgstr "No censurar" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" -#: ../../Zotlabs/Module/Admin.php:1229 -msgid "Allow Code" -msgstr "Permitir código" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" -#: ../../Zotlabs/Module/Admin.php:1230 -msgid "Disallow Code" -msgstr "No permitir código" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:268 +msgid "I like this (toggle)" +msgstr "Me gusta (cambiar)" -#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 -msgid "Channel" -msgstr "Canal" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:269 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" -#: ../../Zotlabs/Module/Admin.php:1235 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:241 +#: ../../include/conversation.php:1232 +msgid "Share" +msgstr "Compartir" -#: ../../Zotlabs/Module/Admin.php:1239 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:405 +#: ../../include/conversation.php:741 +msgid "Please wait" +msgstr "Espere por favor" -#: ../../Zotlabs/Module/Admin.php:1240 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:722 +msgid "This is you" +msgstr "Este es usted" -#: ../../Zotlabs/Module/Admin.php:1297 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extensión %s desactivada." +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:724 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentar" -#: ../../Zotlabs/Module/Admin.php:1301 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extensión %s activada." +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:247 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:734 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1201 +msgid "Preview" +msgstr "Previsualizar" -#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 -msgid "Disable" -msgstr "Desactivar" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 -msgid "Enable" -msgstr "Activar" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 -#: ../../include/widgets.php:1495 -msgid "Plugins" -msgstr "Extensiones (plugins)" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" -#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 -msgid "Toggle" -msgstr "Cambiar" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 -#: ../../include/nav.php:212 -msgid "Settings" -msgstr "Ajustes" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" -#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 -msgid "Author: " -msgstr "Autor:" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" -#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 -msgid "Maintainer: " -msgstr "Mantenedor:" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" -#: ../../Zotlabs/Module/Admin.php:1354 -msgid "Minimum project version: " -msgstr "Versión mínima del proyecto:" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" -#: ../../Zotlabs/Module/Admin.php:1355 -msgid "Maximum project version: " -msgstr "Versión máxima del proyecto:" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Lib/ThreadItem.php:198 +#: ../../include/conversation.php:1763 +msgid "View all" +msgstr "Ver todo" -#: ../../Zotlabs/Module/Admin.php:1356 -msgid "Minimum PHP version: " -msgstr "Versión mínima de PHP:" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/channel.php:1182 ../../include/conversation.php:1787 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Me gusta" +msgstr[1] "Me gusta" -#: ../../Zotlabs/Module/Admin.php:1357 -msgid "Compatible Server Roles: " -msgstr "Configuraciones compatibles con este servidor:" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:195 +#: ../../include/conversation.php:1790 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" -#: ../../Zotlabs/Module/Admin.php:1358 -msgid "Requires: " -msgstr "Se requiere:" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestión de las fotos" -#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 -msgid "Disabled - version incompatibility" -msgstr "Deshabilitado - versiones incompatibles" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "En esta foto:" -#: ../../Zotlabs/Module/Admin.php:1408 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Escriba la URL pública del repositorio git del plugin." +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mapa" -#: ../../Zotlabs/Module/Admin.php:1409 -msgid "Plugin repo git URL" -msgstr "URL del repositorio git del plugin" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:394 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "Custom repo name" -msgstr "Nombre personalizado del repositorio" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:395 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "(optional)" -msgstr "(opcional)" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:400 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Cerrar" -#: ../../Zotlabs/Module/Admin.php:1411 -msgid "Download Plugin Repo" -msgstr "Descargar el repositorio" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Ver álbum" -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "Install new repo" -msgstr "Instalar un nuevo repositorio" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Fotos recientes" -#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Instalar" +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Name or caption" +msgstr "Nombre o descripción" -#: ../../Zotlabs/Module/Admin.php:1441 -msgid "Manage Repos" -msgstr "Gestionar los repositorios" +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" -#: ../../Zotlabs/Module/Admin.php:1442 -msgid "Installed Plugin Repositories" -msgstr "Repositorios de los plugins instalados" +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Admin.php:1443 -msgid "Install a New Plugin Repository" -msgstr "Instalar un nuevo repositorio de plugins" +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" -#: ../../Zotlabs/Module/Admin.php:1450 -msgid "Switch branch" -msgstr "Cambiar la rama" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" -#: ../../Zotlabs/Module/Admin.php:1564 -msgid "No themes found." -msgstr "No se han encontrado temas." +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Select a channel role with your privacy requirements." +msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../Zotlabs/Module/Admin.php:1620 -msgid "Screenshot" -msgstr "Instantánea de pantalla" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" -#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 -#: ../../include/widgets.php:1496 -msgid "Themes" -msgstr "Temas" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" +msgstr "Crear un canal" -#: ../../Zotlabs/Module/Admin.php:1666 -msgid "[Experimental]" -msgstr "[Experimental]" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." -#: ../../Zotlabs/Module/Admin.php:1667 -msgid "[Unsupported]" -msgstr "[No soportado]" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." -#: ../../Zotlabs/Module/Admin.php:1691 -msgid "Log settings updated." -msgstr "Actualizado el informe de configuraciones." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" -msgstr "Informes" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Admin.php:1748 -msgid "Clear" -msgstr "Vaciar" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Admin.php:1754 -msgid "Debugging" -msgstr "Depuración" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[hoy]" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "Log file" -msgstr "Fichero de informe" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "publicó un evento" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." -#: ../../Zotlabs/Module/Admin.php:1756 -msgid "Log level" -msgstr "Nivel de depuración" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "New Profile Field" -msgstr "Nuevo campo en el perfil" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "Field nickname" -msgstr "Alias del campo" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:959 +msgid "Poke" +msgstr "Toques y otras cosas" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "System name of field" -msgstr "Nombre del campo en el sistema" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" -#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 -msgid "Input type" -msgstr "Tipo de entrada" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Field Name" -msgstr "Nombre del campo" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Label on profile pages" -msgstr "Etiqueta a mostrar en la página del perfil" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Help text" -msgstr "Texto de ayuda" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Additional info (optional)" -msgstr "Información adicional (opcional)" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Admin.php:2056 -msgid "Field definition not found" -msgstr "Definición del campo no encontrada" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Aplicaciones (apps)" -#: ../../Zotlabs/Module/Admin.php:2062 -msgid "Edit Profile Field" -msgstr "Modificar el campo del perfil" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." -#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 -msgid "Profile Fields" -msgstr "Campos del perfil" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." -#: ../../Zotlabs/Module/Admin.php:2121 -msgid "Basic Profile Fields" -msgstr "Campos básicos del perfil" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "Advanced Profile Fields" -msgstr "Campos avanzados del perfil" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "(In addition to basic fields)" -msgstr "(Además de los campos básicos)" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Admin.php:2124 -msgid "All available fields" -msgstr "Todos los campos disponibles" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." -#: ../../Zotlabs/Module/Admin.php:2125 -msgid "Custom Fields" -msgstr "Campos personalizados" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" -#: ../../Zotlabs/Module/Admin.php:2129 -msgid "Create Custom Field" -msgstr "Crear un campo personalizado" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" +msgid "Version %s" +msgstr "Versión %s" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 -msgid "Password Reset" -msgstr "Restablecer la contraseña" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Su nueva contraseña es" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carga media actual:" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "pulse aquí para conectarse" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" -#: ../../Zotlabs/Module/Lostpass.php:95 +#: ../../Zotlabs/Module/Siteinfo.php:59 msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problemas en $projectname" -#: ../../Zotlabs/Module/Lostpass.php:128 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Dirección de correo electrónico" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administradores del sitio" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reiniciar" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 +msgid "Blocks" +msgstr "Bloques" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Título del bloque" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Estado de ánimo" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 +msgid "Layouts" +msgstr "Plantillas" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/help.php:47 ../../include/help.php:52 +#: ../../include/nav.php:164 +msgid "Help" +msgstr "Ayuda" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Perfil no encontrado." +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Perfil eliminado." +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Descripción de la plantilla" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Perfil-" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Descargar el fichero PDL" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "El nuevo perfil ha sido creado." +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "# Cuentas" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Perfil no disponible para clonar." +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "# cuentas bloqueadas" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Perfil no disponible para exportar." +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "# cuentas caducadas" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Se necesita el nombre del perfil." +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "# cuentas que caducan" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "# Canales" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Pareja sentimental" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "# primario" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "# clones" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "Mensajes en cola" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Trabajo:" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religión" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "Sumario" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Género" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "Registros pendientes" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "Canales registrados" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Página personal" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "Extensiones (plugins) activas" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Intereses" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "Versión" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Perfil actualizado." +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "Versión del repositorio (master)" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Ocultar la lista de conexiones a los visitantes del perfil" +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "Versión del repositorio (dev)" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modificar los detalles de este perfil" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Ver este perfil" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Editar visibilidad" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestión del perfil" +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:597 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambiar la imagen de portada del perfil" +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:646 +#: ../../include/text.php:1762 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Cambiar la foto del perfil" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 +msgid "Edit Event" +msgstr "Editar el evento" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crear un nuevo perfil usando estos ajustes" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 +msgid "Create Event" +msgstr "Crear un evento" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clonar este perfil" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:677 +msgid "Export" +msgstr "Exportar" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Eliminar este perfil" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" +msgstr "Importar" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Añadir cosas al perfil" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:686 +msgid "Today" +msgstr "Hoy" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1559 -msgid "Personal" -msgstr "Personales" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relación" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Varios" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valoración:" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importar perfil desde un fichero" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Exportar perfil a un fichero" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descripción:" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Género" +#: ../../Zotlabs/Module/Register.php:49 +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/Profiles.php:705 -msgid "Marital status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Register.php:55 +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/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nombre del perfil" +#: ../../Zotlabs/Module/Register.php:131 +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/Profiles.php:711 -msgid "This is your default profile." -msgstr "Este es su perfil principal." +#: ../../Zotlabs/Module/Register.php:137 +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/Profiles.php:713 -msgid "Your full name" -msgstr "Nombre completo" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Su registro no puede ser procesado." -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Título o descripción" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Ciudad" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrarse en otro hub afiliado." -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Región o Estado" +#: ../../Zotlabs/Module/Register.php:204 +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/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Código postal" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "País" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Quién (si es pertinente)" +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Desde (fecha)" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Háblenos de usted" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Dirección de la página personal" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Lugar de nacimiento" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "sí" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Creencias religiosas" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Palabras clave utilizadas en los listados de directorios" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" +msgstr "Registrarse" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Por ejemplo: software de fotografía submarina" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones." -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Preferencias musicales" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "Búsqueda de Documentación" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libros, literatura" +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "Documentación de $Projectname" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisión" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Seleccionar una carpeta de marcadores" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Cine, danza, cultura, entretenimiento" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Guardar marcador" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Aficiones o intereses" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "Dirección del marcador" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Vida sentimental o amorosa" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Estudios" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Información de contacto y redes sociales" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mis otros canales" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Imagen del perfil" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Acceder" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:90 -msgid "Edit Profiles" -msgstr "Editar perfiles" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Por favor, inicie sesión." -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificaciones del sistema" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Eliminar esta cuenta" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfil compatible" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "está interesado en:" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 +msgid "Remove Account" +msgstr "Eliminar cuenta" -#: ../../Zotlabs/Module/Webpages.php:53 +#: ../../Zotlabs/Module/Webpages.php:52 msgid "Import Webpage Elements" msgstr "Importar elementos de una página web" -#: ../../Zotlabs/Module/Webpages.php:54 +#: ../../Zotlabs/Module/Webpages.php:53 msgid "Import selected" msgstr "Importar elementos seleccionados" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1718 ../../include/nav.php:108 +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Exportar elementos de una página web" + +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Exportar elementos seleccionados" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1725 msgid "Webpages" msgstr "Páginas web" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 msgid "Actions" msgstr "Acciones" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 msgid "Page Link" msgstr "Vínculo de la página" -#: ../../Zotlabs/Module/Webpages.php:227 +#: ../../Zotlabs/Module/Webpages.php:250 msgid "Page Title" msgstr "Título de página" -#: ../../Zotlabs/Module/Webpages.php:258 +#: ../../Zotlabs/Module/Webpages.php:280 msgid "Invalid file type." msgstr "Tipo de fichero no válido." -#: ../../Zotlabs/Module/Webpages.php:270 +#: ../../Zotlabs/Module/Webpages.php:292 msgid "Error opening zip file" msgstr "Error al abrir el fichero comprimido zip" -#: ../../Zotlabs/Module/Webpages.php:281 +#: ../../Zotlabs/Module/Webpages.php:303 msgid "Invalid folder path." msgstr "La ruta de la carpeta no es válida." -#: ../../Zotlabs/Module/Webpages.php:308 +#: ../../Zotlabs/Module/Webpages.php:330 msgid "No webpage elements detected." msgstr "No se han detectado elementos de ninguna página web." -#: ../../Zotlabs/Module/Webpages.php:382 +#: ../../Zotlabs/Module/Webpages.php:405 msgid "Import complete." msgstr "Importación completada." +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" + +#: ../../Zotlabs/Module/Uexport.php:57 +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:58 +msgid "Export Content" +msgstr "Exportar contenidos" + +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "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:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." + +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "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:63 +#, 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:64 +#, 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:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." + +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "El elemento no es editable" + +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "elementos etiquetados con: %s" + +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Resultados de la búsqueda para: %s" + #: ../../Zotlabs/Module/Events.php:25 msgid "Calendar entries imported." msgstr "Entradas de calendario importadas." @@ -5130,7 +5415,7 @@ msgstr "Modificar la dirección" msgid "Share this event" msgstr "Compartir este evento" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1264 msgid "Permission settings" msgstr "Configuración de permisos" @@ -5138,10 +5423,6 @@ msgstr "Configuración de permisos" msgid "Advanced Options" msgstr "Opciones avanzadas" -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" - #: ../../Zotlabs/Module/Events.php:619 msgid "Edit event" msgstr "Editar evento" @@ -5150,1366 +5431,1188 @@ msgstr "Editar evento" msgid "Delete event" msgstr "Borrar evento" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" - #: ../../Zotlabs/Module/Events.php:655 msgid "calendar" msgstr "calendario" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Editar el evento" - -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crear un evento" - -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exportar" - #: ../../Zotlabs/Module/Events.php:681 msgid "Month" msgstr "Mes" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Semana" - -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Día" - -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Hoy" - -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Evento borrado" - -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" - -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Importación completada." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importar canal" - -#: ../../Zotlabs/Module/Import.php:548 -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:550 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Su antigua contraseña" - -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "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:555 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" - -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" - -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crear un canal" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[hoy]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descartar" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" -msgstr "Toques y otras cosas" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Toque/Incitación" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Semana" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Convertir en privado este envío" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Día" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento borrado" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No se han encontrado restricciones sobre esta clase de servicio." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elemento actualizado." -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" -msgstr "Perfil" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elemento añadido" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible para" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostrar elemento" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de configuración" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "elemento no encontrado." -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Editar elemento" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Seleccionar un perfil" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Publicar una actividad" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo publicaciones" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sólo enviar a espectadores del perfil pertinente." -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versión %s" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "Dirección para la foto o elemento (opcional)" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carga media actual:" +#: ../../Zotlabs/Module/Item.php:851 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" +#: ../../Zotlabs/Module/Item.php:986 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." +#: ../../Zotlabs/Module/Item.php:1107 +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/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" +#: ../../Zotlabs/Module/Item.php:1114 +#, 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/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problemas en $projectname" +#: ../../Zotlabs/Module/Item.php:1121 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Ficheros: compartidos conmigo" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradores del sitio" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NUEVO" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" -msgstr "Bloques" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Eliminar todos los ficheros" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Título del bloque" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Eliminar este fichero" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" -msgstr "Plantillas" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "No encontrado" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/features.php:99 ../../include/nav.php:111 +#: ../../include/conversation.php:1735 ../../include/conversation.php:1738 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descripción de la plantilla" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Entorno de edición" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\"" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Ninguna valoración" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Comparación de revisiones" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valoración:" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Revertir" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Sitio web:" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Nombre de su nuevo wiki:" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descripción:" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Nombre de la nueva página:" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Nuevo nombre:" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1153 +msgid "Embed image from photo albums" +msgstr "Incluir una imagen de los álbumes de fotos" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permisos denegados." +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1247 +msgid "Embed an image from your albums" +msgstr "Incluir una imagen de sus álbumes" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1249 +#: ../../include/conversation.php:1296 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1189 +msgid "Choose images to embed" +msgstr "Elegir imágenes para incluir" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1190 +msgid "Choose an album" +msgstr "Elegir un álbum" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ninguna conexión en común." +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1191 +msgid "Choose a different album..." +msgstr "Elegir un álbum diferente..." -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "No se puede asociar a un destinatario." +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1192 +msgid "Error getting album list" +msgstr "Error al obtener la lista de álbumes" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "No se puede establecer la comunicación con el canal solicitado." +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1193 +msgid "Error getting photo link" +msgstr "Error al obtener el enlace de la foto" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1194 +msgid "Error getting album" +msgstr "Error al obtener el álbum" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal." -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Mensajes" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Fuente creada." -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Mensaje revocado." +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Fuente actualizada." -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversación eliminada." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:195 +#: ../../include/widgets.php:672 +msgid "Channel Sources" +msgstr "Orígenes de los contenidos del canal" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestionar contenido de origen remoto para su canal." -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nueva fuente" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Para:" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importar solo contenido que contenga estas palabras (una por línea)" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Asunto:" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Dejar en blanco para importar todo el contenido público" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1239 -msgid "Attach file" -msgstr "Adjuntar fichero" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nombre del canal" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Enviar" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1284 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" +msgstr "Opcional" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 -#: ../../include/conversation.php:1289 -msgid "Encrypt text" -msgstr "Cifrar texto" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Fuente no encontrada" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Borrar mensaje" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Editar fuente" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe de transmisión" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Eliminar fuente" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revocar el mensaje" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Fuente eliminada" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "No se puede eliminar la fuente." -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Eliminar conversación" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está siguiendo %3$s de %2$s" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s ha dejado de seguir %3$s de %2$s" + +#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Responder" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/Suggest.php:64 ../../Zotlabs/Module/Directory.php:392 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Sugerencias de canales" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "la entrada" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1999 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "el comentario" + +#: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Etiqueta eliminada." -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta del elemento." -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Conexión actualizada." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal añadido." -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "ahora está conectado/a" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Sin conexiones." -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." -msgstr "No se pudo acceder al registro en su libreta de direcciones." +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visitar el perfil de %s [%s]" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar el canal en este momento." +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Ver conexiones" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." -msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Origen del elemento" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Sala no encontrada" -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:955 ../../include/nav.php:88 -msgid "View Profile" -msgstr "Ver el perfil" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandonar la sala" -#: ../../Zotlabs/Module/Connedit.php:557 -#, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Eliminar esta sala" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estoy conectado/a" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nueva sala de chat" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Nombre de la sala de chat" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Caducidad de los mensajes en los chats (en minutos)" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" -msgstr "Dejar de ignorar" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Caducidad" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" -msgstr "Desarchivar" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" -msgstr "Archivar" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Búsqueda de canales" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Buscar un canal (o un \"webbie\") que comience por:" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoración" +msgstr[1] "%d valoraciones" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" -msgstr "Mostrar" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Género:" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" -msgstr "Ocultar" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Estado:" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Página personal:" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Edad:" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" +msgstr "Ubicación:" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 -msgid "Me" -msgstr "Yo" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descripción:" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familia" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Conocidos/as" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Sobre mí:" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Foro público:" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Palabras clave:" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" -msgstr "Ajustar la afinidad" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "No sugerir:" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" -msgstr "Ajustar el perfil" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Conexiones comunes:" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" -msgstr "Ajustar la afinidad y el perfil" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Directorio global:" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" -msgstr "-" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Directorio local:" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 -msgid "Connection Default Permissions" -msgstr "Permisos predeterminados de conexión" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Encontrar:" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 -#, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "siguiente página" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "página anterior" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" -msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Ordenar opciones" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" -msgstr "La dirección primaria de esta conexión es" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabético" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" -msgstr "Ubicaciones disponibles:" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabético inverso" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "De más nuevo a más antiguo" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" -msgstr "Gestión de las conexiones" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "De más antiguo a más nuevo" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas entradas pueden estar ocultas)." -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" +#: ../../Zotlabs/Module/Settings/Account.php:23 +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/Connedit.php:766 -msgid "Custom Filter" -msgstr "Filtro personalizado" +#: ../../Zotlabs/Module/Settings/Account.php:32 +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/Connedit.php:767 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Nivel de habilidad técnica actualizado" -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -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/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contengan este texto" +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" -msgstr "¡Esta información es pública!" +#: ../../Zotlabs/Module/Settings/Account.php:67 +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/Connedit.php:775 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." +#: ../../Zotlabs/Module/Settings/Account.php:83 +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/Connedit.php:787 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" +msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" -msgstr "Última actualización:" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" +msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:167 -msgid "Apps" -msgstr "Aplicaciones (apps)" +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" +msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuar" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" +msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" +msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" +msgstr "Su nivel de habilidad técnica" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Se utiliza para proporcionar la experiencia de los miembros adaptada a su nivel de comodidad" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" +msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." +msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" +msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" +msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" +msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Guardar marcador" +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" +msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "Dirección del marcador" +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" +msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" +msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Falló la autenticación." +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" +msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" +msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" +msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Acceder" +#: ../../Zotlabs/Module/Settings/Channel.php:395 +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/Regmod.php:15 -msgid "Please login." -msgstr "Por favor, inicie sesión." +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" +msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" +msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" +msgstr "Configuración básica" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATENCIÓN:" +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" +msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" +msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" +msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" +msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" +msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Settings/Channel.php:464 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Eliminar este canal" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red." +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" +msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar el canal" +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" +msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Settings/Channel.php:474 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:58 -msgid "Export Content" -msgstr "Exportar contenidos" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Uexport.php:59 +#: ../../Zotlabs/Module/Settings/Channel.php:475 msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "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." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" +msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "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/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Uexport.php:63 -#, 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/Settings/Channel.php:479 +msgid "Allow others to tag your posts" +msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format +#: ../../Zotlabs/Module/Settings/Channel.php:479 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" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" +msgstr "Límites de los permisos del canal" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "El elemento no es editable" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" +msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 -msgid "Edit post" -msgstr "Editar la entrada" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." +msgstr "0 o en blanco para usar el límite del sitio web." -#: ../../Zotlabs/Module/Search.php:216 +#: ../../Zotlabs/Module/Settings/Channel.php:483 #, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" +msgid "This website expires after %d days." +msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." +msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." +msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Elemento actualizado." +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" +msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Elemento añadido" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" +msgstr "Lista de control de acceso (ACL) por defecto" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" +msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostrar elemento" +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" +msgstr "Categoría de los permisos del canal:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "elemento no encontrado." +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" +msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Editar elemento" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" +msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" -msgstr "Seleccionar un perfil" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" +msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" -msgstr "Publicar una actividad" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" +msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo enviar a espectadores del perfil pertinente." +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" +msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento, p. ej.:. \"algo\"" +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" +msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" +msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" +msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" -msgstr "Añadir alguna cosa a su perfil" +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" +msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" +msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" +msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" +msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Item.php:1112 -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/Settings/Channel.php:515 +msgid "You are tagged in a post" +msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Item.php:1119 -#, 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/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" +msgstr "Reciba un toque o incitación en una publicación" -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" +msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" +msgstr "Nueva actividad en la red" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NUEVO" +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" +msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Eliminar todos los ficheros" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" +msgstr "Mensajes privados no leídos" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Eliminar este fichero" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" +msgstr "Recomendado" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "No encontrado" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" +msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 -#: ../../include/features.php:57 ../../include/nav.php:110 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" +msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" -msgstr "Entorno de edición" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" +msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Wiki.php:100 +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" +msgstr "No disponible en todos los temas" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" +msgstr "Notificaciones del sistema (personales)" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" +msgstr "Mensajes de información del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" +msgstr "Alertas críticas del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" +msgstr "Nuevas conexiones" + +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" +msgstr "Registros del sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\"" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" -msgstr "Comparación de revisiones" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" +msgstr "Avisarme de los eventos con algunos días de antelación" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" -msgstr "Revertir" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" +msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" -msgstr "Nombre de su nuevo wiki:" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" -msgstr "Nombre de la nueva página:" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "Nuevo nombre:" +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" +msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 -msgid "Embed image from photo albums" -msgstr "Incluir una imagen de los álbumes de fotos" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" +msgstr "Carpeta por defecto de las fotos subidas" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 -msgid "Embed an image from your albums" -msgstr "Incluir una imagen de sus álbumes" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" +msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 -#: ../../include/conversation.php:1291 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" +msgstr "Carpeta por defecto de los archivos subidos" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 -msgid "Choose images to embed" -msgstr "Elegir imágenes para incluir" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal que debe mostrarse en las páginas de su canal" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 -msgid "Choose an album" -msgstr "Elegir un álbum" +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." +msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" +msgstr "Servicio de compartición de Firefox: proveedor $Projectname" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" +msgstr "Comenzar el calendario semanal por el lunes" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 -msgid "Error getting album list" -msgstr "Error al obtener la lista de álbumes" +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" +msgstr "Sin tema especial para dispositivos móviles" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 -msgid "Error getting photo link" -msgstr "Error al obtener el enlace de la foto" +#: ../../Zotlabs/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 -msgid "Error getting album" -msgstr "Error al obtener el álbum" +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" +msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal." +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" +msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Fuente creada." +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Fuente actualizada." +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" +msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Orígenes de los contenidos del canal" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" +msgstr "Elegir un esquema" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestionar contenido de origen remoto para su canal." +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Tema para el móvil:" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nueva fuente" +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" +msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importar solo contenido que contenga estas palabras (una por línea)" +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" +msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Dejar en blanco para importar todo el contenido público" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nombre del canal" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" +msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Fuente no encontrada" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Editar fuente" +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" +msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Eliminar fuente" +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" +msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Fuente eliminada" +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "No se puede eliminar la fuente." +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" +msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo %3$s de %2$s" +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" +msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ha dejado de seguir %3$s de %2$s" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" +msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" +msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" +msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "la entrada" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" +msgstr "Altura máxima del contenido de mi red (en píxeles)" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "el comentario" +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" +msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Etiqueta eliminada." +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Funcionalidades" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "El nombre es obligatorio" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal añadido." +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" +msgstr "Añadir aplicación" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Sin conexiones." +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar el perfil de %s [%s]" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Ver conexiones" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Origen del elemento" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Sala no encontrada" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "Redirigir" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandonar la sala" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Eliminar esta sala" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" +msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." +msgstr "Aplicación no encontrada." -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estoy conectado/a" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" +msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" +msgstr "La \"client key\" empieza por" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" +msgstr "Sin nombre" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "Nueva sala de chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" +msgstr "Eliminar autorización" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "Nombre de la sala de chat" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Este canal tiene un límite de %d tokens" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "Caducidad de los mensajes en los chats (en minutos)" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Se requiere el nombre y la contraseña." -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %1$s" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token salvado." -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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." +msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." + +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "Caducidad" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Tokens de acceso para invitados" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nombre de inicio de sesión" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Búsqueda de canales" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Contraseña de inicio de sesión" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Buscar un canal (o un \"webbie\") que comience por:" +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Expira (aaaa-mm-dd)" #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" @@ -6531,211 +6634,450 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1889 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1890 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1892 msgid "Thank You," msgstr "Gracias," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1894 #, php-format msgid "%s Administrator" msgstr "%s Administrador" -#: ../../Zotlabs/Lib/Enotify.php:100 +#: ../../Zotlabs/Lib/Enotify.php:103 #, php-format msgid "%s " msgstr "%s " -#: ../../Zotlabs/Lib/Enotify.php:104 +#: ../../Zotlabs/Lib/Enotify.php:107 #, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Aviso] Nuevo mensaje en %s" +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Aviso] Nuevo correo recibido en %s" -#: ../../Zotlabs/Lib/Enotify.php:106 +#: ../../Zotlabs/Lib/Enotify.php:109 #, php-format msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Lib/Enotify.php:110 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s le ha enviado %2$s." -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Lib/Enotify.php:110 msgid "a private message" msgstr "un mensaje privado" -#: ../../Zotlabs/Lib/Enotify.php:108 +#: ../../Zotlabs/Lib/Enotify.php:111 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." -#: ../../Zotlabs/Lib/Enotify.php:164 +#: ../../Zotlabs/Lib/Enotify.php:170 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:172 +#: ../../Zotlabs/Lib/Enotify.php:178 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " -#: ../../Zotlabs/Lib/Enotify.php:181 +#: ../../Zotlabs/Lib/Enotify.php:187 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Lib/Enotify.php:198 #, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s a la conversación #%1$d" +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Aviso] Nuevo comentario de %2$s en la conversación #%1$d" -#: ../../Zotlabs/Lib/Enotify.php:193 +#: ../../Zotlabs/Lib/Enotify.php:199 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "%1$s, %2$s ha comentado un elemento/conversación que ha estado siguiendo." -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 +#: ../../Zotlabs/Lib/Enotify.php:202 ../../Zotlabs/Lib/Enotify.php:217 +#: ../../Zotlabs/Lib/Enotify.php:243 ../../Zotlabs/Lib/Enotify.php:261 +#: ../../Zotlabs/Lib/Enotify.php:275 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Para ver o comentar la conversación, visite %s" -#: ../../Zotlabs/Lib/Enotify.php:202 +#: ../../Zotlabs/Lib/Enotify.php:208 #, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" -#: ../../Zotlabs/Lib/Enotify.php:204 +#: ../../Zotlabs/Lib/Enotify.php:210 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "%1$s, %2$s ha publicado en su página del perfil en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:206 +#: ../../Zotlabs/Lib/Enotify.php:212 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "%1$s, %2$s ha publicado en [zrl=%3$s]su página del perfil[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:230 +#: ../../Zotlabs/Lib/Enotify.php:236 #, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Aviso] %s le ha etiquetado" +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Aviso] %s le ha etiquetado" -#: ../../Zotlabs/Lib/Enotify.php:231 +#: ../../Zotlabs/Lib/Enotify.php:237 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "%1$s, %2$s le ha etiquetado en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:232 +#: ../../Zotlabs/Lib/Enotify.php:238 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:244 +#: ../../Zotlabs/Lib/Enotify.php:250 #, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Aviso] %1$s le ha dado un toque" -#: ../../Zotlabs/Lib/Enotify.php:245 +#: ../../Zotlabs/Lib/Enotify.php:251 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s le ha dado un toque en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:246 +#: ../../Zotlabs/Lib/Enotify.php:252 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]le ha dado un toque[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:262 +#: ../../Zotlabs/Lib/Enotify.php:268 #, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Aviso] %s ha etiquetado su publicación" +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Aviso] %s ha etiquetado su entrada" -#: ../../Zotlabs/Lib/Enotify.php:263 +#: ../../Zotlabs/Lib/Enotify.php:269 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:264 +#: ../../Zotlabs/Lib/Enotify.php:270 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "%1$s, %2$s ha etiquetado [zrl=%3$s]su publicación[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Aviso] Ha recibido una solicitud de conexión" +#: ../../Zotlabs/Lib/Enotify.php:282 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Aviso] Ha recibido una solicitud de conexión" -#: ../../Zotlabs/Lib/Enotify.php:277 +#: ../../Zotlabs/Lib/Enotify.php:283 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:278 +#: ../../Zotlabs/Lib/Enotify.php:284 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#: ../../Zotlabs/Lib/Enotify.php:288 ../../Zotlabs/Lib/Enotify.php:307 #, php-format msgid "You may visit their profile at %s" msgstr "Puede visitar su perfil en %s" -#: ../../Zotlabs/Lib/Enotify.php:284 +#: ../../Zotlabs/Lib/Enotify.php:290 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad" +#: ../../Zotlabs/Lib/Enotify.php:297 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Aviso] Ha recibido una sugerencia de conexión" -#: ../../Zotlabs/Lib/Enotify.php:292 +#: ../../Zotlabs/Lib/Enotify.php:298 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " "%4$s." msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." -#: ../../Zotlabs/Lib/Enotify.php:299 +#: ../../Zotlabs/Lib/Enotify.php:305 msgid "Name:" msgstr "Nombre:" -#: ../../Zotlabs/Lib/Enotify.php:300 +#: ../../Zotlabs/Lib/Enotify.php:306 msgid "Photo:" msgstr "Foto:" -#: ../../Zotlabs/Lib/Enotify.php:303 +#: ../../Zotlabs/Lib/Enotify.php:309 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Aviso]" +#: ../../Zotlabs/Lib/Enotify.php:527 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Aviso]" -#: ../../Zotlabs/Lib/Enotify.php:667 +#: ../../Zotlabs/Lib/Enotify.php:687 msgid "created a new post" msgstr "ha creado una nueva entrada" -#: ../../Zotlabs/Lib/Enotify.php:668 +#: ../../Zotlabs/Lib/Enotify.php:688 #, php-format msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Mensaje Privado" + +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "Seleccionar" + +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Guardar en carpeta" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Participaré" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "No participaré" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Quizá participe" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Estoy de acuerdo" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "No estoy de acuerdo" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Me abstengo" + +#: ../../Zotlabs/Lib/ThreadItem.php:223 +msgid "Add Star" +msgstr "Destacar añadiendo una estrella" + +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "Remove Star" +msgstr "Eliminar estrella" + +#: ../../Zotlabs/Lib/ThreadItem.php:225 +msgid "Toggle Star Status" +msgstr "Activar o desactivar el estado de entrada preferida" + +#: ../../Zotlabs/Lib/ThreadItem.php:229 +msgid "starred" +msgstr "preferidas" + +#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:674 +msgid "Message signature validated" +msgstr "Firma de mensaje validada" + +#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "Firma de mensaje incorrecta" + +#: ../../Zotlabs/Lib/ThreadItem.php:248 +msgid "Add Tag" +msgstr "Añadir etiqueta" + +#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:316 +msgid "like" +msgstr "me gusta" + +#: ../../Zotlabs/Lib/ThreadItem.php:269 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "no me gusta" + +#: ../../Zotlabs/Lib/ThreadItem.php:273 +msgid "Share This" +msgstr "Compartir esto" + +#: ../../Zotlabs/Lib/ThreadItem.php:273 +msgid "share" +msgstr "compartir" + +#: ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "Delivery Report" +msgstr "Informe de transmisión" + +#: ../../Zotlabs/Lib/ThreadItem.php:300 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" + +#: ../../Zotlabs/Lib/ThreadItem.php:329 ../../Zotlabs/Lib/ThreadItem.php:330 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver el perfil de %s - %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:333 +msgid "to" +msgstr "a" + +#: ../../Zotlabs/Lib/ThreadItem.php:334 +msgid "via" +msgstr "mediante" + +#: ../../Zotlabs/Lib/ThreadItem.php:335 +msgid "Wall-to-Wall" +msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" + +#: ../../Zotlabs/Lib/ThreadItem.php:336 +msgid "via Wall-To-Wall:" +msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" + +#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:720 +#, php-format +msgid "from %s" +msgstr "desde %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:723 +#, php-format +msgid "last edited: %s" +msgstr "último cambio: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:724 +#, php-format +msgid "Expires: %s" +msgstr "Caduca: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Save Bookmarks" +msgstr "Guardar en Marcadores" + +#: ../../Zotlabs/Lib/ThreadItem.php:378 +msgid "Add to Calendar" +msgstr "Añadir al calendario" + +#: ../../Zotlabs/Lib/ThreadItem.php:387 +msgid "Mark all seen" +msgstr "Marcar todo como visto" + +#: ../../Zotlabs/Lib/ThreadItem.php:436 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostrar todo" + +#: ../../Zotlabs/Lib/ThreadItem.php:726 ../../include/conversation.php:1239 +msgid "Bold" +msgstr "Negrita" + +#: ../../Zotlabs/Lib/ThreadItem.php:727 ../../include/conversation.php:1240 +msgid "Italic" +msgstr "Itálico " + +#: ../../Zotlabs/Lib/ThreadItem.php:728 ../../include/conversation.php:1241 +msgid "Underline" +msgstr "Subrayar" + +#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/conversation.php:1242 +msgid "Quote" +msgstr "Citar" + +#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/conversation.php:1243 +msgid "Code" +msgstr "Código" + +#: ../../Zotlabs/Lib/ThreadItem.php:731 +msgid "Image" +msgstr "Imagen" + +#: ../../Zotlabs/Lib/ThreadItem.php:732 +msgid "Insert Link" +msgstr "Insertar enlace" + +#: ../../Zotlabs/Lib/ThreadItem.php:733 +msgid "Video" +msgstr "Vídeo" + +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Visible para su público predeterminado." + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Sólo yo" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Público" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Cualquiera en la red $Projectname" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Cualquier cuenta en %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Cualquiera de mis conexiones" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Sólo las conexiones que yo permita de forma explícita" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" + #: ../../Zotlabs/Lib/Apps.php:205 msgid "Site Admin" msgstr "Administrador del sitio" @@ -6760,37 +7102,37 @@ msgstr "Servicio de compartición de Firefox" msgid "Remote Diagnostics" msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:319 msgid "Suggest Channels" msgstr "Sugerir canales" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 -#: ../../boot.php:1738 +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 +#: ../../boot.php:1739 msgid "Login" msgstr "Iniciar sesión" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 msgid "Grid" msgstr "Red" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 msgid "Channel Home" msgstr "Mi canal" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 -#: ../../include/conversation.php:1685 ../../include/nav.php:205 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1689 ../../include/conversation.php:1692 msgid "Events" msgstr "Eventos" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 msgid "Directory" msgstr "Directorio" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 msgid "Mail" msgstr "Correo" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 msgid "Chat" msgstr "Chat" @@ -6810,7 +7152,7 @@ msgstr "Canal aleatorio" msgid "Invite" msgstr "Invitar" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1564 msgid "Features" msgstr "Funcionalidades" @@ -6830,1047 +7172,1122 @@ msgstr "Foto del perfil" msgid "Purchase" msgstr "Comprar" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:124 -msgid "Visible to your default audience" -msgstr "Visible para su público predeterminado." - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:165 -msgid "Only me" -msgstr "Sólo yo" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Público" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Cualquiera en la red $Projectname" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +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." + +#: ../../include/dba/dba_driver.php:173 #, php-format -msgid "Any account on %s" -msgstr "Cualquier cuenta en %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Cualquiera de mis conexiones" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Sólo las conexiones que yo permita de forma explícita" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas" +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones." +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Mensaje Privado" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Seleccionar" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Guardar en carpeta" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Participaré" +#: ../../include/permissions.php:55 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "No participaré" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Quizá participe" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Estoy de acuerdo" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "No estoy de acuerdo" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Me abstengo" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" +#: ../../include/photos.php:506 ../../include/conversation.php:1675 +msgid "Photo Albums" +msgstr "Álbumes de fotos" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Eliminar estrella" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" +#: ../../include/features.php:58 +msgid "General Features" +msgstr "Funcionalidades básicas" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferidas" +#: ../../include/features.php:63 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" +#: ../../include/features.php:64 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" +#: ../../include/features.php:72 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Añadir etiqueta" +#: ../../include/features.php:73 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 -msgid "like" -msgstr "me gusta" +#: ../../include/features.php:81 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" -#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "no me gusta" +#: ../../include/features.php:82 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "Share This" -msgstr "Compartir esto" +#: ../../include/features.php:90 +msgid "Web Pages" +msgstr "Páginas web" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "share" -msgstr "compartir" +#: ../../include/features.php:91 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" -#: ../../Zotlabs/Lib/ThreadItem.php:276 -msgid "Delivery Report" -msgstr "Informe de transmisión" +#: ../../include/features.php:100 +msgid "Provide a wiki for your channel" +msgstr "Proporcionar un wiki para su canal" -#: ../../Zotlabs/Lib/ThreadItem.php:294 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" +#: ../../include/features.php:117 +msgid "Private Notes" +msgstr "Notas privadas" -#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" +#: ../../include/features.php:118 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "to" -msgstr "a" +#: ../../include/features.php:126 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "via" -msgstr "mediante" +#: ../../include/features.php:127 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "Wall-to-Wall" -msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../include/features.php:135 +msgid "Photo Location" +msgstr "Ubicación de las fotos" -#: ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "via Wall-To-Wall:" -msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../include/features.php:136 +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." -#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "desde %s" +#: ../../include/features.php:144 +msgid "Access Controlled Chatrooms" +msgstr "Salas de chat moderadas" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" +#: ../../include/features.php:145 +msgid "Provide chatrooms and chat services with access control." +msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" +#: ../../include/features.php:153 +msgid "Smart Birthdays" +msgstr "Cumpleaños inteligentes" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" +#: ../../include/features.php:154 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../Zotlabs/Lib/ThreadItem.php:372 -msgid "Add to Calendar" -msgstr "Añadir al calendario" +#: ../../include/features.php:162 +msgid "Advanced Directory Search" +msgstr "Búsqueda avanzada en el directorio" -#: ../../Zotlabs/Lib/ThreadItem.php:381 -msgid "Mark all seen" -msgstr "Marcar todo como visto" +#: ../../include/features.php:163 +msgid "Allows creation of complex directory search queries" +msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" -#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostrar todo" +#: ../../include/features.php:171 +msgid "Advanced Theme and Layout Settings" +msgstr "Ajustes avanzados de temas y esquemas" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 -msgid "Bold" -msgstr "Negrita" +#: ../../include/features.php:172 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permitir el ajuste fino de temas y esquemas de páginas" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 -msgid "Italic" -msgstr "Itálico " +#: ../../include/features.php:182 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 -msgid "Underline" -msgstr "Subrayar" +#: ../../include/features.php:186 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 -msgid "Quote" -msgstr "Citar" +#: ../../include/features.php:187 +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)" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 -msgid "Code" -msgstr "Código" +#: ../../include/features.php:196 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Image" -msgstr "Imagen" +#: ../../include/features.php:204 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" + +#: ../../include/features.php:205 +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." -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Insert Link" -msgstr "Insertar enlace" +#: ../../include/features.php:213 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Video" -msgstr "Vídeo" +#: ../../include/features.php:214 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "No se ha encontrado el nombre de usuario en el fichero importado." +#: ../../include/features.php:222 +msgid "Disable Comments" +msgstr "Deshabilitar comentarios" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -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." +#: ../../include/features.php:223 +msgid "Provide the option to disable comments for a post" +msgstr "Proporcionar la opción de desactivar los comentarios de una publicación" -#: ../../include/dba/dba_driver.php:173 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" +#: ../../include/features.php:231 +msgid "Delayed Posting" +msgstr "Publicación aplazada" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "Ver en el tamaño original" +#: ../../include/features.php:232 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/network.php:1935 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Administrador" +#: ../../include/features.php:240 +msgid "Content Expiration" +msgstr "Caducidad del contenido" -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "Sin asunto" +#: ../../include/features.php:241 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/features.php:249 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/features.php:250 +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/network.php:2206 -msgid "GNU-Social" -msgstr "GNU Social" +#: ../../include/features.php:261 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/features.php:265 +msgid "Search by Date" +msgstr "Buscar por fecha" -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/features.php:266 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/features.php:274 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Grupos de canales" -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "Zot" +#: ../../include/features.php:275 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/features.php:283 ../../include/widgets.php:283 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/features.php:284 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/features.php:292 +msgid "Network Personal Tab" +msgstr "Actividad personal" -#: ../../include/oembed.php:340 -msgid "Embedded content" -msgstr "Contenido incorporado" +#: ../../include/features.php:293 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/oembed.php:349 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" +#: ../../include/features.php:301 +msgid "Network New Tab" +msgstr "Contenido nuevo" -#: ../../include/permissions.php:29 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" +#: ../../include/features.php:302 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/permissions.php:33 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" +#: ../../include/features.php:310 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" -#: ../../include/permissions.php:37 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" +#: ../../include/features.php:311 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/permissions.php:40 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" +#: ../../include/features.php:320 +msgid "Show friend and connection suggestions" +msgstr "Mostrar sugerencias de amigos y conexiones" -#: ../../include/permissions.php:40 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" +#: ../../include/features.php:328 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" -#: ../../include/permissions.php:42 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" +#: ../../include/features.php:329 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/permissions.php:42 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" +#: ../../include/features.php:341 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" -#: ../../include/permissions.php:43 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" +#: ../../include/features.php:345 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" -#: ../../include/permissions.php:44 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" +#: ../../include/features.php:346 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/permissions.php:45 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" +#: ../../include/features.php:354 +msgid "Post Categories" +msgstr "Temas de las entradas" -#: ../../include/permissions.php:47 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" +#: ../../include/features.php:355 +msgid "Add categories to your posts" +msgstr "Añadir temas a sus publicaciones" -#: ../../include/permissions.php:49 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" +#: ../../include/features.php:363 +msgid "Emoji Reactions" +msgstr "Emoticonos \"emoji\"" -#: ../../include/permissions.php:49 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." +#: ../../include/features.php:364 +msgid "Add emoji reaction ability to posts" +msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/items.php:899 ../../include/items.php:944 -msgid "(Unknown)" -msgstr "(Desconocido)" +#: ../../include/features.php:372 ../../include/contact_widgets.php:53 +#: ../../include/widgets.php:346 +msgid "Saved Folders" +msgstr "Carpetas guardadas" -#: ../../include/items.php:1143 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." +#: ../../include/features.php:373 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/items.php:1145 -msgid "Visible to you only." -msgstr "Visible sólo para usted." +#: ../../include/features.php:381 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" -#: ../../include/items.php:1147 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." +#: ../../include/features.php:382 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/items.php:1149 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." +#: ../../include/features.php:390 +msgid "Star Posts" +msgstr "Entradas destacadas" -#: ../../include/items.php:1151 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." +#: ../../include/features.php:391 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/items.php:1153 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." +#: ../../include/features.php:399 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" -#: ../../include/items.php:1155 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." +#: ../../include/features.php:400 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/items.php:1157 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." +#: ../../include/features.php:412 +msgid "Premium Channel" +msgstr "Canal premium" -#: ../../include/items.php:3947 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." +#: ../../include/features.php:413 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/items.php:3954 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" +#: ../../include/help.php:25 +msgid "Help:" +msgstr "Ayuda:" -#: ../../include/items.php:3966 -msgid "Connection not found." -msgstr "Conexión no encontrada" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "invitado: " -#: ../../include/items.php:4319 -msgid "profile photo" -msgstr "foto del perfil" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../include/text.php:404 +#: ../../include/text.php:450 msgid "prev" msgstr "anterior" -#: ../../include/text.php:406 +#: ../../include/text.php:452 msgid "first" msgstr "primera" -#: ../../include/text.php:435 +#: ../../include/text.php:481 msgid "last" msgstr "última" -#: ../../include/text.php:438 +#: ../../include/text.php:484 msgid "next" msgstr "próxima" -#: ../../include/text.php:448 +#: ../../include/text.php:494 msgid "older" msgstr "más antiguas" -#: ../../include/text.php:450 +#: ../../include/text.php:496 msgid "newer" msgstr "más recientes" -#: ../../include/text.php:843 +#: ../../include/text.php:889 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:868 +#: ../../include/text.php:914 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/text.php:1059 ../../include/text.php:1064 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/text.php:1059 ../../include/text.php:1064 #: ../../include/conversation.php:243 msgid "poked" msgstr "ha dado un toque a" -#: ../../include/text.php:1019 +#: ../../include/text.php:1065 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1019 +#: ../../include/text.php:1065 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1020 +#: ../../include/text.php:1066 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1020 +#: ../../include/text.php:1066 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1021 +#: ../../include/text.php:1067 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1021 +#: ../../include/text.php:1067 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1022 +#: ../../include/text.php:1068 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1022 +#: ../../include/text.php:1068 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1023 +#: ../../include/text.php:1069 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1023 +#: ../../include/text.php:1069 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1035 +#: ../../include/text.php:1081 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1036 +#: ../../include/text.php:1082 msgid "sad" msgstr "triste " -#: ../../include/text.php:1037 +#: ../../include/text.php:1083 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1038 +#: ../../include/text.php:1084 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1039 +#: ../../include/text.php:1085 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1040 +#: ../../include/text.php:1086 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1041 +#: ../../include/text.php:1087 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1042 +#: ../../include/text.php:1088 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1043 +#: ../../include/text.php:1089 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1044 +#: ../../include/text.php:1090 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1045 +#: ../../include/text.php:1091 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1046 +#: ../../include/text.php:1092 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1047 +#: ../../include/text.php:1093 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1048 +#: ../../include/text.php:1094 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1049 +#: ../../include/text.php:1095 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1050 +#: ../../include/text.php:1096 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1051 +#: ../../include/text.php:1097 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1052 +#: ../../include/text.php:1098 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1053 +#: ../../include/text.php:1099 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1054 +#: ../../include/text.php:1100 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1055 +#: ../../include/text.php:1101 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1239 ../../include/js_strings.php:70 +#: ../../include/text.php:1285 ../../include/js_strings.php:70 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1239 ../../include/js_strings.php:71 +#: ../../include/text.php:1285 ../../include/js_strings.php:71 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1239 ../../include/js_strings.php:72 +#: ../../include/text.php:1285 ../../include/js_strings.php:72 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1239 ../../include/js_strings.php:73 +#: ../../include/text.php:1285 ../../include/js_strings.php:73 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1239 ../../include/js_strings.php:74 +#: ../../include/text.php:1285 ../../include/js_strings.php:74 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1239 ../../include/js_strings.php:75 +#: ../../include/text.php:1285 ../../include/js_strings.php:75 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1239 ../../include/js_strings.php:69 +#: ../../include/text.php:1285 ../../include/js_strings.php:69 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1243 ../../include/js_strings.php:45 +#: ../../include/text.php:1289 ../../include/js_strings.php:45 msgid "January" msgstr "enero" -#: ../../include/text.php:1243 ../../include/js_strings.php:46 +#: ../../include/text.php:1289 ../../include/js_strings.php:46 msgid "February" msgstr "febrero" -#: ../../include/text.php:1243 ../../include/js_strings.php:47 +#: ../../include/text.php:1289 ../../include/js_strings.php:47 msgid "March" msgstr "marzo" -#: ../../include/text.php:1243 ../../include/js_strings.php:48 +#: ../../include/text.php:1289 ../../include/js_strings.php:48 msgid "April" msgstr "abril" -#: ../../include/text.php:1243 +#: ../../include/text.php:1289 msgid "May" msgstr "mayo" -#: ../../include/text.php:1243 ../../include/js_strings.php:50 +#: ../../include/text.php:1289 ../../include/js_strings.php:50 msgid "June" msgstr "junio" -#: ../../include/text.php:1243 ../../include/js_strings.php:51 +#: ../../include/text.php:1289 ../../include/js_strings.php:51 msgid "July" msgstr "julio" -#: ../../include/text.php:1243 ../../include/js_strings.php:52 +#: ../../include/text.php:1289 ../../include/js_strings.php:52 msgid "August" msgstr "agosto" -#: ../../include/text.php:1243 ../../include/js_strings.php:53 +#: ../../include/text.php:1289 ../../include/js_strings.php:53 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1243 ../../include/js_strings.php:54 +#: ../../include/text.php:1289 ../../include/js_strings.php:54 msgid "October" msgstr "octubre" -#: ../../include/text.php:1243 ../../include/js_strings.php:55 +#: ../../include/text.php:1289 ../../include/js_strings.php:55 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1243 ../../include/js_strings.php:56 +#: ../../include/text.php:1289 ../../include/js_strings.php:56 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1320 ../../include/text.php:1324 +#: ../../include/text.php:1366 ../../include/text.php:1370 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1326 +#: ../../include/text.php:1372 msgid "unknown" msgstr "desconocido" -#: ../../include/text.php:1362 +#: ../../include/text.php:1408 msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1439 +#: ../../include/text.php:1485 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1738 ../../include/text.php:1809 +#: ../../include/text.php:1784 ../../include/text.php:1855 msgid "default" msgstr "por defecto" -#: ../../include/text.php:1746 +#: ../../include/text.php:1792 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:1746 +#: ../../include/text.php:1792 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:1788 +#: ../../include/text.php:1834 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:1821 +#: ../../include/text.php:1867 msgid "Select an alternate language" msgstr "Seleccionar un idioma alternativo" -#: ../../include/text.php:1958 +#: ../../include/text.php:2004 msgid "activity" msgstr "la actividad" -#: ../../include/text.php:2259 +#: ../../include/text.php:2305 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2265 +#: ../../include/text.php:2311 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2287 +#: ../../include/text.php:2333 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2288 +#: ../../include/text.php:2334 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2289 +#: ../../include/text.php:2335 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2290 -msgid "Import from cloud files:" -msgstr "Importar desde los ficheros en la nube: " +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "Importar desde los ficheros en la nube: " + +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/canal/ruta/a la/carpeta" + +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "Ruta a los ficheros del sitio web" + +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "Seleccionar la carpeta" + +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "Exportar un sitio web..." + +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "Exportar a un fichero comprimido .zip" + +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "sitio_web.zip" + +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "Escribir un nombre para el fichero .zip." + +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "Exportar a los ficheros en la nube" + +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "/ruta/para/exportar/carpeta" + +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "Escribir una ruta de destino para los ficheros en la nube" + +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "Especificar una carpeta" + +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" + +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" + +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" + +#: ../../include/zot.php:3713 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" + +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" + +#: ../../include/account.php:37 +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." + +#: ../../include/account.php:43 +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:75 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/canal/ruta/a la/carpeta" +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." -#: ../../include/text.php:2292 -msgid "Enter path to website files" -msgstr "Ruta a los ficheros del sitio web" +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/text.php:2293 -msgid "Select folder" -msgstr "Seleccionar la carpeta" +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Temas" +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../include/account.php:326 ../../include/account.php:353 +#: ../../include/account.php:413 ../../include/network.php:1937 +msgid "Administrator" +msgstr "Administrador" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nueva aplicación (app)" +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "su contraseña de registro" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "Cuenta aprobada." -#: ../../include/widgets.php:175 +#: ../../include/account.php:463 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" +#: ../../include/account.php:756 +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/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" -#: ../../include/widgets.php:281 ../../include/features.php:85 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "añadir" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../include/widgets.php:310 ../../include/features.php:99 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetas guardadas" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frecuentemente" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Todo" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Cada hora" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Dos veces al día" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Recargar" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Diariamente" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Configuración de la cuenta" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Semanalmente" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Configuración del canal" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Mensualmente" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funcionalidades" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Hombre" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Complementos" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Mujer" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustes de visualización" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actualmente hombre" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actualmente mujer" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportar canal" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Generalmente hombre" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Generalmente mujer" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgénero" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexual" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinada" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transexual" -#: ../../include/widgets.php:667 ../../include/nav.php:200 -msgid "Inbox" -msgstr "Bandeja de entrada" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../include/widgets.php:672 ../../include/nav.php:201 -msgid "Outbox" -msgstr "Bandeja de salida" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Neutral" -#: ../../include/widgets.php:677 ../../include/nav.php:202 -msgid "New Message" -msgstr "Nuevo mensaje" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "No especificado" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaciones" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso/a" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mensajes recibidos" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Hombres" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Enviar mensajes" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Mujeres" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sin mensajes." +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homosexual" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Eliminar conversación" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbiana" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestión de eventos" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sin preferencias" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar el calendario" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar un calendario" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../include/widgets.php:850 ../../include/conversation.php:1695 -#: ../../include/conversation.php:1698 -msgid "Chatrooms" -msgstr "Salas de chat" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Casto/a" -#: ../../include/widgets.php:854 -msgid "Overview" -msgstr "Resumen" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Virgen" -#: ../../include/widgets.php:861 -msgid "Chat Members" -msgstr "Miembros del chat" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Fuera de lo común" -#: ../../include/widgets.php:883 -msgid "Wiki List" -msgstr "Lista de wikis" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetichista" -#: ../../include/widgets.php:921 -msgid "Wiki Pages" -msgstr "Páginas del wiki" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Orgías" -#: ../../include/widgets.php:956 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asexual" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Soltero/a" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solo/a" -#: ../../include/widgets.php:979 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" -#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 -msgid "photo/image" -msgstr "foto/imagen" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "No disponible" -#: ../../include/widgets.php:1180 -msgid "Click to show more" -msgstr "Hacer clic para ver más" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Enamorado/a" -#: ../../include/widgets.php:1331 -msgid "Rating Tools" -msgstr "Valoraciones" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Apasionado/a" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 -msgid "Rate Me" -msgstr "Valorar este canal" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Saliendo con alguien" -#: ../../include/widgets.php:1340 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infiel" -#: ../../include/widgets.php:1424 -msgid "Forums" -msgstr "Foros" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Con adicción al sexo" -#: ../../include/widgets.php:1453 -msgid "Tasks" -msgstr "Tareas" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amigos con algo extra" -#: ../../include/widgets.php:1462 -msgid "Documentation" -msgstr "Documentación" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../include/widgets.php:1464 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Prometido/a" -#: ../../include/widgets.php:1465 -msgid "For Members" -msgstr "Para los miembros" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Casado/a" -#: ../../include/widgets.php:1466 -msgid "For Administrators" -msgstr "Para los administradores" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Casado/a en sueños" -#: ../../include/widgets.php:1467 -msgid "For Developers" -msgstr "Para los desarrolladores" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Pareja" -#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Cohabitando" -#: ../../include/widgets.php:1497 -msgid "Inspect queue" -msgstr "Examinar la cola" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio tradicional" -#: ../../include/widgets.php:1499 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felíz" -#: ../../include/widgets.php:1524 ../../include/nav.php:220 -msgid "Admin" -msgstr "Administrador" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "No estoy buscando" -#: ../../include/widgets.php:1525 -msgid "Plugin Features" -msgstr "Extensiones" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Libertino" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nueva ventana" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Engañado/a" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separado/a" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Inestable" -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorciado/a" -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" -msgstr "Selección personalizada" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorciado/a en sueños" -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Viudo/a" -#: ../../include/acl_selectors.php:172 -msgid "Show" -msgstr "Mostrar" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Indeterminado" -#: ../../include/acl_selectors.php:173 -msgid "Don't show" -msgstr "No mostrar" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es complicado" -#: ../../include/acl_selectors.php:207 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje." +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "No me importa" -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Cronología pública" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Pregúnteme" #: ../../include/channel.php:33 msgid "Unable to obtain identity information from database" @@ -7917,7 +8334,7 @@ msgstr "El canal solicitado no está disponible." msgid "Create New Profile" msgstr "Crear un nuevo perfil" -#: ../../include/channel.php:963 ../../include/nav.php:92 +#: ../../include/channel.php:963 ../../include/nav.php:93 msgid "Edit Profile" msgstr "Editar el perfil" @@ -8030,1093 +8447,1042 @@ msgstr "Estudios:" msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Cumpleaños" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edad:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2577 -msgid "never" -msgstr "nunca" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "hace un instante" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selección personalizada" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostrar" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "No mostrar" -#: ../../include/datetime.php:563 +#: ../../include/acl_selectors.php:207 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frecuentemente" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Cada hora" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Dos veces al día" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Diariamente" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Semanalmente" +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje." -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Mensualmente" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" -msgstr "Hombre" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" -msgstr "Mujer" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Añadir conexiones nuevas a este grupo de canales" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actualmente hombre" +#: ../../include/group.php:289 +msgid "edit" +msgstr "editar" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actualmente mujer" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Editar grupo" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Generalmente hombre" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Añadir un grupo de canales" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Generalmente mujer" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Sin canales en ningún grupo" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgénero" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "añadir" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexual" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nueva ventana" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transexual" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "El usuario '%s' ha sido eliminado" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutral" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nueva página" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "No especificado" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Título" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso/a" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Hombres" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "Finalizar sesión" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Mujeres" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "Finalizar esta sesión" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homosexual" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "Inicio" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbiana" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sin preferencias" +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "Su página del perfil" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "Editar su perfil" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Casto/a" +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "Sus fotos" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Virgen" +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "Sus ficheros" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Fuera de lo común" +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "Sus salas de chat" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetichista" +#: ../../include/nav.php:105 ../../include/conversation.php:1715 +msgid "Bookmarks" +msgstr "Marcadores" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Orgías" +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "Sus marcadores" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "Sus páginas web" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Soltero/a" +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "Su wiki" -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solo/a" +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "Acceder" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "No disponible" +#: ../../include/nav.php:135 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Enamorado/a" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Apasionado/a" +#: ../../include/nav.php:149 +msgid "Home Page" +msgstr "Página de inicio" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Saliendo con alguien" +#: ../../include/nav.php:152 +msgid "Create an account" +msgstr "Crear una cuenta" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infiel" +#: ../../include/nav.php:164 +msgid "Help and documentation" +msgstr "Ayuda y documentación" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Con adicción al sexo" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amigos con algo extra" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/nav.php:172 +msgid "Channel Directory" +msgstr "Directorio de canales" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Prometido/a" +#: ../../include/nav.php:184 +msgid "Your grid" +msgstr "Mi red" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Casado/a" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" +#: ../../include/nav.php:187 +msgid "Channel home" +msgstr "Mi canal" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Pareja" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Cohabitando" +#: ../../include/nav.php:194 +msgid "Notices" +msgstr "Avisos" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio tradicional" +#: ../../include/nav.php:194 +msgid "Notifications" +msgstr "Notificaciones" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felíz" +#: ../../include/nav.php:195 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "No estoy buscando" +#: ../../include/nav.php:198 +msgid "Private mail" +msgstr "Correo privado" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Libertino" +#: ../../include/nav.php:199 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Engañado/a" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separado/a" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" +msgstr "Bandeja de entrada" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Inestable" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" +msgstr "Bandeja de salida" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorciado/a" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" +msgstr "Nuevo mensaje" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" +#: ../../include/nav.php:206 +msgid "Event Calendar" +msgstr "Calendario de eventos" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Viudo/a" +#: ../../include/nav.php:207 +msgid "See all events" +msgstr "Ver todos los eventos" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Indeterminado" +#: ../../include/nav.php:208 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es complicado" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "No me importa" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Pregúnteme" +#: ../../include/nav.php:221 ../../include/widgets.php:1594 +msgid "Admin" +msgstr "Administrador" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " +#: ../../include/nav.php:252 ../../include/conversation.php:853 +msgid "Loading..." +msgstr "Cargando..." -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nueva foto" +#: ../../include/nav.php:258 +msgid "Please wait..." +msgstr "Espere por favor…" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha publicado %2$s en %3$s" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" -#: ../../include/photos.php:506 ../../include/conversation.php:1668 -msgid "Photo Albums" -msgstr "Álbumes de fotos" +#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" +msgstr "l d de F, Y \\@ G:i" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "invitado: " +#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" +msgstr "Comienza:" -#: ../../include/security.php:527 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" +#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" +msgstr "Finaliza:" -#: ../../include/conversation.php:204 +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "¿Borrar este elemento?" + +#: ../../include/js_strings.php:8 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado/a con %2$s" +msgid "%s show less" +msgstr "%s mostrar menos" -#: ../../include/conversation.php:239 +#: ../../include/js_strings.php:9 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha dado un toque a %2$s" +msgid "%s expand" +msgstr "%s expandir" -#: ../../include/conversation.php:694 +#: ../../include/js_strings.php:10 #, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" +msgid "%s collapse" +msgstr "%s contraer" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Temas:" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Contraseña demasiado corta" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Archivado bajo:" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Mostrar en su contexto" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "cualquiera" -#: ../../include/conversation.php:851 -msgid "remove" -msgstr "eliminar" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Contraseña secreta" -#: ../../include/conversation.php:855 ../../include/nav.php:251 -msgid "Loading..." -msgstr "Cargando..." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Pista de contraseña" -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." -#: ../../include/conversation.php:949 -msgid "View Source" -msgstr "Ver el código fuente de la entrada" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "cerrar todo" -#: ../../include/conversation.php:950 -msgid "Follow Thread" -msgstr "Seguir este hilo" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Dejar de seguir este hilo" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valorar este canal (esto es público)" -#: ../../include/conversation.php:956 -msgid "Activity/Posts" -msgstr "Actividad y publicaciones" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Describir (opcional)" -#: ../../include/conversation.php:958 -msgid "Edit Connection" -msgstr "Editar conexión" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Por favor, introduzca una dirección de enlace" -#: ../../include/conversation.php:959 -msgid "Message" -msgstr "Mensaje" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "a %2$d personas le gusta esto." -msgstr[1] "A %2$d personas les gusta esto." +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "antes" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "a %2$d personas no les gusta esto." -msgstr[1] "A %2$d personas no les gusta esto." +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "desde ahora" -#: ../../include/conversation.php:1088 -msgid "and" -msgstr "y" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "menos de un minuto" -#: ../../include/conversation.php:1091 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", y %d persona más" -msgstr[1] ", y %d personas más" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "alrededor de un minuto" -#: ../../include/conversation.php:1092 +#: ../../include/js_strings.php:33 #, php-format -msgid "%s like this." -msgstr "A %s le gusta esto." +msgid "%d minutes" +msgstr "%d minutos" -#: ../../include/conversation.php:1092 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le gusta esto." +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "alrededor de una hora" + +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "alrededor de %d horas" -#: ../../include/conversation.php:1135 -msgid "Set your location" -msgstr "Establecer su ubicación" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un día" -#: ../../include/conversation.php:1136 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d días" -#: ../../include/conversation.php:1184 -msgid "Tag term:" -msgstr "Término de la etiqueta:" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "alrededor de un mes" -#: ../../include/conversation.php:1185 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d meses" -#: ../../include/conversation.php:1194 -msgid "Comments enabled" -msgstr "Comentarios habilitados" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "alrededor de un año" -#: ../../include/conversation.php:1195 -msgid "Comments disabled" -msgstr "Comentarios deshabilitados" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d años" -#: ../../include/conversation.php:1229 -msgid "Page link name" -msgstr "Nombre del enlace de la página" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/conversation.php:1232 -msgid "Post as" -msgstr "Publicar como" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/conversation.php:1246 -msgid "Toggle voting" -msgstr "Cambiar votación" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mayo" -#: ../../include/conversation.php:1249 -msgid "Disable comments" -msgstr "Dehabilitar los comentarios" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "ene" -#: ../../include/conversation.php:1250 -msgid "Toggle comments" -msgstr "Activar o desactivar los comentarios" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../include/conversation.php:1258 -msgid "Categories (optional, comma-separated list)" -msgstr "Temas (opcional, lista separada por comas)" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mar" -#: ../../include/conversation.php:1281 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "abr" -#: ../../include/conversation.php:1287 -msgid "Set publish date" -msgstr "Establecer la fecha de publicación" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "may" -#: ../../include/conversation.php:1536 -msgid "Discover" -msgstr "Descubrir" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/conversation.php:1539 -msgid "Imported public streams" -msgstr "Contenidos públicos importados" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/conversation.php:1544 -msgid "Commented Order" -msgstr "Comentarios recientes" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "ago" -#: ../../include/conversation.php:1547 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/conversation.php:1551 -msgid "Posted Order" -msgstr "Publicaciones recientes" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "oct" -#: ../../include/conversation.php:1554 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/conversation.php:1562 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dic" -#: ../../include/conversation.php:1571 -msgid "Activity Stream - by date" -msgstr "Contenido - por fecha" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "dom" -#: ../../include/conversation.php:1577 -msgid "Starred" -msgstr "Preferidas" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "lun" -#: ../../include/conversation.php:1580 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "mar" -#: ../../include/conversation.php:1587 -msgid "Spam" -msgstr "Correo basura" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "mié" -#: ../../include/conversation.php:1590 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "jue" -#: ../../include/conversation.php:1647 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vie" -#: ../../include/conversation.php:1656 -msgid "About" -msgstr "Mi perfil" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "sáb" -#: ../../include/conversation.php:1659 -msgid "Profile Details" -msgstr "Detalles del perfil" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "hoy" -#: ../../include/conversation.php:1675 -msgid "Files and Storage" -msgstr "Ficheros y repositorio" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mes" -#: ../../include/conversation.php:1708 ../../include/nav.php:104 -msgid "Bookmarks" -msgstr "Marcadores" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "semana" -#: ../../include/conversation.php:1711 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "día" -#: ../../include/conversation.php:1721 -msgid "Manage Webpages" -msgstr "Administrar páginas web" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Todos los días" -#: ../../include/conversation.php:1786 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participaré" -msgstr[1] "Participaré" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No participaré" -msgstr[1] "No participaré" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Falta la dirección del canal." -#: ../../include/conversation.php:1792 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." -#: ../../include/conversation.php:1795 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "De acuerdo" -msgstr[1] "De acuerdo" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." -#: ../../include/conversation.php:1798 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "En desacuerdo" -msgstr[1] "En desacuerdo" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." -#: ../../include/conversation.php:1801 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "Imagen/foto" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Añadir conexiones nuevas a este grupo de canales" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "Contenido cifrado" -#: ../../include/group.php:289 -msgid "edit" -msgstr "editar" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" -#: ../../include/group.php:311 ../../include/features.php:84 -msgid "Privacy Groups" -msgstr "Grupos de canales" +#: ../../include/bbcode.php:182 +#, 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/group.php:312 -msgid "Edit group" -msgstr "Editar grupo" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Añadir un grupo de canales" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Sin canales en ningún grupo" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nueva página" +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "$1 escribió:" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Título" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ahora está conectado/a con %2$s" -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver el perfil @ %s de %s" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Comienza:" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Temas:" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Finaliza:" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Archivado bajo:" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." +#: ../../include/conversation.php:739 +msgid "View in context" +msgstr "Mostrar en su contexto" -#: ../../include/event.php:1021 -msgid "Not specified" -msgstr "Sin especificar" +#: ../../include/conversation.php:849 +msgid "remove" +msgstr "eliminar" -#: ../../include/event.php:1022 -msgid "Needs Action" -msgstr "Necesita de una intervención" +#: ../../include/conversation.php:854 +msgid "Delete Selected Items" +msgstr "Eliminar elementos seleccionados" -#: ../../include/event.php:1023 -msgid "Completed" -msgstr "Completado/a" +#: ../../include/conversation.php:947 +msgid "View Source" +msgstr "Ver el código fuente de la entrada" -#: ../../include/event.php:1024 -msgid "In Process" -msgstr "En proceso" +#: ../../include/conversation.php:948 +msgid "Follow Thread" +msgstr "Seguir este hilo" -#: ../../include/event.php:1025 -msgid "Cancelled" -msgstr "Cancelado/a" +#: ../../include/conversation.php:949 +msgid "Unfollow Thread" +msgstr "Dejar de seguir este hilo" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" +#: ../../include/conversation.php:954 +msgid "Activity/Posts" +msgstr "Actividad y publicaciones" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" +#: ../../include/conversation.php:956 +msgid "Edit Connection" +msgstr "Editar conexión" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "¿Borrar este elemento?" +#: ../../include/conversation.php:957 +msgid "Message" +msgstr "Mensaje" -#: ../../include/js_strings.php:8 +#: ../../include/conversation.php:1077 #, php-format -msgid "%s show less" -msgstr "%s mostrar menos" +msgid "%s likes this." +msgstr "A %s le gusta esto." -#: ../../include/js_strings.php:9 +#: ../../include/conversation.php:1077 #, php-format -msgid "%s expand" -msgstr "%s expandir" +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." -#: ../../include/js_strings.php:10 +#: ../../include/conversation.php:1081 #, php-format -msgid "%s collapse" -msgstr "%s contraer" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Contraseña demasiado corta" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "cualquiera" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Contraseña secreta" +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "a %2$d personas le gusta esto." +msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Pista de contraseña" +#: ../../include/conversation.php:1083 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "a %2$d personas no les gusta esto." +msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." +#: ../../include/conversation.php:1089 +msgid "and" +msgstr "y" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "cerrar todo" +#: ../../include/conversation.php:1092 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", y %d persona más" +msgstr[1] ", y %d personas más" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" +#: ../../include/conversation.php:1093 +#, php-format +msgid "%s like this." +msgstr "A %s le gusta esto." -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valorar este canal (esto es público)" +#: ../../include/conversation.php:1093 +#, php-format +msgid "%s don't like this." +msgstr "A %s no le gusta esto." -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Describir (opcional)" +#: ../../include/conversation.php:1136 +msgid "Set your location" +msgstr "Establecer su ubicación" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Por favor, introduzca una dirección de enlace" +#: ../../include/conversation.php:1137 +msgid "Clear browser location" +msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" +#: ../../include/conversation.php:1185 +msgid "Tag term:" +msgstr "Término de la etiqueta:" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/conversation.php:1186 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/conversation.php:1195 +msgid "Comments enabled" +msgstr "Comentarios habilitados" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "antes" +#: ../../include/conversation.php:1196 +msgid "Comments disabled" +msgstr "Comentarios deshabilitados" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "desde ahora" +#: ../../include/conversation.php:1234 +msgid "Page link name" +msgstr "Nombre del enlace de la página" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "menos de un minuto" +#: ../../include/conversation.php:1237 +msgid "Post as" +msgstr "Publicar como" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "alrededor de un minuto" +#: ../../include/conversation.php:1251 +msgid "Toggle voting" +msgstr "Cambiar votación" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" +#: ../../include/conversation.php:1254 +msgid "Disable comments" +msgstr "Dehabilitar los comentarios" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "alrededor de una hora" +#: ../../include/conversation.php:1255 +msgid "Toggle comments" +msgstr "Activar o desactivar los comentarios" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "alrededor de %d horas" +#: ../../include/conversation.php:1263 +msgid "Categories (optional, comma-separated list)" +msgstr "Temas (opcional, lista separada por comas)" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un día" +#: ../../include/conversation.php:1286 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d días" +#: ../../include/conversation.php:1292 +msgid "Set publish date" +msgstr "Establecer la fecha de publicación" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "alrededor de un mes" +#: ../../include/conversation.php:1541 +msgid "Discover" +msgstr "Descubrir" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d meses" +#: ../../include/conversation.php:1544 +msgid "Imported public streams" +msgstr "Contenidos públicos importados" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "alrededor de un año" +#: ../../include/conversation.php:1549 +msgid "Commented Order" +msgstr "Comentarios recientes" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d años" +#: ../../include/conversation.php:1552 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentario" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/conversation.php:1556 +msgid "Posted Order" +msgstr "Publicaciones recientes" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:1559 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mayo" +#: ../../include/conversation.php:1567 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "ene" +#: ../../include/conversation.php:1576 +msgid "Activity Stream - by date" +msgstr "Contenido - por fecha" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/conversation.php:1582 +msgid "Starred" +msgstr "Preferidas" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mar" +#: ../../include/conversation.php:1585 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "abr" +#: ../../include/conversation.php:1592 +msgid "Spam" +msgstr "Correo basura" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "may" +#: ../../include/conversation.php:1595 +msgid "Posts flagged as SPAM" +msgstr "Publicaciones marcadas como basura" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/conversation.php:1654 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/conversation.php:1663 +msgid "About" +msgstr "Mi perfil" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "ago" +#: ../../include/conversation.php:1666 +msgid "Profile Details" +msgstr "Detalles del perfil" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/conversation.php:1682 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "oct" +#: ../../include/conversation.php:1702 ../../include/conversation.php:1705 +#: ../../include/widgets.php:883 +msgid "Chatrooms" +msgstr "Salas de chat" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/conversation.php:1718 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dic" +#: ../../include/conversation.php:1728 +msgid "Manage Webpages" +msgstr "Administrar páginas web" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "dom" +#: ../../include/conversation.php:1793 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participaré" +msgstr[1] "Participaré" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "lun" +#: ../../include/conversation.php:1796 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No participaré" +msgstr[1] "No participaré" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "mar" +#: ../../include/conversation.php:1799 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso/a" +msgstr[1] "Indecisos/as" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "mié" +#: ../../include/conversation.php:1802 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "De acuerdo" +msgstr[1] "De acuerdo" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "jue" +#: ../../include/conversation.php:1805 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "En desacuerdo" +msgstr[1] "En desacuerdo" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vie" +#: ../../include/conversation.php:1808 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "se abstiene" +msgstr[1] "Se abstienen" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "sáb" +#: ../../include/datetime.php:147 +msgid "Birthday" +msgstr "Cumpleaños" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "hoy" +#: ../../include/datetime.php:149 +msgid "Age: " +msgstr "Edad:" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mes" +#: ../../include/datetime.php:151 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "semana" +#: ../../include/datetime.php:284 ../../boot.php:2578 +msgid "never" +msgstr "nunca" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "día" +#: ../../include/datetime.php:290 +msgid "less than a second ago" +msgstr "hace un instante" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Todos los días" +#: ../../include/datetime.php:308 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Falta la dirección del canal." +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." +#: ../../include/datetime.php:328 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." +#: ../../include/datetime.php:331 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." +#: ../../include/datetime.php:334 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." +#: ../../include/datetime.php:337 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Elemento no encontrado." +#: ../../include/datetime.php:574 +#, php-format +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Ningún fichero de origen" +#: ../../include/datetime.php:575 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opciones del directorio" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." +#: ../../include/event.php:824 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." -msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." +#: ../../include/event.php:1024 +msgid "Not specified" +msgstr "Sin especificar" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." -msgstr "Ruta no disponible." +#: ../../include/event.php:1025 +msgid "Needs Action" +msgstr "Necesita de una intervención" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" -msgstr "Ruta vacía" +#: ../../include/event.php:1026 +msgid "Completed" +msgstr "Completado/a" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" +#: ../../include/event.php:1027 +msgid "In Process" +msgstr "En proceso" -#: ../../include/attach.php:1026 -msgid "Path not found." -msgstr "Ruta no encontrada" +#: ../../include/event.php:1028 +msgid "Cancelled" +msgstr "Cancelado/a" -#: ../../include/attach.php:1084 -msgid "mkdir failed." -msgstr "mkdir ha fallado." +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "Ruta vacía" +#: ../../include/import.php:1447 +msgid "Unable to import element \"" +msgstr "No se puede importar un elemento \"" #: ../../include/auth.php:148 msgid "Logged out." @@ -9153,303 +9519,59 @@ msgstr "Visitar %2$s de %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s ha actualizado %2$s, cambiando %3$s." -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" - -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" - -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" - -#: ../../include/zot.php:3706 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" - -#: ../../include/features.php:50 -msgid "General Features" -msgstr "Funcionalidades básicas" - -#: ../../include/features.php:52 -msgid "Content Expiration" -msgstr "Caducidad del contenido" - -#: ../../include/features.php:52 -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:53 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" - -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" - -#: ../../include/features.php:54 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" - -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" - -#: ../../include/features.php:55 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" - -#: ../../include/features.php:55 -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:56 -msgid "Web Pages" -msgstr "Páginas web" - -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" - -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" -msgstr "Proporcionar un wiki para su canal" - -#: ../../include/features.php:59 -msgid "Private Notes" -msgstr "Notas privadas" - -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" - -#: ../../include/features.php:60 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" - -#: ../../include/features.php:60 -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:61 -msgid "Photo Location" -msgstr "Ubicación de las fotos" - -#: ../../include/features.php:61 -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:62 -msgid "Access Controlled Chatrooms" -msgstr "Salas de chat moderadas" - -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." -msgstr "Proporcionar salas y servicios de chat moderados." - -#: ../../include/features.php:63 -msgid "Smart Birthdays" -msgstr "Cumpleaños inteligentes" - -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." - -#: ../../include/features.php:64 -msgid "Expert Mode" -msgstr "Modo de experto" - -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" - -#: ../../include/features.php:69 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" - -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" - -#: ../../include/features.php:70 -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:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" - -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" - -#: ../../include/features.php:72 -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:73 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" - -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" - -#: ../../include/features.php:74 -msgid "Disable Comments" -msgstr "Deshabilitar comentarios" - -#: ../../include/features.php:74 -msgid "Provide the option to disable comments for a post" -msgstr "Proporcionar la opción de desactivar los comentarios de una publicación" - -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Publicación aplazada" - -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" - -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" - -#: ../../include/features.php:76 -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:82 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" - -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Buscar por fecha" - -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" - -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" - -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" - -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Actividad personal" - -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." - -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Contenido nuevo" - -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" - -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" - -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" - -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" - -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" - -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" - -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" - -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" - -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" - -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Temas de las entradas" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "Ver en el tamaño original" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Añadir temas a sus publicaciones" +#: ../../include/network.php:1953 +msgid "No Subject" +msgstr "Sin asunto" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoticonos \"emoji\"" +#: ../../include/network.php:2207 ../../include/network.php:2208 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" +#: ../../include/network.php:2209 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" +#: ../../include/network.php:2210 +msgid "GNU-Social" +msgstr "GNU Social" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" +#: ../../include/network.php:2211 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" +#: ../../include/network.php:2213 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Entradas destacadas" +#: ../../include/network.php:2214 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" +#: ../../include/network.php:2215 +msgid "Zot" +msgstr "Zot" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" +#: ../../include/network.php:2216 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../include/network.php:2217 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/features.php:111 -msgid "Premium Channel" -msgstr "Canal premium" +#: ../../include/network.php:2218 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/features.php:112 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "Temas" #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" @@ -9483,117 +9605,6 @@ msgstr "gusta de" msgid "dislikes" msgstr "no gusta de" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" - -#: ../../include/account.php:30 -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." - -#: ../../include/account.php:36 -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:68 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "su contraseña de registro" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Cuenta aprobada." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" - -#: ../../include/account.php:747 -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:752 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Imagen/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" - -#: ../../include/bbcode.php:182 -#, 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:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 escribió:" - #: ../../include/contact_widgets.php:11 #, php-format msgid "%d invitation available" @@ -9629,224 +9640,356 @@ msgstr "Invitar a amigos" msgid "Advanced example: name=fred and country=iceland" msgstr "Ejemplo avanzado: nombre=juan y país=españa" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexión en común" -msgstr[1] "%d conexiones en común" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "Todo" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d conexión en común" +msgstr[1] "%d conexiones en común" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostrar más" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nueva aplicación (app)" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" + +#: ../../include/widgets.php:275 +msgid "Remove term" +msgstr "Eliminar término" + +#: ../../include/widgets.php:390 +msgid "Archives" +msgstr "Hemeroteca" + +#: ../../include/widgets.php:552 +msgid "Refresh" +msgstr "Recargar" + +#: ../../include/widgets.php:592 +msgid "Account settings" +msgstr "Configuración de la cuenta" + +#: ../../include/widgets.php:598 +msgid "Channel settings" +msgstr "Configuración del canal" + +#: ../../include/widgets.php:607 +msgid "Additional features" +msgstr "Funcionalidades" + +#: ../../include/widgets.php:614 +msgid "Feature/Addon settings" +msgstr "Complementos" + +#: ../../include/widgets.php:620 +msgid "Display settings" +msgstr "Ajustes de visualización" + +#: ../../include/widgets.php:627 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" + +#: ../../include/widgets.php:634 +msgid "Export channel" +msgstr "Exportar canal" + +#: ../../include/widgets.php:640 +msgid "Connected apps" +msgstr "Aplicaciones (apps) conectadas" + +#: ../../include/widgets.php:664 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" + +#: ../../include/widgets.php:693 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" + +#: ../../include/widgets.php:695 +msgid "Combined View" +msgstr "Vista combinada" + +#: ../../include/widgets.php:727 ../../include/widgets.php:739 +msgid "Conversations" +msgstr "Conversaciones" + +#: ../../include/widgets.php:731 +msgid "Received Messages" +msgstr "Mensajes recibidos" + +#: ../../include/widgets.php:735 +msgid "Sent Messages" +msgstr "Enviar mensajes" + +#: ../../include/widgets.php:749 +msgid "No messages." +msgstr "Sin mensajes." + +#: ../../include/widgets.php:767 +msgid "Delete conversation" +msgstr "Eliminar conversación" + +#: ../../include/widgets.php:793 +msgid "Events Tools" +msgstr "Gestión de eventos" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostrar más" +#: ../../include/widgets.php:794 +msgid "Export Calendar" +msgstr "Exportar el calendario" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opciones del directorio" +#: ../../include/widgets.php:795 +msgid "Import Calendar" +msgstr "Importar un calendario" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" +#: ../../include/widgets.php:887 +msgid "Overview" +msgstr "Resumen" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" +#: ../../include/widgets.php:894 +msgid "Chat Members" +msgstr "Miembros del chat" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" +#: ../../include/widgets.php:916 +msgid "Wiki List" +msgstr "Lista de wikis" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." +#: ../../include/widgets.php:954 +msgid "Wiki Pages" +msgstr "Páginas del wiki" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " +#: ../../include/widgets.php:1020 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 +msgid "photo/image" +msgstr "foto/imagen" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." +#: ../../include/widgets.php:1221 +msgid "Click to show more" +msgstr "Hacer clic para ver más" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +#: ../../include/widgets.php:1372 +msgid "Rating Tools" +msgstr "Valoraciones" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 -msgid "Logout" -msgstr "Finalizar sesión" +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 +msgid "Rate Me" +msgstr "Valorar este canal" -#: ../../include/nav.php:84 ../../include/nav.php:117 -msgid "End this session" -msgstr "Finalizar esta sesión" +#: ../../include/widgets.php:1381 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" -#: ../../include/nav.php:87 ../../include/nav.php:148 -msgid "Home" -msgstr "Inicio" +#: ../../include/widgets.php:1465 +msgid "Forums" +msgstr "Foros" -#: ../../include/nav.php:87 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" +#: ../../include/widgets.php:1494 +msgid "Tasks" +msgstr "Tareas" -#: ../../include/nav.php:88 -msgid "Your profile page" -msgstr "Su página del perfil" +#: ../../include/widgets.php:1505 +msgid "Documentation" +msgstr "Documentación" -#: ../../include/nav.php:90 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" +#: ../../include/widgets.php:1561 ../../include/widgets.php:1599 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" -#: ../../include/nav.php:92 -msgid "Edit your profile" -msgstr "Editar su perfil" +#: ../../include/widgets.php:1567 +msgid "Inspect queue" +msgstr "Examinar la cola" -#: ../../include/nav.php:94 -msgid "Your photos" -msgstr "Sus fotos" +#: ../../include/widgets.php:1569 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" -#: ../../include/nav.php:95 -msgid "Your files" -msgstr "Sus ficheros" +#: ../../include/widgets.php:1595 +msgid "Plugin Features" +msgstr "Extensiones" -#: ../../include/nav.php:98 -msgid "Your chatrooms" -msgstr "Sus salas de chat" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Cronología pública" -#: ../../include/nav.php:104 -msgid "Your bookmarks" -msgstr "Sus marcadores" +#: ../../include/oembed.php:322 +msgid " by " +msgstr "por" -#: ../../include/nav.php:108 -msgid "Your webpages" -msgstr "Sus páginas web" +#: ../../include/oembed.php:323 +msgid " on " +msgstr "en" -#: ../../include/nav.php:110 -msgid "Your wiki" -msgstr "Su wiki" +#: ../../include/oembed.php:352 +msgid "Embedded content" +msgstr "Contenido incorporado" -#: ../../include/nav.php:114 -msgid "Sign in" -msgstr "Acceder" +#: ../../include/oembed.php:361 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" -#: ../../include/nav.php:131 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "(Desconocido)" -#: ../../include/nav.php:134 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." -#: ../../include/nav.php:134 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" +#: ../../include/items.php:1164 +msgid "Visible to you only." +msgstr "Visible sólo para usted." -#: ../../include/nav.php:148 -msgid "Home Page" -msgstr "Página de inicio" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." -#: ../../include/nav.php:151 -msgid "Create an account" -msgstr "Crear una cuenta" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que esté autenticado." -#: ../../include/nav.php:163 -msgid "Help and documentation" -msgstr "Ayuda y documentación" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." -#: ../../include/nav.php:167 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." -#: ../../include/nav.php:169 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." -#: ../../include/nav.php:171 -msgid "Channel Directory" -msgstr "Directorio de canales" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." -#: ../../include/nav.php:183 -msgid "Your grid" -msgstr "Mi red" +#: ../../include/items.php:3976 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." -#: ../../include/nav.php:184 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" +#: ../../include/items.php:3983 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" -#: ../../include/nav.php:186 -msgid "Channel home" -msgstr "Mi canal" +#: ../../include/items.php:3995 +msgid "Connection not found." +msgstr "Conexión no encontrada" -#: ../../include/nav.php:187 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" +#: ../../include/items.php:4348 +msgid "profile photo" +msgstr "foto del perfil" -#: ../../include/nav.php:193 -msgid "Notices" -msgstr "Avisos" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Elemento no encontrado." -#: ../../include/nav.php:193 -msgid "Notifications" -msgstr "Notificaciones" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Ningún fichero de origen" -#: ../../include/nav.php:194 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/nav.php:197 -msgid "Private mail" -msgstr "Correo privado" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/nav.php:198 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/nav.php:199 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../include/nav.php:205 -msgid "Event Calendar" -msgstr "Calendario de eventos" +#: ../../include/attach.php:854 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../include/nav.php:206 -msgid "See all events" -msgstr "Ver todos los eventos" +#: ../../include/attach.php:867 +msgid "Stored file could not be verified. Upload failed." +msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../include/nav.php:207 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" +#: ../../include/attach.php:923 ../../include/attach.php:939 +msgid "Path not available." +msgstr "Ruta no disponible." -#: ../../include/nav.php:210 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" +#: ../../include/attach.php:985 ../../include/attach.php:1137 +msgid "Empty pathname" +msgstr "Ruta vacía" -#: ../../include/nav.php:212 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" +#: ../../include/attach.php:1011 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/nav.php:220 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" +#: ../../include/attach.php:1033 +msgid "Path not found." +msgstr "Ruta no encontrada" -#: ../../include/nav.php:256 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" +#: ../../include/attach.php:1091 +msgid "mkdir failed." +msgstr "mkdir ha fallado." -#: ../../include/nav.php:257 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../include/attach.php:1095 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../view/theme/redbasic/php/config.php:6 +#: ../../include/attach.php:1143 +msgid "Empty path" +msgstr "Ruta vacía" + +#: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinido)" @@ -9978,66 +10121,66 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación" msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1194 +#: ../../boot.php:1195 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Buscar %1$s (%2$s)" -#: ../../boot.php:1194 +#: ../../boot.php:1195 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1512 +#: ../../boot.php:1513 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1515 +#: ../../boot.php:1516 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1719 +#: ../../boot.php:1720 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" -#: ../../boot.php:1740 +#: ../../boot.php:1741 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1741 +#: ../../boot.php:1742 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1742 +#: ../../boot.php:1743 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1745 +#: ../../boot.php:1746 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2314 +#: ../../boot.php:2315 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2469 +#: ../../boot.php:2470 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:2472 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2576 +#: ../../boot.php:2577 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2580 +#: ../../boot.php:2581 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index d8f8d2d10..44c005fb5 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -58,7 +58,7 @@ App::$strings["Edit"] = "Editar"; App::$strings["Delete"] = "Eliminar"; App::$strings["You are using %1\$s of your available file storage."] = "Está usando %1\$s de su espacio disponible para ficheros."; App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Está usando %1\$s de %2\$s que tiene a su disposición para ficheros. (%3\$s%)"; -App::$strings["WARNING:"] = "ATENCIÓN:"; +App::$strings["WARNING:"] = "ATENCIÓN: "; App::$strings["Create new folder"] = "Crear nueva carpeta"; App::$strings["Upload file"] = "Subir fichero"; App::$strings["Drop files here to immediately upload"] = "Arrastre los ficheros aquí para subirlos de forma inmediata"; @@ -72,89 +72,6 @@ App::$strings["Requested profile is not available."] = "El perfil solicitado no App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; App::$strings["Away"] = "Ausente"; App::$strings["Online"] = "Conectado/a"; -App::$strings["Invalid message"] = "Mensaje no válido"; -App::$strings["no results"] = "sin resultados"; -App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; -App::$strings["queued"] = "encolado"; -App::$strings["posted"] = "enviado"; -App::$strings["accepted for delivery"] = "aceptado para el envío"; -App::$strings["updated"] = "actualizado"; -App::$strings["update ignored"] = "actualización ignorada"; -App::$strings["permission denied"] = "permiso denegado"; -App::$strings["recipient not found"] = "destinatario no encontrado"; -App::$strings["mail recalled"] = "mensaje de correo revocado"; -App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; -App::$strings["mail delivered"] = "correo enviado"; -App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; -App::$strings["Options"] = "Opciones"; -App::$strings["Redeliver"] = "Volver a enviar"; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Security Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; -App::$strings["Yes"] = "Sí"; -App::$strings["No"] = "No"; -App::$strings["Rating"] = "Valoración"; -App::$strings["Website:"] = "Sitio web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; -App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -App::$strings["Submit"] = "Enviar"; -App::$strings["Public Hubs"] = "Servidores públicos"; -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."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; -App::$strings["Hub URL"] = "Dirección del hub"; -App::$strings["Access Type"] = "Tipo de acceso"; -App::$strings["Registration Policy"] = "Normas de registro"; -App::$strings["Stats"] = "Estadísticas"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rate"] = "Valorar"; -App::$strings["Location"] = "Ubicación"; -App::$strings["View"] = "Ver"; -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. 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["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["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["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 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; -App::$strings["Your email address"] = "Su dirección de correo electrónico"; -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["Name or caption"] = "Nombre o descripción"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; -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 role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sí"; -App::$strings["Registration"] = "Registro"; -App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; -App::$strings["Register"] = "Registrarse"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones."; -App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["My Bookmarks"] = "Mis marcadores"; -App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -App::$strings["Public access denied."] = "Acceso público denegado."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["Photos"] = "Fotos"; -App::$strings["Cancel"] = "Cancelar"; -App::$strings["Invalid item."] = "Elemento no válido."; -App::$strings["Channel not found."] = "Canal no encontrado."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Guardar en carpeta:"; -App::$strings["- select -"] = "- seleccionar -"; -App::$strings["Save"] = "Guardar"; App::$strings["No such group"] = "No se encuentra el grupo"; App::$strings["No such channel"] = "No se encuentra el canal"; App::$strings["forum"] = "foro"; @@ -162,655 +79,226 @@ App::$strings["Search Results For:"] = "Buscar resultados para:"; App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; App::$strings["Privacy group: "] = "Grupo de canales: "; App::$strings["Invalid connection."] = "Conexión no válida."; -App::$strings["Blocked"] = "Bloqueadas"; -App::$strings["Ignored"] = "Ignoradas"; -App::$strings["Hidden"] = "Ocultas"; -App::$strings["Archived"] = "Archivadas"; -App::$strings["New"] = "Nuevas"; -App::$strings["All"] = "Todos/as"; -App::$strings["New Connections"] = "Nuevas conexiones"; -App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; -App::$strings["All Connections"] = "Todas las conexiones"; -App::$strings["Show all connections"] = "Mostrar todas las conexiones"; -App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; -App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; -App::$strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; -App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; -App::$strings["Pending approval"] = "Pendiente de aprobación"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Editar conexión"; -App::$strings["Delete connection"] = "Eliminar conexión"; -App::$strings["Channel address"] = "Dirección del canal"; -App::$strings["Network"] = "Red"; -App::$strings["Status"] = "Estado"; -App::$strings["Connected"] = "Conectado/a"; -App::$strings["Approve connection"] = "Aprobar esta conexión"; +App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["network"] = "red"; +App::$strings["RSS"] = "RSS"; +App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +App::$strings["Posts and comments"] = "Publicaciones y comentarios"; +App::$strings["Only posts"] = "Solo publicaciones"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; +App::$strings["Nothing to import."] = "No hay nada para importar."; +App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; +App::$strings["Imported file is empty."] = "El fichero importado está vacío."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; +App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; +App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; +App::$strings["Import completed."] = "Importación completada."; +App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; +App::$strings["Import Channel"] = "Importar canal"; +App::$strings["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."] = "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."; +App::$strings["File to Upload"] = "Fichero para subir"; +App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; +App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; +App::$strings["Your old login password"] = "Su antigua contraseña"; +App::$strings["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."] = "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."; +App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; +App::$strings["Submit"] = "Enviar"; +App::$strings["Bookmark added"] = "Marcador añadido"; +App::$strings["My Bookmarks"] = "Mis marcadores"; +App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s cuenta bloqueada/desbloqueada", + 1 => "%s cuenta bloqueada/desbloqueada", +); +App::$strings["%s account deleted"] = array( + 0 => "%s cuentas eliminadas", + 1 => "%s cuentas eliminadas", +); +App::$strings["Account not found"] = "Cuenta no encontrada"; +App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; +App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; +App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; +App::$strings["Administration"] = "Administración"; +App::$strings["Accounts"] = "Cuentas"; +App::$strings["select all"] = "seleccionar todo"; +App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; +App::$strings["Request date"] = "Fecha de solicitud"; +App::$strings["Email"] = "Correo electrónico"; +App::$strings["No registrations."] = "Sin registros."; App::$strings["Approve"] = "Aprobar"; -App::$strings["Ignore connection"] = "Ignorar esta conexión"; -App::$strings["Ignore"] = "Ignorar"; -App::$strings["Recent activity"] = "Actividad reciente"; -App::$strings["Connections"] = "Conexiones"; -App::$strings["Search"] = "Buscar"; -App::$strings["Search your connections"] = "Buscar sus conexiones"; -App::$strings["Connections search"] = "Buscar conexiones"; -App::$strings["Find"] = "Encontrar"; -App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; -App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; -App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; -App::$strings["Unable to process image"] = "No ha sido posible procesar la imagen"; -App::$strings["Image upload failed."] = "La carga de la imagen ha fallado."; -App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; -App::$strings["female"] = "mujer"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["male"] = "hombre"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["cover photo"] = "Imagen de portada del perfil"; -App::$strings["Photo not available."] = "Foto no disponible."; -App::$strings["Upload File:"] = "Subir fichero:"; -App::$strings["Select a profile:"] = "Seleccionar un perfil:"; -App::$strings["Upload Cover Photo"] = "Subir imagen de portada del perfil"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "Omitir este paso"; -App::$strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos"; -App::$strings["Crop Image"] = "Recortar imagen"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; -App::$strings["Done Editing"] = "Edición completada"; -App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; -App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; -App::$strings["Could not create table."] = "No se puede crear la tabla."; -App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Verificación del sistema"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Check again"] = "Verificar de nuevo"; -App::$strings["Database connection"] = "Conexión a la base de datos"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; -App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; -App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; -App::$strings["Database Port"] = "Puerto de la base de datos"; -App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; -App::$strings["Database Login Name"] = "Usuario de la base de datos"; -App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; -App::$strings["Database Name"] = "Nombre de la base de datos"; -App::$strings["Database Type"] = "Tipo de base de datos"; -App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; -App::$strings["Website URL"] = "Dirección del sitio web"; -App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; -App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; -App::$strings["Basic/Minimal Social Networking"] = "Red social básica o mínima"; -App::$strings["Standard Configuration (default)"] = "Configuración estándar (por defecto)"; -App::$strings["Professional"] = "Profesional"; -App::$strings["Site settings"] = "Ajustes del sitio"; -App::$strings["Server Configuration/Role"] = "Configuración del servidor"; -App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; -App::$strings["PHP version"] = "Versión de PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; -App::$strings["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."] = "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."; -App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; -App::$strings["Command line PHP"] = "PHP en línea de comandos"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["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."] = "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."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; -App::$strings["PHP upload limits"] = "Límites PHP de subida"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; -App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; -App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; -App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; -App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; -App::$strings["xml PHP module"] = "módulo PHP xml"; -App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; -App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; -App::$strings["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."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; -App::$strings["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."] = "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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; -App::$strings["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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "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)."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "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."; -App::$strings["%s is writable"] = "%s tiene permisos de escritura"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior"; -App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; -App::$strings["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!"] = "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."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; -App::$strings["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."] = "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."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; -App::$strings["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."] = "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."; -App::$strings["SSL certificate validation"] = "validación del certificado SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; -App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; -App::$strings["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."] = "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."; -App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; -App::$strings["

    What next

    "] = "

    Siguiente paso

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; -App::$strings["%d rating"] = array( - 0 => "%d valoración", - 1 => "%d valoraciones", +App::$strings["Deny"] = "Rechazar"; +App::$strings["Block"] = "Bloquear"; +App::$strings["Unblock"] = "Desbloquear"; +App::$strings["ID"] = "ID"; +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["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["%s channel censored/uncensored"] = array( + 0 => "%s canales censurados/no censurados", + 1 => "%s canales censurados/no censurados", ); -App::$strings["Gender: "] = "Género:"; -App::$strings["Status: "] = "Estado:"; -App::$strings["Homepage: "] = "Página personal:"; -App::$strings["Age:"] = "Edad:"; -App::$strings["Location:"] = "Ubicación:"; -App::$strings["Description:"] = "Descripción:"; -App::$strings["Hometown:"] = "Lugar de nacimiento:"; -App::$strings["About:"] = "Sobre mí:"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Public Forum:"] = "Foro público:"; -App::$strings["Keywords: "] = "Palabras clave:"; -App::$strings["Don't suggest"] = "No sugerir:"; -App::$strings["Common connections:"] = "Conexiones comunes:"; -App::$strings["Global Directory"] = "Directorio global:"; -App::$strings["Local Directory"] = "Directorio local:"; -App::$strings["Finding:"] = "Encontrar:"; -App::$strings["Channel Suggestions"] = "Sugerencias de canales"; -App::$strings["next page"] = "siguiente página"; -App::$strings["previous page"] = "página anterior"; -App::$strings["Sort options"] = "Ordenar opciones"; -App::$strings["Alphabetic"] = "Alfabético"; -App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; -App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; -App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; -App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; -App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["Layout Name"] = "Nombre de la plantilla"; -App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; -App::$strings["Edit Layout"] = "Modificar la plantilla"; -App::$strings["Page link"] = "Enlace de la página"; -App::$strings["Edit Webpage"] = "Editar la página web"; -App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; -App::$strings["Unable to create menu."] = "No se puede crear el menú."; -App::$strings["Menu Name"] = "Nombre del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; -App::$strings["Menu Title"] = "Título del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; -App::$strings["Allow Bookmarks"] = "Permitir marcadores"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; -App::$strings["Submit and proceed"] = "Enviar y proceder"; -App::$strings["Menus"] = "Menús"; -App::$strings["Drop"] = "Eliminar"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; -App::$strings["Delete this menu"] = "Borrar este menú"; -App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; -App::$strings["Edit this menu"] = "Modificar este menú"; -App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Edit Menu"] = "Modificar el menú"; -App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; -App::$strings["Menu name"] = "Nombre del menú"; -App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; -App::$strings["Menu title"] = "Título del menú"; -App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; -App::$strings["Allow bookmarks"] = "Permitir marcadores"; -App::$strings["Not found."] = "No encontrado."; -App::$strings["App installed."] = "Aplicación instalada."; -App::$strings["Malformed app."] = "Aplicación con errores"; -App::$strings["Embed code"] = "Código incorporado"; -App::$strings["Edit App"] = "Modificar la aplicación"; -App::$strings["Create App"] = "Crear una aplicación"; -App::$strings["Name of app"] = "Nombre de la aplicación"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; -App::$strings["Description"] = "Descripción"; -App::$strings["Photo icon URL"] = "Dirección del icono"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Temas (opcional, lista separada por comas)"; -App::$strings["Version ID"] = "Versión"; -App::$strings["Price of app"] = "Precio de la aplicación"; -App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; -App::$strings["Documentation Search"] = "Búsqueda de Documentación"; -App::$strings["Help:"] = "Ayuda:"; -App::$strings["Help"] = "Ayuda"; -App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; -App::$strings["Item not available."] = "Elemento no disponible"; -App::$strings["Layout updated."] = "Plantilla actualizada."; -App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; -App::$strings["Layout not found."] = "Plantilla no encontrada"; -App::$strings["Module Name:"] = "Nombre del módulo:"; -App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; -App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["Permission Denied."] = "Permiso denegado"; -App::$strings["File not found."] = "Fichero no encontrado."; -App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; -App::$strings["Permissions"] = "Permisos"; -App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; -App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; -App::$strings["Return to file list"] = "Volver a la lista de ficheros"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; -App::$strings["Share this file"] = "Compartir este fichero"; -App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; -App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; -App::$strings["Name is required"] = "El nombre es obligatorio"; -App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["Update"] = "Actualizar"; -App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; -App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; -App::$strings["Token saved."] = "Token salvado."; -App::$strings["Not valid email."] = "Correo electrónico no válido."; -App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; -App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; -App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; -App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; -App::$strings["Password changed."] = "Contraseña cambiada."; -App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; -App::$strings["Friends"] = "Amigos/as"; -App::$strings["Settings updated."] = "Ajustes actualizados."; -App::$strings["Add application"] = "Añadir aplicación"; -App::$strings["Name of application"] = "Nombre de la aplicación"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -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 Apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["Client key starts with"] = "La \"client key\" empieza por"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Eliminar autorización"; -App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; -App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; -App::$strings["Account Settings"] = "Configuración de la cuenta"; -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["Email Address:"] = "Dirección de correo electrónico:"; -App::$strings["Remove Account"] = "Eliminar cuenta"; -App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; -App::$strings["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."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; -App::$strings["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:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; -App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; -App::$strings["Login Name"] = "Nombre de inicio de sesión"; -App::$strings["Login Password"] = "Contraseña de inicio de sesión"; -App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; -App::$strings["Their Settings"] = "Sus ajustes"; -App::$strings["My Settings"] = "Mis ajustes"; -App::$strings["inherited"] = "heredado"; -App::$strings["Individual Permissions"] = "Permisos individuales"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s código permitido/no permitido al canal", + 1 => "%s código permitido/no permitido al canal", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s canales eliminados", + 1 => "%s canales eliminados", +); +App::$strings["Channel not found"] = "Canal no encontrado"; +App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; +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["Channels"] = "Canales"; +App::$strings["Censor"] = "Censurar"; +App::$strings["Uncensor"] = "No censurar"; +App::$strings["Allow Code"] = "Permitir código"; +App::$strings["Disallow Code"] = "No permitir código"; +App::$strings["Channel"] = "Canal"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Dirección"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["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?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; +App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; +App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; +App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; +App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; +App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; +App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; +App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; App::$strings["Off"] = "Desactivado"; App::$strings["On"] = "Activado"; -App::$strings["Additional Features"] = "Funcionalidades"; -App::$strings["Connector Settings"] = "Configuración del conector"; -App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["mobile"] = "móvil"; -App::$strings["Display Settings"] = "Ajustes de visualización"; -App::$strings["Theme Settings"] = "Ajustes del tema"; -App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; -App::$strings["Content Settings"] = "Ajustes del contenido"; -App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; -App::$strings["Select scheme"] = "Elegir un esquema"; -App::$strings["Mobile Theme:"] = "Tema para el móvil:"; -App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; -App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; -App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; -App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; -App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; -App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; -App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; -App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; -App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; -App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; -App::$strings["Nobody except yourself"] = "Nadie excepto usted"; -App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; -App::$strings["Approved connections"] = "Conexiones aprobadas"; -App::$strings["Any connections"] = "Cualquier conexión"; -App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; -App::$strings["Anybody in this network"] = "Cualquiera en esta red"; -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["Your channel address is"] = "Su dirección de canal es"; -App::$strings["Channel Settings"] = "Ajustes del canal"; -App::$strings["Basic Settings"] = "Configuración básica"; -App::$strings["Full Name:"] = "Nombre completo:"; -App::$strings["Your Timezone:"] = "Su huso horario:"; -App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; -App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; -App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; -App::$strings["Adult Content"] = "Contenido solo para adultos"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; -App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; -App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; -App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; -App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; -App::$strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; -App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; -App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; -App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; -App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; -App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; -App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; -App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -App::$strings["Default Post and Publish Permissions"] = "Permisos predeterminados de entradas y publicaciones"; -App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; -App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; -App::$strings["Channel permissions category:"] = "Categoría de los permisos del canal:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; -App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; -App::$strings["Notification Settings"] = "Configuración de las notificaciones"; -App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; -App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; -App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; -App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; -App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; -App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; -App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; -App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; -App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; -App::$strings["You receive a private message"] = "Reciba un mensaje privado"; -App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; -App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; -App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; -App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; -App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; -App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; -App::$strings["Recommended"] = "Recomendado"; -App::$strings["Upcoming events"] = "Próximos eventos"; -App::$strings["Events today"] = "Eventos de hoy"; -App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; -App::$strings["Not available in all themes"] = "No disponible en todos los temas"; -App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; -App::$strings["System info messages"] = "Mensajes de información del sistema"; -App::$strings["System critical alerts"] = "Alertas críticas del sistema"; -App::$strings["New connections"] = "Nuevas conexiones"; -App::$strings["System Registrations"] = "Registros del sistema"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; -App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; -App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!."; -App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; -App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; -App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; -App::$strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; -App::$strings["Remove Channel"] = "Eliminar el canal"; -App::$strings["Remove this channel."] = "Eliminar este canal."; -App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; -App::$strings["Start calendar week on monday"] = "Comenzar el calendario semanal por el lunes"; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; -App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; -App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; -App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; -App::$strings["Create a group of channels."] = "Crear un grupo de canales."; -App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; -App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; -App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; -App::$strings["Unable to remove privacy group."] = "No se puede eliminar el grupo de canales."; -App::$strings["Privacy group editor"] = "Editor de grupos de canales"; -App::$strings["Members"] = "Miembros"; -App::$strings["All Connected Channels"] = "Todos los canales conectados"; -App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; -App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; -App::$strings["Profile Photos"] = "Fotos del perfil"; -App::$strings["Album not found."] = "Álbum no encontrado."; -App::$strings["Delete Album"] = "Borrar álbum"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros"; -App::$strings["Delete Photo"] = "Borrar foto"; -App::$strings["No photos selected"] = "No hay fotos seleccionadas"; -App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; -App::$strings["Upload Photos"] = "Subir fotos"; -App::$strings["Enter an album name"] = "Introducir un nombre de álbum"; -App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)"; -App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida"; -App::$strings["Caption (optional):"] = "Título (opcional):"; -App::$strings["Description (optional):"] = "Descripción (opcional):"; -App::$strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado"; -App::$strings["Contact Photos"] = "Fotos de contacto"; -App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; -App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; -App::$strings["View Photo"] = "Ver foto"; -App::$strings["Edit Album"] = "Editar álbum"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; -App::$strings["Photo not available"] = "Foto no disponible"; -App::$strings["Use as profile photo"] = "Usar como foto del perfil"; -App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; -App::$strings["Private Photo"] = "Foto privada"; -App::$strings["Previous"] = "Anterior"; -App::$strings["View Full Size"] = "Ver tamaño completo"; +App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; +App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; +App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; +App::$strings["Logs"] = "Informes"; +App::$strings["Clear"] = "Vaciar"; +App::$strings["Debugging"] = "Depuración"; +App::$strings["Log file"] = "Fichero de informe"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal."; +App::$strings["Log level"] = "Nivel de depuración"; +App::$strings["Item not found."] = "Elemento no encontrado."; +App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; +App::$strings["Plugin %s enabled."] = "Extensión %s activada."; +App::$strings["Disable"] = "Desactivar"; +App::$strings["Enable"] = "Activar"; +App::$strings["Plugins"] = "Extensiones (plugins)"; +App::$strings["Toggle"] = "Cambiar"; +App::$strings["Settings"] = "Ajustes"; +App::$strings["Author: "] = "Autor:"; +App::$strings["Maintainer: "] = "Mantenedor:"; +App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; +App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; +App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; +App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; +App::$strings["Requires: "] = "Se requiere:"; +App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin."; +App::$strings["Plugin repo git URL"] = "URL del repositorio git del plugin"; +App::$strings["Custom repo name"] = "Nombre personalizado del repositorio"; +App::$strings["(optional)"] = "(opcional)"; +App::$strings["Download Plugin Repo"] = "Descargar el repositorio"; +App::$strings["Install new repo"] = "Instalar un nuevo repositorio"; +App::$strings["Install"] = "Instalar"; +App::$strings["Cancel"] = "Cancelar"; +App::$strings["Manage Repos"] = "Gestionar los repositorios"; +App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados"; +App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins"; +App::$strings["Update"] = "Actualizar"; +App::$strings["Switch branch"] = "Cambiar la rama"; App::$strings["Remove"] = "Eliminar"; -App::$strings["Edit photo"] = "Editar foto"; -App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; -App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; -App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; -App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; -App::$strings["Caption"] = "Título"; -App::$strings["Add a Tag"] = "Añadir una etiqueta"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; -App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; -App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; -App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -App::$strings["Share"] = "Compartir"; -App::$strings["Please wait"] = "Espere por favor"; -App::$strings["This is you"] = "Este es usted"; -App::$strings["Comment"] = "Comentar"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["__ctx:title__ Likes"] = "Me gusta"; -App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; -App::$strings["__ctx:title__ Agree"] = "De acuerdo"; -App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; -App::$strings["__ctx:title__ Abstain"] = "Abstención"; -App::$strings["__ctx:title__ Attending"] = "Participaré"; -App::$strings["__ctx:title__ Not attending"] = "No participaré"; -App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; -App::$strings["View all"] = "Ver todo"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Me gusta", - 1 => "Me gusta", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "No me gusta", - 1 => "No me gusta", -); -App::$strings["Photo Tools"] = "Gestión de las fotos"; -App::$strings["In This Photo:"] = "En esta foto:"; -App::$strings["Map"] = "Mapa"; -App::$strings["__ctx:noun__ Likes"] = "Me gusta"; -App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; -App::$strings["Close"] = "Cerrar"; -App::$strings["View Album"] = "Ver álbum"; -App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["webpage"] = "página web"; -App::$strings["block"] = "bloque"; -App::$strings["layout"] = "plantilla"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; -App::$strings["Nothing to import."] = "No hay nada para importar."; -App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; -App::$strings["Imported file is empty."] = "El fichero importado está vacío."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -App::$strings["Import completed"] = "Importación completada"; -App::$strings["Import Items"] = "Importar elementos"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; -App::$strings["File to Upload"] = "Fichero para subir"; -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["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", -); -App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; -App::$strings["Send invitations"] = "Enviar invitaciones"; -App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Your message:"] = "Su mensaje:"; -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["Location not found."] = "Dirección no encontrada."; -App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; -App::$strings["Syncing locations"] = "Sincronizando ubicaciones"; -App::$strings["No locations found."] = "No encontrada ninguna dirección."; -App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; -App::$strings["Address"] = "Dirección"; -App::$strings["Primary"] = "Primario"; -App::$strings["Sync Now"] = "Sincronizar ahora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; -App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; -App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; -App::$strings["Invalid request."] = "Solicitud incorrecta."; -App::$strings["channel"] = "el canal"; -App::$strings["thing"] = "elemento"; -App::$strings["Channel unavailable."] = "Canal no disponible."; -App::$strings["Previous action reversed."] = "Acción anterior revocada."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "el mensaje de estado"; -App::$strings["event"] = "evento"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; -App::$strings["Action completed."] = "Acción completada."; -App::$strings["Thank you."] = "Gracias."; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -App::$strings["Create a new channel"] = "Crear un nuevo canal"; -App::$strings["Create New"] = "Crear"; -App::$strings["Channel Manager"] = "Administración de canales"; -App::$strings["Current Channel"] = "Canal actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; -App::$strings["Default Channel"] = "Canal principal"; -App::$strings["Make Default"] = "Convertir en predeterminado"; -App::$strings["%d new messages"] = "%d mensajes nuevos"; -App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; -App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["Unable to create element."] = "No se puede crear el elemento."; -App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; -App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; -App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -App::$strings["Link Name"] = "Nombre del enlace"; -App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; -App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; -App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; -App::$strings["Order in list"] = "Orden en la lista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; -App::$strings["Submit and finish"] = "Enviar y terminar"; -App::$strings["Submit and continue"] = "Enviar y continuar"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Destino del enlace"; -App::$strings["Edit menu"] = "Editar menú"; -App::$strings["Edit element"] = "Editar el elemento"; -App::$strings["Drop element"] = "Eliminar el elemento"; -App::$strings["New element"] = "Nuevo elemento"; -App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; -App::$strings["Add menu element"] = "Añadir un elemento al menú"; -App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; -App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; -App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; -App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; -App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; -App::$strings["Edit Menu Element"] = "Editar elemento del menú"; -App::$strings["Link text"] = "Texto del enlace"; -App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; -App::$strings["# Accounts"] = "# Cuentas"; -App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; -App::$strings["# expired accounts"] = "# cuentas caducadas"; -App::$strings["# expiring accounts"] = "# cuentas que caducan"; -App::$strings["# Channels"] = "# Canales"; -App::$strings["# primary"] = "# primario"; -App::$strings["# clones"] = "# clones"; -App::$strings["Message queues"] = "Mensajes en cola"; -App::$strings["Your software should be updated"] = "Debe actualizar su software"; -App::$strings["Administration"] = "Administración"; -App::$strings["Summary"] = "Sumario"; -App::$strings["Registered accounts"] = "Cuentas registradas"; -App::$strings["Pending registrations"] = "Registros pendientes"; -App::$strings["Registered channels"] = "Canales registrados"; -App::$strings["Active plugins"] = "Extensiones (plugins) activas"; -App::$strings["Version"] = "Versión"; -App::$strings["Repository version (master)"] = "Versión del repositorio (master)"; -App::$strings["Repository version (dev)"] = "Versión del repositorio (dev)"; +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"; +App::$strings["Input type"] = "Tipo de entrada"; +App::$strings["Field Name"] = "Nombre del campo"; +App::$strings["Label on profile pages"] = "Etiqueta a mostrar en la página del perfil"; +App::$strings["Help text"] = "Texto de ayuda"; +App::$strings["Additional info (optional)"] = "Información adicional (opcional)"; +App::$strings["Save"] = "Guardar"; +App::$strings["Field definition not found"] = "Definición del campo no encontrada"; +App::$strings["Edit Profile Field"] = "Modificar el campo del perfil"; +App::$strings["Profile Fields"] = "Campos del perfil"; +App::$strings["Basic Profile Fields"] = "Campos básicos del perfil"; +App::$strings["Advanced Profile Fields"] = "Campos avanzados del perfil"; +App::$strings["(In addition to basic fields)"] = "(Además de los campos básicos)"; +App::$strings["All available fields"] = "Todos los campos disponibles"; +App::$strings["Custom Fields"] = "Campos personalizados"; +App::$strings["Create Custom Field"] = "Crear un campo personalizado"; +App::$strings["Queue Statistics"] = "Estadísticas de la cola"; +App::$strings["Total Entries"] = "Total de entradas"; +App::$strings["Priority"] = "Prioridad"; +App::$strings["Destination URL"] = "Dirección de destino"; +App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; +App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; +App::$strings["Last known contact"] = "Último contacto conocido"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: "; +App::$strings["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/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita."; +App::$strings["Security"] = "Seguridad"; +App::$strings["Block public"] = "Bloquear páginas públicas"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP"; +App::$strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; +App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; +App::$strings["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."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; +App::$strings["Allow communications only from these sites"] = "Permitir la comunicación solo desde estos sitios"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; +App::$strings["Block communications from these sites"] = "Bloquear la comunicación desde estos sitios"; +App::$strings["Allow communications only from these channels"] = "Permitir la comunicación solo desde estos canales"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; +App::$strings["Block communications from these channels"] = "Bloquear la comunicación desde estos canales"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Permitir contenido HTML sin filtrar sólo desde estos dominios "; +App::$strings["One site per line. By default embedded content is filtered."] = "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada."; +App::$strings["Block embedded HTML from these domains"] = "Bloquear contenido con HTML incorporado desde estos dominios"; App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; App::$strings["Default"] = "Predeterminado"; +App::$strings["mobile"] = "móvil"; App::$strings["experimental"] = "experimental"; App::$strings["unsupported"] = "no soportado"; +App::$strings["No"] = "No"; App::$strings["Yes - with approval"] = "Sí - con aprobación"; +App::$strings["Yes"] = "Sí"; App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público"; App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; +App::$strings["Basic/Minimal Social Networking"] = "Red social básica o mínima"; +App::$strings["Standard Configuration (default)"] = "Configuración estándar (por defecto)"; +App::$strings["Professional"] = "Profesional"; +App::$strings["Beginner/Basic"] = "Principiante / Básico"; +App::$strings["Novice - not skilled but willing to learn"] = "Novato: no cualificado, pero dispuesto a aprender"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedio: bastante cómodo"; +App::$strings["Advanced - very comfortable"] = "Avanzado: muy cómodo"; +App::$strings["Expert - I can write computer code"] = "Experto: puedo escribir código informático"; +App::$strings["Wizard - I probably know more than you do"] = "Asistente: probablemente sé más que tú"; App::$strings["Site"] = "Sitio"; +App::$strings["Registration"] = "Registro"; App::$strings["File upload"] = "Subir fichero"; App::$strings["Policies"] = "Políticas"; App::$strings["Advanced"] = "Avanzado"; App::$strings["Site name"] = "Nombre del sitio"; +App::$strings["Server Configuration/Role"] = "Configuración del servidor"; +App::$strings["Site default technical skill level"] = "Nivel de habilidad técnica predeterminado del sitio"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Se utiliza para proporcionar la experiencia de los miembros adaptada al nivel de comodidad"; +App::$strings["Lock the technical skill level setting"] = "Bloquear el ajuste del nivel de habilidad técnica"; +App::$strings["Members can set their own technical comfort level by default"] = "Los miembros pueden configurar por defecto su nivel de comodidad técnica"; App::$strings["Banner/Logo"] = "Banner/Logo"; App::$strings["Administrator Information"] = "Información del Administrador"; App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; @@ -837,10 +325,6 @@ App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después 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["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; -App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; -App::$strings["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."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; 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"; @@ -867,376 +351,18 @@ App::$strings["Maximum Load Average"] = "Carga media máxima"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; -App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; -App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; -App::$strings["No server found"] = "Servidor no encontrado"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "por canal"; -App::$strings["on server"] = "en el servidor"; -App::$strings["Server"] = "Servidor"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: "; -App::$strings["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/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita."; -App::$strings["Security"] = "Seguridad"; -App::$strings["Block public"] = "Bloquear páginas públicas"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP"; -App::$strings["Allow communications only from these sites"] = "Permitir la comunicación solo desde estos sitios"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; -App::$strings["Block communications from these sites"] = "Bloquear la comunicación desde estos sitios"; -App::$strings["Allow communications only from these channels"] = "Permitir la comunicación solo desde estos canales"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; -App::$strings["Block communications from these channels"] = "Bloquear la comunicación desde estos canales"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Permitir contenido HTML sin filtrar sólo desde estos dominios "; -App::$strings["One site per line. By default embedded content is filtered."] = "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada."; -App::$strings["Block embedded HTML from these domains"] = "Bloquear contenido con HTML incorporado desde estos dominios"; -App::$strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; -App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; -App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; -App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; -App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; -App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; -App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; -App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; -App::$strings["Queue Statistics"] = "Estadísticas de la cola"; -App::$strings["Total Entries"] = "Total de entradas"; -App::$strings["Priority"] = "Prioridad"; -App::$strings["Destination URL"] = "Dirección de destino"; -App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; -App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; -App::$strings["Last known contact"] = "Último contacto conocido"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s cuenta bloqueada/desbloqueada", - 1 => "%s cuenta bloqueada/desbloqueada", -); -App::$strings["%s account deleted"] = array( - 0 => "%s cuentas eliminadas", - 1 => "%s cuentas eliminadas", -); -App::$strings["Account not found"] = "Cuenta no encontrada"; -App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; -App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; -App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -App::$strings["Accounts"] = "Cuentas"; -App::$strings["select all"] = "seleccionar todo"; -App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; -App::$strings["Request date"] = "Fecha de solicitud"; -App::$strings["Email"] = "Correo electrónico"; -App::$strings["No registrations."] = "Sin registros."; -App::$strings["Deny"] = "Rechazar"; -App::$strings["Block"] = "Bloquear"; -App::$strings["Unblock"] = "Desbloquear"; -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["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["%s channel censored/uncensored"] = array( - 0 => "%s canales censurados/no censurados", - 1 => "%s canales censurados/no censurados", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s código permitido/no permitido al canal", - 1 => "%s código permitido/no permitido al canal", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canales eliminados", - 1 => "%s canales eliminados", -); -App::$strings["Channel not found"] = "Canal no encontrado"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; -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["Channels"] = "Canales"; -App::$strings["Censor"] = "Censurar"; -App::$strings["Uncensor"] = "No censurar"; -App::$strings["Allow Code"] = "Permitir código"; -App::$strings["Disallow Code"] = "No permitir código"; -App::$strings["Channel"] = "Canal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["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?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; -App::$strings["Plugin %s enabled."] = "Extensión %s activada."; -App::$strings["Disable"] = "Desactivar"; -App::$strings["Enable"] = "Activar"; -App::$strings["Plugins"] = "Extensiones (plugins)"; -App::$strings["Toggle"] = "Cambiar"; -App::$strings["Settings"] = "Ajustes"; -App::$strings["Author: "] = "Autor:"; -App::$strings["Maintainer: "] = "Mantenedor:"; -App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; -App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; -App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; -App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; -App::$strings["Requires: "] = "Se requiere:"; -App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin."; -App::$strings["Plugin repo git URL"] = "URL del repositorio git del plugin"; -App::$strings["Custom repo name"] = "Nombre personalizado del repositorio"; -App::$strings["(optional)"] = "(opcional)"; -App::$strings["Download Plugin Repo"] = "Descargar el repositorio"; -App::$strings["Install new repo"] = "Instalar un nuevo repositorio"; -App::$strings["Install"] = "Instalar"; -App::$strings["Manage Repos"] = "Gestionar los repositorios"; -App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados"; -App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins"; -App::$strings["Switch branch"] = "Cambiar la rama"; +App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; App::$strings["No themes found."] = "No se han encontrado temas."; App::$strings["Screenshot"] = "Instantánea de pantalla"; App::$strings["Themes"] = "Temas"; App::$strings["[Experimental]"] = "[Experimental]"; App::$strings["[Unsupported]"] = "[No soportado]"; -App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; -App::$strings["Logs"] = "Informes"; -App::$strings["Clear"] = "Vaciar"; -App::$strings["Debugging"] = "Depuración"; -App::$strings["Log file"] = "Fichero de informe"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal."; -App::$strings["Log level"] = "Nivel de depuración"; -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"; -App::$strings["Input type"] = "Tipo de entrada"; -App::$strings["Field Name"] = "Nombre del campo"; -App::$strings["Label on profile pages"] = "Etiqueta a mostrar en la página del perfil"; -App::$strings["Help text"] = "Texto de ayuda"; -App::$strings["Additional info (optional)"] = "Información adicional (opcional)"; -App::$strings["Field definition not found"] = "Definición del campo no encontrada"; -App::$strings["Edit Profile Field"] = "Modificar el campo del perfil"; -App::$strings["Profile Fields"] = "Campos del perfil"; -App::$strings["Basic Profile Fields"] = "Campos básicos del perfil"; -App::$strings["Advanced Profile Fields"] = "Campos avanzados del perfil"; -App::$strings["(In addition to basic fields)"] = "(Además de los campos básicos)"; -App::$strings["All available fields"] = "Todos los campos disponibles"; -App::$strings["Custom Fields"] = "Campos personalizados"; -App::$strings["Create Custom Field"] = "Crear un campo personalizado"; -App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -App::$strings["Password Reset"] = "Restablecer la contraseña"; -App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -App::$strings["Your new password is"] = "Su nueva contraseña es"; -App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -App::$strings["click here to login"] = "pulse aquí para conectarse"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -App::$strings["Email Address"] = "Dirección de correo electrónico"; -App::$strings["Reset"] = "Reiniciar"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["Mood"] = "Estado de ánimo"; -App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["Profile not found."] = "Perfil no encontrado."; -App::$strings["Profile deleted."] = "Perfil eliminado."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; -App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; -App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; -App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; -App::$strings["Marital Status"] = "Estado civil"; -App::$strings["Romantic Partner"] = "Pareja sentimental"; -App::$strings["Likes"] = "Me gusta"; -App::$strings["Dislikes"] = "No me gusta"; -App::$strings["Work/Employment"] = "Trabajo:"; -App::$strings["Religion"] = "Religión"; -App::$strings["Political Views"] = "Ideas políticas"; -App::$strings["Gender"] = "Género"; -App::$strings["Sexual Preference"] = "Preferencia sexual"; -App::$strings["Homepage"] = "Página personal"; -App::$strings["Interests"] = "Intereses"; -App::$strings["Profile updated."] = "Perfil actualizado."; -App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; -App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; -App::$strings["View this profile"] = "Ver este perfil"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -App::$strings["Profile Tools"] = "Gestión del perfil"; -App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; -App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; -App::$strings["Clone this profile"] = "Clonar este perfil"; -App::$strings["Delete this profile"] = "Eliminar este perfil"; -App::$strings["Add profile things"] = "Añadir cosas al perfil"; -App::$strings["Personal"] = "Personales"; -App::$strings["Relation"] = "Relación"; -App::$strings["Miscellaneous"] = "Varios"; -App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; -App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; -App::$strings["Your gender"] = "Género"; -App::$strings["Marital status"] = "Estado civil"; -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["Title/Description"] = "Título o descripción"; -App::$strings["Street address"] = "Dirección"; -App::$strings["Locality/City"] = "Ciudad"; -App::$strings["Region/State"] = "Región o Estado"; -App::$strings["Postal/Zip code"] = "Código postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; -App::$strings["Since (date)"] = "Desde (fecha)"; -App::$strings["Tell us about yourself"] = "Háblenos de usted"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; -App::$strings["Hometown"] = "Lugar de nacimiento"; -App::$strings["Political views"] = "Ideas políticas"; -App::$strings["Religious views"] = "Creencias religiosas"; -App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; -App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; -App::$strings["Musical interests"] = "Preferencias musicales"; -App::$strings["Books, literature"] = "Libros, literatura"; -App::$strings["Television"] = "Televisión"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; -App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; -App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; -App::$strings["School/Education"] = "Estudios"; -App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; -App::$strings["My other channels"] = "Mis otros canales"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Profile Match"] = "Perfil compatible"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -App::$strings["is interested in:"] = "está interesado en:"; -App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; -App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; -App::$strings["Import selected"] = "Importar elementos seleccionados"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Actions"] = "Acciones"; -App::$strings["Page Link"] = "Vínculo de la página"; -App::$strings["Page Title"] = "Título de página"; -App::$strings["Invalid file type."] = "Tipo de fichero no válido."; -App::$strings["Error opening zip file"] = "Error al abrir el fichero comprimido zip"; -App::$strings["Invalid folder path."] = "La ruta de la carpeta no es válida."; -App::$strings["No webpage elements detected."] = "No se han detectado elementos de ninguna página web."; -App::$strings["Import complete."] = "Importación completada."; -App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; -App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; -App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -App::$strings["Event not found."] = "Evento no encontrado."; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; -App::$strings["Edit Category"] = "Modificar el tema"; -App::$strings["Category"] = "Tema"; -App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; -App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; -App::$strings["Finish date and time"] = "Fecha y hora de terminación"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -App::$strings["Edit Description"] = "Editar la descripción"; -App::$strings["Edit Location"] = "Modificar la dirección"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["Advanced Options"] = "Opciones avanzadas"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Editar el evento"; -App::$strings["Create Event"] = "Crear un evento"; -App::$strings["Export"] = "Exportar"; -App::$strings["Month"] = "Mes"; -App::$strings["Week"] = "Semana"; -App::$strings["Day"] = "Día"; -App::$strings["Today"] = "Hoy"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; -App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; -App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; -App::$strings["Import completed."] = "Importación completada."; -App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["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."] = "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."; -App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -App::$strings["Your old login password"] = "Su antigua contraseña"; -App::$strings["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."] = "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."; -App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -App::$strings["Create Channel"] = "Crear un canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; -App::$strings["added your channel"] = "añadió este canal a sus conexiones"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["posted an event"] = "publicó un evento"; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -App::$strings["Poke"] = "Toques y otras cosas"; -App::$strings["Poke somebody"] = "Dar un toque a alguien"; -App::$strings["Poke/Prod"] = "Toque/Incitación"; -App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; -App::$strings["Make this post private"] = "Convertir en privado este envío"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; -App::$strings["Visible To"] = "Visible para"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; -App::$strings["Configuration Editor"] = "Editor de configuración"; -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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -App::$strings["Posts and comments"] = "Publicaciones y comentarios"; -App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; -App::$strings["Current load average: "] = "Carga media actual:"; -App::$strings["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; -App::$strings["\$projectname issues"] = "Problemas en \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -App::$strings["Site Administrators"] = "Administradores del sitio"; -App::$strings["Blocks"] = "Bloques"; -App::$strings["Block Title"] = "Título del bloque"; -App::$strings["Layouts"] = "Plantillas"; -App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; -App::$strings["Layout Description"] = "Descripción de la plantilla"; -App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["Permissions denied."] = "Permisos denegados."; -App::$strings["Import"] = "Importar"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; -App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["Photos"] = "Fotos"; +App::$strings["Invalid item."] = "Elemento no válido."; +App::$strings["Channel not found."] = "Canal no encontrado."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Guardar en carpeta:"; +App::$strings["- select -"] = "- seleccionar -"; App::$strings["Unable to lookup recipient."] = "No se puede asociar a un destinatario."; App::$strings["Unable to communicate with requested channel."] = "No se puede establecer la comunicación con el canal solicitado."; App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; @@ -1250,7 +376,9 @@ App::$strings["Requested channel is not in this network"] = "El canal solicitado App::$strings["Send Private Message"] = "Enviar un mensaje privado"; App::$strings["To:"] = "Para:"; App::$strings["Subject:"] = "Asunto:"; +App::$strings["Your message:"] = "Su mensaje:"; App::$strings["Attach file"] = "Adjuntar fichero"; +App::$strings["Insert web link"] = "Insertar enlace web"; App::$strings["Send"] = "Enviar"; App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; App::$strings["Encrypt text"] = "Cifrar texto"; @@ -1262,12 +390,66 @@ App::$strings["Delete Conversation"] = "Eliminar conversación"; App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; App::$strings["Send Reply"] = "Responder"; App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; -App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; -App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; -App::$strings["Connection updated."] = "Conexión actualizada."; -App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -App::$strings["is now connected to"] = "ahora está conectado/a"; -App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; +App::$strings["Blocked"] = "Bloqueadas"; +App::$strings["Ignored"] = "Ignoradas"; +App::$strings["Hidden"] = "Ocultas"; +App::$strings["Archived"] = "Archivadas"; +App::$strings["New"] = "Nuevas"; +App::$strings["All"] = "Todos/as"; +App::$strings["New Connections"] = "Nuevas conexiones"; +App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; +App::$strings["All Connections"] = "Todas las conexiones"; +App::$strings["Show all connections"] = "Mostrar todas las conexiones"; +App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; +App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; +App::$strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; +App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; +App::$strings["Pending approval"] = "Pendiente de aprobación"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Editar conexión"; +App::$strings["Delete connection"] = "Eliminar conexión"; +App::$strings["Channel address"] = "Dirección del canal"; +App::$strings["Network"] = "Red"; +App::$strings["Status"] = "Estado"; +App::$strings["Connected"] = "Conectado/a"; +App::$strings["Approve connection"] = "Aprobar esta conexión"; +App::$strings["Ignore connection"] = "Ignorar esta conexión"; +App::$strings["Ignore"] = "Ignorar"; +App::$strings["Recent activity"] = "Actividad reciente"; +App::$strings["Connections"] = "Conexiones"; +App::$strings["Search"] = "Buscar"; +App::$strings["Search your connections"] = "Buscar sus conexiones"; +App::$strings["Connections search"] = "Buscar conexiones"; +App::$strings["Find"] = "Encontrar"; +App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; +App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; +App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; +App::$strings["Unable to process image"] = "No ha sido posible procesar la imagen"; +App::$strings["Image upload failed."] = "La carga de la imagen ha fallado."; +App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; +App::$strings["female"] = "mujer"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["male"] = "hombre"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["cover photo"] = "Imagen de portada del perfil"; +App::$strings["Photo not available."] = "Foto no disponible."; +App::$strings["Upload File:"] = "Subir fichero:"; +App::$strings["Select a profile:"] = "Seleccionar un perfil:"; +App::$strings["Upload Cover Photo"] = "Subir imagen de portada del perfil"; +App::$strings["or"] = "o"; +App::$strings["skip this step"] = "Omitir este paso"; +App::$strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos"; +App::$strings["Crop Image"] = "Recortar imagen"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; +App::$strings["Done Editing"] = "Edición completada"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; +App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; +App::$strings["Connection updated."] = "Conexión actualizada."; +App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; +App::$strings["is now connected to"] = "ahora está conectado/a"; +App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; @@ -1293,6 +475,7 @@ App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; App::$strings["Delete this connection"] = "Eliminar esta conexión"; App::$strings["Me"] = "Yo"; App::$strings["Family"] = "Familia"; +App::$strings["Friends"] = "Amigos/as"; App::$strings["Acquaintances"] = "Conocidos/as"; App::$strings["Approve this connection"] = "Aprobar esta conexión"; App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; @@ -1309,6 +492,7 @@ App::$strings["Available locations:"] = "Ubicaciones disponibles:"; App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; App::$strings["Connection Tools"] = "Gestión de las conexiones"; App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +App::$strings["Rating"] = "Valoración"; App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; App::$strings["Custom Filter"] = "Filtro personalizado"; @@ -1317,19 +501,624 @@ App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; App::$strings["This information is public!"] = "¡Esta información es pública!"; App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; +App::$strings["inherited"] = "heredado"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; +App::$strings["Their Settings"] = "Sus ajustes"; +App::$strings["My Settings"] = "Mis ajustes"; +App::$strings["Individual Permissions"] = "Permisos individuales"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; App::$strings["Last update:"] = "Última actualización:"; +App::$strings["Item not found"] = "Elemento no encontrado"; +App::$strings["Block Name"] = "Nombre del bloque"; +App::$strings["Title (optional)"] = "Título (opcional)"; +App::$strings["Edit Block"] = "Modificar este bloque"; +App::$strings["Layout Name"] = "Nombre de la plantilla"; +App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; +App::$strings["Edit Layout"] = "Modificar la plantilla"; +App::$strings["Page link"] = "Enlace de la página"; +App::$strings["Edit Webpage"] = "Editar la página web"; +App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; +App::$strings["Unable to create menu."] = "No se puede crear el menú."; +App::$strings["Menu Name"] = "Nombre del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; +App::$strings["Menu Title"] = "Título del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; +App::$strings["Allow Bookmarks"] = "Permitir marcadores"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; +App::$strings["Submit and proceed"] = "Enviar y proceder"; +App::$strings["Menus"] = "Menús"; +App::$strings["Drop"] = "Eliminar"; +App::$strings["Created"] = "Creado"; +App::$strings["Edited"] = "Editado"; +App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; +App::$strings["Delete this menu"] = "Borrar este menú"; +App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; +App::$strings["Edit this menu"] = "Modificar este menú"; +App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Edit Menu"] = "Modificar el menú"; +App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; +App::$strings["Menu name"] = "Nombre del menú"; +App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; +App::$strings["Menu title"] = "Título del menú"; +App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; +App::$strings["Allow bookmarks"] = "Permitir marcadores"; +App::$strings["Not found."] = "No encontrado."; +App::$strings["App installed."] = "Aplicación instalada."; +App::$strings["Malformed app."] = "Aplicación con errores"; +App::$strings["Embed code"] = "Código incorporado"; +App::$strings["Edit App"] = "Modificar la aplicación"; +App::$strings["Create App"] = "Crear una aplicación"; +App::$strings["Name of app"] = "Nombre de la aplicación"; +App::$strings["Required"] = "Obligatorio"; +App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; +App::$strings["Description"] = "Descripción"; +App::$strings["Photo icon URL"] = "Dirección del icono"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +App::$strings["Categories (optional, comma separated list)"] = "Temas (opcional, lista separada por comas)"; +App::$strings["Version ID"] = "Versión"; +App::$strings["Price of app"] = "Precio de la aplicación"; +App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; +App::$strings["Public Hubs"] = "Servidores públicos"; +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."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; +App::$strings["Hub URL"] = "Dirección del hub"; +App::$strings["Access Type"] = "Tipo de acceso"; +App::$strings["Registration Policy"] = "Normas de registro"; +App::$strings["Stats"] = "Estadísticas"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valoraciones"; +App::$strings["Rate"] = "Valorar"; +App::$strings["Location"] = "Ubicación"; +App::$strings["View"] = "Ver"; +App::$strings["Item not available."] = "Elemento no disponible"; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Security Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; +App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; +App::$strings["Layout updated."] = "Plantilla actualizada."; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripción de Páginas"; +App::$strings["Layout not found."] = "Plantilla no encontrada"; +App::$strings["Module Name:"] = "Nombre del módulo:"; +App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; +App::$strings["Permission Denied."] = "Permiso denegado"; +App::$strings["File not found."] = "Fichero no encontrado."; +App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; +App::$strings["Permissions"] = "Permisos"; +App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; +App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; +App::$strings["Return to file list"] = "Volver a la lista de ficheros"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; +App::$strings["Share this file"] = "Compartir este fichero"; +App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; +App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; +App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +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["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; +App::$strings["Create a new channel"] = "Crear un nuevo canal"; +App::$strings["Create New"] = "Crear"; +App::$strings["Channel Manager"] = "Administración de canales"; +App::$strings["Current Channel"] = "Canal actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; +App::$strings["Default Channel"] = "Canal principal"; +App::$strings["Make Default"] = "Convertir en predeterminado"; +App::$strings["%d new messages"] = "%d mensajes nuevos"; +App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; +App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; +App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; +App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; +App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; +App::$strings["Create a group of channels."] = "Crear un grupo de canales."; +App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; +App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; +App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; +App::$strings["Unable to remove privacy group."] = "No se puede eliminar el grupo de canales."; +App::$strings["Privacy group editor"] = "Editor de grupos de canales"; +App::$strings["Members"] = "Miembros"; +App::$strings["All Connected Channels"] = "Todos los canales conectados"; +App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; +App::$strings["Invalid message"] = "Mensaje no válido"; +App::$strings["no results"] = "sin resultados"; +App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; +App::$strings["queued"] = "encolado"; +App::$strings["posted"] = "enviado"; +App::$strings["accepted for delivery"] = "aceptado para el envío"; +App::$strings["updated"] = "actualizado"; +App::$strings["update ignored"] = "actualización ignorada"; +App::$strings["permission denied"] = "permiso denegado"; +App::$strings["recipient not found"] = "destinatario no encontrado"; +App::$strings["mail recalled"] = "mensaje de correo revocado"; +App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; +App::$strings["mail delivered"] = "correo enviado"; +App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; +App::$strings["Options"] = "Opciones"; +App::$strings["Redeliver"] = "Volver a enviar"; +App::$strings["webpage"] = "página web"; +App::$strings["block"] = "bloque"; +App::$strings["layout"] = "plantilla"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s elemento instalado"; +App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +App::$strings["Import completed"] = "Importación completada"; +App::$strings["Import Items"] = "Importar elementos"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; +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["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; +App::$strings["%d message sent."] = array( + 0 => "%d mensajes enviados.", + 1 => "%d mensajes enviados.", +); +App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; +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["Location not found."] = "Dirección no encontrada."; +App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; +App::$strings["Syncing locations"] = "Sincronizando ubicaciones"; +App::$strings["No locations found."] = "No encontrada ninguna dirección."; +App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Primary"] = "Primario"; +App::$strings["Sync Now"] = "Sincronizar ahora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; +App::$strings["Website:"] = "Sitio web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; +App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; +App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; +App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; +App::$strings["Invalid request."] = "Solicitud incorrecta."; +App::$strings["channel"] = "el canal"; +App::$strings["thing"] = "elemento"; +App::$strings["Channel unavailable."] = "Canal no disponible."; +App::$strings["Previous action reversed."] = "Acción anterior revocada."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "el mensaje de estado"; +App::$strings["event"] = "evento"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; +App::$strings["Action completed."] = "Acción completada."; +App::$strings["Thank you."] = "Gracias."; +App::$strings["Profile not found."] = "Perfil no encontrado."; +App::$strings["Profile deleted."] = "Perfil eliminado."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; +App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; +App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; +App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; +App::$strings["Marital Status"] = "Estado civil"; +App::$strings["Romantic Partner"] = "Pareja sentimental"; +App::$strings["Likes"] = "Me gusta"; +App::$strings["Dislikes"] = "No me gusta"; +App::$strings["Work/Employment"] = "Trabajo:"; +App::$strings["Religion"] = "Religión"; +App::$strings["Political Views"] = "Ideas políticas"; +App::$strings["Gender"] = "Género"; +App::$strings["Sexual Preference"] = "Preferencia sexual"; +App::$strings["Homepage"] = "Página personal"; +App::$strings["Interests"] = "Intereses"; +App::$strings["Profile updated."] = "Perfil actualizado."; +App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; +App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; +App::$strings["View this profile"] = "Ver este perfil"; +App::$strings["Edit visibility"] = "Editar visibilidad"; +App::$strings["Profile Tools"] = "Gestión del perfil"; +App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; +App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; +App::$strings["Clone this profile"] = "Clonar este perfil"; +App::$strings["Delete this profile"] = "Eliminar este perfil"; +App::$strings["Add profile things"] = "Añadir cosas al perfil"; +App::$strings["Personal"] = "Personales"; +App::$strings["Relation"] = "Relación"; +App::$strings["Miscellaneous"] = "Varios"; +App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; +App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; +App::$strings["Your gender"] = "Género"; +App::$strings["Marital status"] = "Estado civil"; +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["Title/Description"] = "Título o descripción"; +App::$strings["Street address"] = "Dirección"; +App::$strings["Locality/City"] = "Ciudad"; +App::$strings["Region/State"] = "Región o Estado"; +App::$strings["Postal/Zip code"] = "Código postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; +App::$strings["Since (date)"] = "Desde (fecha)"; +App::$strings["Tell us about yourself"] = "Háblenos de usted"; +App::$strings["Homepage URL"] = "Dirección de la página personal"; +App::$strings["Hometown"] = "Lugar de nacimiento"; +App::$strings["Political views"] = "Ideas políticas"; +App::$strings["Religious views"] = "Creencias religiosas"; +App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; +App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; +App::$strings["Musical interests"] = "Preferencias musicales"; +App::$strings["Books, literature"] = "Libros, literatura"; +App::$strings["Television"] = "Televisión"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; +App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; +App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; +App::$strings["School/Education"] = "Estudios"; +App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; +App::$strings["My other channels"] = "Mis otros canales"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["Unable to create element."] = "No se puede crear el elemento."; +App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; +App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; +App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; +App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; +App::$strings["Link Name"] = "Nombre del enlace"; +App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; +App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; +App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; +App::$strings["Order in list"] = "Orden en la lista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; +App::$strings["Submit and finish"] = "Enviar y terminar"; +App::$strings["Submit and continue"] = "Enviar y continuar"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Destino del enlace"; +App::$strings["Edit menu"] = "Editar menú"; +App::$strings["Edit element"] = "Editar el elemento"; +App::$strings["Drop element"] = "Eliminar el elemento"; +App::$strings["New element"] = "Nuevo elemento"; +App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; +App::$strings["Add menu element"] = "Añadir un elemento al menú"; +App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; +App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; +App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; +App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; +App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; +App::$strings["Edit Menu Element"] = "Editar elemento del menú"; +App::$strings["Link text"] = "Texto del enlace"; +App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; +App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; +App::$strings["Could not create table."] = "No se puede crear la tabla."; +App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Verificación del sistema"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Check again"] = "Verificar de nuevo"; +App::$strings["Database connection"] = "Conexión a la base de datos"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; +App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; +App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; +App::$strings["Database Port"] = "Puerto de la base de datos"; +App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; +App::$strings["Database Login Name"] = "Usuario de la base de datos"; +App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; +App::$strings["Database Name"] = "Nombre de la base de datos"; +App::$strings["Database Type"] = "Tipo de base de datos"; +App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; +App::$strings["Website URL"] = "Dirección del sitio web"; +App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; +App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; +App::$strings["Site settings"] = "Ajustes del sitio"; +App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; +App::$strings["PHP version"] = "Versión de PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; +App::$strings["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."] = "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."; +App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; +App::$strings["Command line PHP"] = "PHP en línea de comandos"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["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."] = "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."; +App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; +App::$strings["PHP upload limits"] = "Límites PHP de subida"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; +App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; +App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; +App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; +App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; +App::$strings["xml PHP module"] = "módulo PHP xml"; +App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; +App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; +App::$strings["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."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; +App::$strings["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."] = "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."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; +App::$strings["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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "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)."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "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."; +App::$strings["%s is writable"] = "%s tiene permisos de escritura"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior"; +App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; +App::$strings["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!"] = "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."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; +App::$strings["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."] = "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."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; +App::$strings["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."] = "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."; +App::$strings["SSL certificate validation"] = "validación del certificado SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; +App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; +App::$strings["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."] = "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."; +App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; +App::$strings["

    What next

    "] = "

    Siguiente paso

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; +App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +App::$strings["Password Reset"] = "Restablecer la contraseña"; +App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +App::$strings["Your new password is"] = "Su nueva contraseña es"; +App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +App::$strings["click here to login"] = "pulse aquí para conectarse"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +App::$strings["Email Address"] = "Dirección de correo electrónico"; +App::$strings["Reset"] = "Reiniciar"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; +App::$strings["Mood"] = "Estado de ánimo"; +App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; +App::$strings["Remove This Channel"] = "Eliminar este canal"; +App::$strings["WARNING: "] = "ATENCIÓN:"; +App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red. "; +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 this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; +App::$strings["Remove Channel"] = "Eliminar el canal"; +App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; +App::$strings["System Notifications"] = "Notificaciones del sistema"; +App::$strings["Profile Match"] = "Perfil compatible"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +App::$strings["is interested in:"] = "está interesado en:"; +App::$strings["Connect"] = "Conectar"; +App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; +App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; +App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; +App::$strings["Hub not found."] = "Servidor no encontrado"; +App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; +App::$strings["Profile Photos"] = "Fotos del perfil"; +App::$strings["Album not found."] = "Álbum no encontrado."; +App::$strings["Delete Album"] = "Borrar álbum"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros"; +App::$strings["Delete Photo"] = "Borrar foto"; +App::$strings["Public access denied."] = "Acceso público denegado."; +App::$strings["No photos selected"] = "No hay fotos seleccionadas"; +App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado."; +App::$strings["Upload Photos"] = "Subir fotos"; +App::$strings["Enter an album name"] = "Introducir un nombre de álbum"; +App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)"; +App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida"; +App::$strings["Caption (optional):"] = "Título (opcional):"; +App::$strings["Description (optional):"] = "Descripción (opcional):"; +App::$strings["Album name could not be decoded"] = "El nombre del álbum no ha podido ser descifrado"; +App::$strings["Contact Photos"] = "Fotos de contacto"; +App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; +App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; +App::$strings["View Photo"] = "Ver foto"; +App::$strings["Edit Album"] = "Editar álbum"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; +App::$strings["Photo not available"] = "Foto no disponible"; +App::$strings["Use as profile photo"] = "Usar como foto del perfil"; +App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; +App::$strings["Private Photo"] = "Foto privada"; +App::$strings["Previous"] = "Anterior"; +App::$strings["View Full Size"] = "Ver tamaño completo"; +App::$strings["Edit photo"] = "Editar foto"; +App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; +App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)"; +App::$strings["Move photo to album"] = "Mover la foto a un álbum"; +App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum"; +App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente"; +App::$strings["Caption"] = "Título"; +App::$strings["Add a Tag"] = "Añadir una etiqueta"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; +App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; +App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; +App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +App::$strings["Share"] = "Compartir"; +App::$strings["Please wait"] = "Espere por favor"; +App::$strings["This is you"] = "Este es usted"; +App::$strings["Comment"] = "Comentar"; +App::$strings["Preview"] = "Previsualizar"; +App::$strings["__ctx:title__ Likes"] = "Me gusta"; +App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; +App::$strings["__ctx:title__ Agree"] = "De acuerdo"; +App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; +App::$strings["__ctx:title__ Abstain"] = "Abstención"; +App::$strings["__ctx:title__ Attending"] = "Participaré"; +App::$strings["__ctx:title__ Not attending"] = "No participaré"; +App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; +App::$strings["View all"] = "Ver todo"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Me gusta", + 1 => "Me gusta", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "No me gusta", + 1 => "No me gusta", +); +App::$strings["Photo Tools"] = "Gestión de las fotos"; +App::$strings["In This Photo:"] = "En esta foto:"; +App::$strings["Map"] = "Mapa"; +App::$strings["__ctx:noun__ Likes"] = "Me gusta"; +App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; +App::$strings["Close"] = "Cerrar"; +App::$strings["View Album"] = "Ver álbum"; +App::$strings["Recent Photos"] = "Fotos recientes"; +App::$strings["Name or caption"] = "Nombre o descripción"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +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 role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; +App::$strings["Read more about roles"] = "Leer más sobre los roles"; +App::$strings["Create Channel"] = "Crear un canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; +App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[hoy]"; +App::$strings["posted an event"] = "publicó un evento"; +App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; +App::$strings["Discard"] = "Descartar"; +App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +App::$strings["Poke"] = "Toques y otras cosas"; +App::$strings["Poke somebody"] = "Dar un toque a alguien"; +App::$strings["Poke/Prod"] = "Toque/Incitación"; +App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; +App::$strings["Make this post private"] = "Convertir en privado este envío"; App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; -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["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; +App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; +App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; +App::$strings["Visible To"] = "Visible para"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; +App::$strings["Configuration Editor"] = "Editor de configuración"; +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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; +App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; +App::$strings["Current load average: "] = "Carga media actual:"; +App::$strings["Running at web location"] = "Corriendo en el sitio web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; +App::$strings["\$projectname issues"] = "Problemas en \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +App::$strings["Site Administrators"] = "Administradores del sitio"; +App::$strings["Blocks"] = "Bloques"; +App::$strings["Block Title"] = "Título del bloque"; +App::$strings["Layouts"] = "Plantillas"; +App::$strings["Help"] = "Ayuda"; +App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; +App::$strings["Layout Description"] = "Descripción de la plantilla"; +App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["# Accounts"] = "# Cuentas"; +App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; +App::$strings["# expired accounts"] = "# cuentas caducadas"; +App::$strings["# expiring accounts"] = "# cuentas que caducan"; +App::$strings["# Channels"] = "# Canales"; +App::$strings["# primary"] = "# primario"; +App::$strings["# clones"] = "# clones"; +App::$strings["Message queues"] = "Mensajes en cola"; +App::$strings["Your software should be updated"] = "Debe actualizar su software"; +App::$strings["Summary"] = "Sumario"; +App::$strings["Registered accounts"] = "Cuentas registradas"; +App::$strings["Pending registrations"] = "Registros pendientes"; +App::$strings["Registered channels"] = "Canales registrados"; +App::$strings["Active plugins"] = "Extensiones (plugins) activas"; +App::$strings["Version"] = "Versión"; +App::$strings["Repository version (master)"] = "Versión del repositorio (master)"; +App::$strings["Repository version (dev)"] = "Versión del repositorio (dev)"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; +App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Permissions denied."] = "Permisos denegados."; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["Edit Event"] = "Editar el evento"; +App::$strings["Create Event"] = "Crear un evento"; +App::$strings["Export"] = "Exportar"; +App::$strings["Import"] = "Importar"; +App::$strings["Today"] = "Hoy"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["Common connections"] = "Conexiones comunes"; +App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["No ratings"] = "Ninguna valoración"; +App::$strings["Rating: "] = "Valoración:"; +App::$strings["Website: "] = "Sitio web:"; +App::$strings["Description: "] = "Descripción:"; +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. 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["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["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["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 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; +App::$strings["Your email address"] = "Su dirección de correo electrónico"; +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["no"] = "no"; +App::$strings["yes"] = "sí"; +App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; +App::$strings["Register"] = "Registrarse"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones."; +App::$strings["Documentation Search"] = "Búsqueda de Documentación"; +App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; App::$strings["Save Bookmark"] = "Guardar marcador"; App::$strings["URL of bookmark"] = "Dirección del marcador"; @@ -1341,17 +1130,23 @@ App::$strings["Authenticate"] = "Acceder"; App::$strings["Please login."] = "Por favor, inicie sesión."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; App::$strings["Remove This Account"] = "Eliminar esta cuenta"; -App::$strings["WARNING: "] = "ATENCIÓN:"; App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; -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 this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; -App::$strings["Remove This Channel"] = "Eliminar este canal"; -App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; -App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; +App::$strings["Remove Account"] = "Eliminar cuenta"; +App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; +App::$strings["Import selected"] = "Importar elementos seleccionados"; +App::$strings["Export Webpage Elements"] = "Exportar elementos de una página web"; +App::$strings["Export selected"] = "Exportar elementos seleccionados"; +App::$strings["Webpages"] = "Páginas web"; +App::$strings["Actions"] = "Acciones"; +App::$strings["Page Link"] = "Vínculo de la página"; +App::$strings["Page Title"] = "Título de página"; +App::$strings["Invalid file type."] = "Tipo de fichero no válido."; +App::$strings["Error opening zip file"] = "Error al abrir el fichero comprimido zip"; +App::$strings["Invalid folder path."] = "La ruta de la carpeta no es válida."; +App::$strings["No webpage elements detected."] = "No se han detectado elementos de ninguna página web."; +App::$strings["Import complete."] = "Importación completada."; App::$strings["Export Channel"] = "Exportar el canal"; App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; App::$strings["Export Content"] = "Exportar contenidos"; @@ -1362,9 +1157,39 @@ App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Edit post"] = "Editar la entrada"; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; +App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; +App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; +App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +App::$strings["Event not found."] = "Evento no encontrado."; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; +App::$strings["Edit Category"] = "Modificar el tema"; +App::$strings["Category"] = "Tema"; +App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; +App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; +App::$strings["Finish date and time"] = "Fecha y hora de terminación"; +App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +App::$strings["Edit Description"] = "Editar la descripción"; +App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Share this event"] = "Compartir este evento"; +App::$strings["Permission settings"] = "Configuración de permisos"; +App::$strings["Advanced Options"] = "Opciones avanzadas"; +App::$strings["Edit event"] = "Editar evento"; +App::$strings["Delete event"] = "Borrar evento"; +App::$strings["calendar"] = "calendario"; +App::$strings["Month"] = "Mes"; +App::$strings["Week"] = "Semana"; +App::$strings["Day"] = "Día"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; App::$strings["Thing updated"] = "Elemento actualizado."; App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; @@ -1422,6 +1247,7 @@ App::$strings["Only import content with these words (one per line)"] = "Importar App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; App::$strings["Channel Name"] = "Nombre del canal"; App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)"; +App::$strings["Optional"] = "Opcional"; App::$strings["Source not found."] = "Fuente no encontrada"; App::$strings["Edit Source"] = "Editar fuente"; App::$strings["Delete Source"] = "Eliminar fuente"; @@ -1431,6 +1257,7 @@ App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; +App::$strings["Channel Suggestions"] = "Sugerencias de canales"; App::$strings["post"] = "la entrada"; App::$strings["comment"] = "el comentario"; App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; @@ -1448,7 +1275,6 @@ App::$strings["Delete Room"] = "Eliminar esta sala"; App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; App::$strings["I am online"] = "Estoy conectado/a"; App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; App::$strings["New Chatroom"] = "Nueva sala de chat"; App::$strings["Chatroom name"] = "Nombre de la sala de chat"; App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; @@ -1458,6 +1284,189 @@ App::$strings["Expiration"] = "Caducidad"; App::$strings["min"] = "min"; App::$strings["Xchan Lookup"] = "Búsqueda de canales"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["%d rating"] = array( + 0 => "%d valoración", + 1 => "%d valoraciones", +); +App::$strings["Gender: "] = "Género:"; +App::$strings["Status: "] = "Estado:"; +App::$strings["Homepage: "] = "Página personal:"; +App::$strings["Age:"] = "Edad:"; +App::$strings["Location:"] = "Ubicación:"; +App::$strings["Description:"] = "Descripción:"; +App::$strings["Hometown:"] = "Lugar de nacimiento:"; +App::$strings["About:"] = "Sobre mí:"; +App::$strings["Public Forum:"] = "Foro público:"; +App::$strings["Keywords: "] = "Palabras clave:"; +App::$strings["Don't suggest"] = "No sugerir:"; +App::$strings["Common connections:"] = "Conexiones comunes:"; +App::$strings["Global Directory"] = "Directorio global:"; +App::$strings["Local Directory"] = "Directorio local:"; +App::$strings["Finding:"] = "Encontrar:"; +App::$strings["next page"] = "siguiente página"; +App::$strings["previous page"] = "página anterior"; +App::$strings["Sort options"] = "Ordenar opciones"; +App::$strings["Alphabetic"] = "Alfabético"; +App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; +App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; +App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; +App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; +App::$strings["Not valid email."] = "Correo electrónico no válido."; +App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; +App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; +App::$strings["Technical skill level updated"] = "Nivel de habilidad técnica actualizado"; +App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; +App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; +App::$strings["Password changed."] = "Contraseña cambiada."; +App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; +App::$strings["Account Settings"] = "Configuración de la cuenta"; +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["Your technical skill level"] = "Su nivel de habilidad técnica"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Se utiliza para proporcionar la experiencia de los miembros adaptada a su nivel de comodidad"; +App::$strings["Email Address:"] = "Dirección de correo electrónico:"; +App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; +App::$strings["Settings updated."] = "Ajustes actualizados."; +App::$strings["Nobody except yourself"] = "Nadie excepto usted"; +App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; +App::$strings["Approved connections"] = "Conexiones aprobadas"; +App::$strings["Any connections"] = "Cualquier conexión"; +App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; +App::$strings["Anybody in this network"] = "Cualquiera en esta red"; +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["Your channel address is"] = "Su dirección de canal es"; +App::$strings["Channel Settings"] = "Ajustes del canal"; +App::$strings["Basic Settings"] = "Configuración básica"; +App::$strings["Full Name:"] = "Nombre completo:"; +App::$strings["Your Timezone:"] = "Su huso horario:"; +App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; +App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; +App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; +App::$strings["Adult Content"] = "Contenido solo para adultos"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; +App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; +App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; +App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; +App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; +App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; +App::$strings["Channel Permission Limits"] = "Límites de los permisos del canal"; +App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; +App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; +App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; +App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; +App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; +App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; +App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; +App::$strings["Default Access Control List (ACL)"] = "Lista de control de acceso (ACL) por defecto"; +App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; +App::$strings["Channel permissions category:"] = "Categoría de los permisos del canal:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; +App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; +App::$strings["Notification Settings"] = "Configuración de las notificaciones"; +App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; +App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; +App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; +App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; +App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; +App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; +App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; +App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; +App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; +App::$strings["You receive a private message"] = "Reciba un mensaje privado"; +App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; +App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; +App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; +App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; +App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; +App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; +App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; +App::$strings["Recommended"] = "Recomendado"; +App::$strings["Upcoming events"] = "Próximos eventos"; +App::$strings["Events today"] = "Eventos de hoy"; +App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; +App::$strings["Not available in all themes"] = "No disponible en todos los temas"; +App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; +App::$strings["System info messages"] = "Mensajes de información del sistema"; +App::$strings["System critical alerts"] = "Alertas críticas del sistema"; +App::$strings["New connections"] = "Nuevas conexiones"; +App::$strings["System Registrations"] = "Registros del sistema"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; +App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; +App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; +App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; +App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; +App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; +App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; +App::$strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos"; +App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; +App::$strings["Remove this channel."] = "Eliminar este canal."; +App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; +App::$strings["Start calendar week on monday"] = "Comenzar el calendario semanal por el lunes"; +App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; +App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; +App::$strings["Display Settings"] = "Ajustes de visualización"; +App::$strings["Theme Settings"] = "Ajustes del tema"; +App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; +App::$strings["Content Settings"] = "Ajustes del contenido"; +App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; +App::$strings["Select scheme"] = "Elegir un esquema"; +App::$strings["Mobile Theme:"] = "Tema para el móvil:"; +App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; +App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; +App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; +App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; +App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; +App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; +App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; +App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; +App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; +App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; +App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; +App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; +App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; +App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; +App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; +App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; +App::$strings["Additional Features"] = "Funcionalidades"; +App::$strings["Name is required"] = "El nombre es obligatorio"; +App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["Add application"] = "Añadir aplicación"; +App::$strings["Name of application"] = "Nombre de la aplicación"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +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["Application not found."] = "Aplicación no encontrada."; +App::$strings["Connected Apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["Client key starts with"] = "La \"client key\" empieza por"; +App::$strings["No name"] = "Sin nombre"; +App::$strings["Remove authorization"] = "Eliminar autorización"; +App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; +App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; +App::$strings["Token saved."] = "Token salvado."; +App::$strings["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."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; +App::$strings["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:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; +App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; +App::$strings["Login Name"] = "Nombre de inicio de sesión"; +App::$strings["Login Password"] = "Contraseña de inicio de sesión"; +App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; App::$strings["Missing room name"] = "Sala de chat sin nombre"; App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; @@ -1468,7 +1477,7 @@ App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Gracias,"; App::$strings["%s Administrator"] = "%s Administrador"; App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Aviso] Nuevo correo recibido en %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; App::$strings["a private message"] = "un mensaje privado"; @@ -1476,72 +1485,35 @@ App::$strings["Please visit %s to view and/or reply to your private messages."] App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Nuevo comentario de %2\$s en la conversación #%1\$d"; App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s"; App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Aviso] %s le ha etiquetado"; App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s"; App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Aviso] %1\$s le ha dado un toque"; App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s"; App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Aviso] %s ha etiquetado su entrada"; App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Aviso] Ha recibido una solicitud de conexión"; App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Aviso] Ha recibido una sugerencia de conexión"; App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; App::$strings["Name:"] = "Nombre:"; App::$strings["Photo:"] = "Foto:"; App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Aviso]"; App::$strings["created a new post"] = "ha creado una nueva entrada"; App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Bug Report"] = "Informe de errores"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; -App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Grid"] = "Red"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Mail"] = "Correo"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Funcionalidades"; -App::$strings["Language"] = "Idioma"; -App::$strings["Post"] = "Publicación"; -App::$strings["Profile Photo"] = "Foto del perfil"; -App::$strings["Purchase"] = "Comprar"; -App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Only me"] = "Sólo yo"; -App::$strings["Public"] = "Público"; -App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; -App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; -App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; -App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; -App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; App::$strings["Private Message"] = "Mensaje Privado"; App::$strings["Select"] = "Seleccionar"; App::$strings["Save to Folder"] = "Guardar en carpeta"; @@ -1587,24 +1559,46 @@ App::$strings["Code"] = "Código"; App::$strings["Image"] = "Imagen"; App::$strings["Insert Link"] = "Insertar enlace"; App::$strings["Video"] = "Vídeo"; +App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; +App::$strings["Only me"] = "Sólo yo"; +App::$strings["Public"] = "Público"; +App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; +App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; +App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; +App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; +App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Bug Report"] = "Informe de errores"; +App::$strings["View Bookmarks"] = "Ver los marcadores"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; +App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; +App::$strings["Suggest Channels"] = "Sugerir canales"; +App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Grid"] = "Red"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Probar"; +App::$strings["Suggest"] = "Sugerir"; +App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; +App::$strings["Features"] = "Funcionalidades"; +App::$strings["Language"] = "Idioma"; +App::$strings["Post"] = "Publicación"; +App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Purchase"] = "Comprar"; App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; -App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["No Subject"] = "Sin asunto"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; @@ -1618,19 +1612,89 @@ App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; -App::$strings["(Unknown)"] = "(Desconocido)"; -App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -App::$strings["Visible to you only."] = "Visible sólo para usted."; -App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; -App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; -App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; -App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; -App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -App::$strings["profile photo"] = "foto del perfil"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; +App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; +App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; +App::$strings["a new photo"] = "una nueva foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Upload New Photos"] = "Subir nuevas fotos"; +App::$strings["General Features"] = "Funcionalidades básicas"; +App::$strings["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Advanced Profiles"] = "Perfiles avanzados"; +App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; +App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; +App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; +App::$strings["Web Pages"] = "Páginas web"; +App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; +App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; +App::$strings["Private Notes"] = "Notas privadas"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; +App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; +App::$strings["Photo Location"] = "Ubicación de las fotos"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; +App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; +App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; +App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directorio"; +App::$strings["Allows creation of complex directory search queries"] = "Permitir la creación de consultas complejas en las búsquedas en el directorio"; +App::$strings["Advanced Theme and Layout Settings"] = "Ajustes avanzados de temas y esquemas"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Permitir el ajuste fino de temas y esquemas de páginas"; +App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; +App::$strings["Large Photos"] = "Fotos de gran tamaño"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; +App::$strings["Even More Encryption"] = "Más cifrado todavía"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; +App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; +App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; +App::$strings["Disable Comments"] = "Deshabilitar comentarios"; +App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios de una publicación"; +App::$strings["Delayed Posting"] = "Publicación aplazada"; +App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; +App::$strings["Content Expiration"] = "Caducidad del contenido"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; +App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; +App::$strings["Search by Date"] = "Buscar por fecha"; +App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +App::$strings["Privacy Groups"] = "Grupos de canales"; +App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; +App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; +App::$strings["Network Personal Tab"] = "Actividad personal"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; +App::$strings["Network New Tab"] = "Contenido nuevo"; +App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; +App::$strings["Affinity Tool"] = "Herramienta de afinidad"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; +App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias de amigos y conexiones"; +App::$strings["Connection Filtering"] = "Filtrado de conexiones"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; +App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; +App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +App::$strings["Post Categories"] = "Temas de las entradas"; +App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; +App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; +App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; +App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +App::$strings["Star Posts"] = "Entradas destacadas"; +App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; +App::$strings["Tag Cloud"] = "Nube de etiquetas"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; +App::$strings["Premium Channel"] = "Canal premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +App::$strings["Help:"] = "Ayuda:"; +App::$strings["guest:"] = "invitado: "; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; App::$strings["prev"] = "anterior"; App::$strings["first"] = "primera"; App::$strings["last"] = "última"; @@ -1710,154 +1774,39 @@ App::$strings["Import from cloud files:"] = "Importar desde los ficheros en la n App::$strings["/cloud/channel/path/to/folder"] = "/cloud/canal/ruta/a la/carpeta"; App::$strings["Enter path to website files"] = "Ruta a los ficheros del sitio web"; App::$strings["Select folder"] = "Seleccionar la carpeta"; -App::$strings["Categories"] = "Temas"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nueva aplicación (app)"; -App::$strings["Suggestions"] = "Sugerencias"; -App::$strings["See more..."] = "Ver más..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; -App::$strings["Add New Connection"] = "Añadir nueva conexión"; -App::$strings["Enter channel address"] = "Dirección del canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; -App::$strings["Notes"] = "Notas"; -App::$strings["Remove term"] = "Eliminar término"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; -App::$strings["add"] = "añadir"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; -App::$strings["Everything"] = "Todo"; -App::$strings["Archives"] = "Hemeroteca"; -App::$strings["Refresh"] = "Recargar"; -App::$strings["Account settings"] = "Configuración de la cuenta"; -App::$strings["Channel settings"] = "Configuración del canal"; -App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Feature/Addon settings"] = "Complementos"; -App::$strings["Display settings"] = "Ajustes de visualización"; -App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; -App::$strings["Export channel"] = "Exportar canal"; -App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; -App::$strings["Private Mail Menu"] = "Menú de correo privado"; -App::$strings["Combined View"] = "Vista combinada"; -App::$strings["Inbox"] = "Bandeja de entrada"; -App::$strings["Outbox"] = "Bandeja de salida"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Conversations"] = "Conversaciones"; -App::$strings["Received Messages"] = "Mensajes recibidos"; -App::$strings["Sent Messages"] = "Enviar mensajes"; -App::$strings["No messages."] = "Sin mensajes."; -App::$strings["Delete conversation"] = "Eliminar conversación"; -App::$strings["Events Tools"] = "Gestión de eventos"; -App::$strings["Export Calendar"] = "Exportar el calendario"; -App::$strings["Import Calendar"] = "Importar un calendario"; -App::$strings["Chatrooms"] = "Salas de chat"; -App::$strings["Overview"] = "Resumen"; -App::$strings["Chat Members"] = "Miembros del chat"; -App::$strings["Wiki List"] = "Lista de wikis"; -App::$strings["Wiki Pages"] = "Páginas del wiki"; -App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; -App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; -App::$strings["photo/image"] = "foto/imagen"; -App::$strings["Click to show more"] = "Hacer clic para ver más"; -App::$strings["Rating Tools"] = "Valoraciones"; -App::$strings["Rate Me"] = "Valorar este canal"; -App::$strings["View Ratings"] = "Mostrar las valoraciones"; -App::$strings["Forums"] = "Foros"; -App::$strings["Tasks"] = "Tareas"; -App::$strings["Documentation"] = "Documentación"; -App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; -App::$strings["For Members"] = "Para los miembros"; -App::$strings["For Administrators"] = "Para los administradores"; -App::$strings["For Developers"] = "Para los desarrolladores"; -App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; -App::$strings["Inspect queue"] = "Examinar la cola"; -App::$strings["DB updates"] = "Actualizaciones de la base de datos"; -App::$strings["Admin"] = "Administrador"; -App::$strings["Plugin Features"] = "Extensiones"; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; -App::$strings["Custom selection"] = "Selección personalizada"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje."; -App::$strings["Public Timeline"] = "Cronología pública"; -App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -App::$strings["Empty name"] = "Nombre vacío"; -App::$strings["Name too long"] = "Nombre demasiado largo"; -App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; -App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; -App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["Like this channel"] = "Me gusta este canal"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Cumpleaños:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; -App::$strings["Likes:"] = "Me gusta:"; -App::$strings["Dislikes:"] = "No me gusta:"; -App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -App::$strings["My other channels:"] = "Mis otros canales:"; -App::$strings["Musical interests:"] = "Preferencias musicales:"; -App::$strings["Books, literature:"] = "Libros, literatura:"; -App::$strings["Television:"] = "Televisión:"; -App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; -App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "año", - 1 => "años", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "meses", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semana", - 1 => "semanas", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "día", - 1 => "días", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "horas", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minutos", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segundo", - 1 => "segundos", -); -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +App::$strings["Export website..."] = "Exportar un sitio web..."; +App::$strings["Export to a zip file"] = "Exportar a un fichero comprimido .zip"; +App::$strings["website.zip"] = "sitio_web.zip"; +App::$strings["Enter a name for the zip file."] = "Escribir un nombre para el fichero .zip."; +App::$strings["Export to cloud files"] = "Exportar a los ficheros en la nube"; +App::$strings["/path/to/export/folder"] = "/ruta/para/exportar/carpeta"; +App::$strings["Enter a path to a cloud files destination."] = "Escribir una ruta de destino para los ficheros en la nube"; +App::$strings["Specify folder"] = "Especificar una carpeta"; +App::$strings["Invalid data packet"] = "Paquete de datos no válido"; +App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; +App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; +App::$strings["invalid target signature"] = "La firma recibida no es válida"; +App::$strings["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["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."; +App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; +App::$strings["Administrator"] = "Administrador"; +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["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["No recipient provided."] = "No se ha especificado ningún destinatario."; +App::$strings["[no subject]"] = "[sin asunto]"; +App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; +App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; App::$strings["Frequently"] = "Frecuentemente"; App::$strings["Hourly"] = "Cada hora"; App::$strings["Twice daily"] = "Dos veces al día"; @@ -1920,15 +1869,190 @@ App::$strings["Uncertain"] = "Indeterminado"; App::$strings["It's complicated"] = "Es complicado"; App::$strings["Don't care"] = "No me importa"; App::$strings["Ask me"] = "Pregúnteme"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; -App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["a new photo"] = "una nueva foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; -App::$strings["guest:"] = "invitado: "; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +App::$strings["Empty name"] = "Nombre vacío"; +App::$strings["Name too long"] = "Nombre demasiado largo"; +App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; +App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; +App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Like this channel"] = "Me gusta este canal"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Cumpleaños:"; +App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +App::$strings["Tags:"] = "Etiquetas:"; +App::$strings["Political Views:"] = "Posición política:"; +App::$strings["Religion:"] = "Religión:"; +App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; +App::$strings["Likes:"] = "Me gusta:"; +App::$strings["Dislikes:"] = "No me gusta:"; +App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +App::$strings["My other channels:"] = "Mis otros canales:"; +App::$strings["Musical interests:"] = "Preferencias musicales:"; +App::$strings["Books, literature:"] = "Libros, literatura:"; +App::$strings["Television:"] = "Televisión:"; +App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; +App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; +App::$strings["Work/employment:"] = "Trabajo:"; +App::$strings["School/education:"] = "Estudios:"; +App::$strings["Like this thing"] = "Me gusta esto"; +App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; +App::$strings["Custom selection"] = "Selección personalizada"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; +App::$strings["Show"] = "Mostrar"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje."; +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; +App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; +App::$strings["edit"] = "editar"; +App::$strings["Edit group"] = "Editar grupo"; +App::$strings["Add privacy group"] = "Añadir un grupo de canales"; +App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; +App::$strings["add"] = "añadir"; +App::$strings["New window"] = "Nueva ventana"; +App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; +App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +App::$strings["New Page"] = "Nueva página"; +App::$strings["Title"] = "Título"; +App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +App::$strings["Logout"] = "Finalizar sesión"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Home"] = "Inicio"; +App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Your photos"] = "Sus fotos"; +App::$strings["Your files"] = "Sus ficheros"; +App::$strings["Your chatrooms"] = "Sus salas de chat"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Your bookmarks"] = "Sus marcadores"; +App::$strings["Your webpages"] = "Sus páginas web"; +App::$strings["Your wiki"] = "Su wiki"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +App::$strings["Remote authentication"] = "Acceder desde su servidor"; +App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +App::$strings["Home Page"] = "Página de inicio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +App::$strings["Channel Directory"] = "Directorio de canales"; +App::$strings["Your grid"] = "Mi red"; +App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Channel home"] = "Mi canal"; +App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +App::$strings["Notices"] = "Avisos"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["See all notifications"] = "Ver todas las notificaciones"; +App::$strings["Private mail"] = "Correo privado"; +App::$strings["See all private messages"] = "Ver todas los mensajes privados"; +App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +App::$strings["Inbox"] = "Bandeja de entrada"; +App::$strings["Outbox"] = "Bandeja de salida"; +App::$strings["New Message"] = "Nuevo mensaje"; +App::$strings["Event Calendar"] = "Calendario de eventos"; +App::$strings["See all events"] = "Ver todos los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["Admin"] = "Administrador"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["Loading..."] = "Cargando..."; +App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; +App::$strings["Please wait..."] = "Espere por favor…"; +App::$strings["Attachments:"] = "Ficheros adjuntos:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; +App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; +App::$strings["Starts:"] = "Comienza:"; +App::$strings["Finishes:"] = "Finaliza:"; +App::$strings["Delete this item?"] = "¿Borrar este elemento?"; +App::$strings["%s show less"] = "%s mostrar menos"; +App::$strings["%s expand"] = "%s expandir"; +App::$strings["%s collapse"] = "%s contraer"; +App::$strings["Password too short"] = "Contraseña demasiado corta"; +App::$strings["Passwords do not match"] = "Las contraseñas no coinciden"; +App::$strings["everybody"] = "cualquiera"; +App::$strings["Secret Passphrase"] = "Contraseña secreta"; +App::$strings["Passphrase hint"] = "Pista de contraseña"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados."; +App::$strings["close all"] = "cerrar todo"; +App::$strings["Nothing new here"] = "Nada nuevo por aquí"; +App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)"; +App::$strings["Describe (optional)"] = "Describir (opcional)"; +App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "antes"; +App::$strings["from now"] = "desde ahora"; +App::$strings["less than a minute"] = "menos de un minuto"; +App::$strings["about a minute"] = "alrededor de un minuto"; +App::$strings["%d minutes"] = "%d minutos"; +App::$strings["about an hour"] = "alrededor de una hora"; +App::$strings["about %d hours"] = "alrededor de %d horas"; +App::$strings["a day"] = "un día"; +App::$strings["%d days"] = "%d días"; +App::$strings["about a month"] = "alrededor de un mes"; +App::$strings["%d months"] = "%d meses"; +App::$strings["about a year"] = "alrededor de un año"; +App::$strings["%d years"] = "%d años"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "mayo"; +App::$strings["Jan"] = "ene"; +App::$strings["Feb"] = "feb"; +App::$strings["Mar"] = "mar"; +App::$strings["Apr"] = "abr"; +App::$strings["__ctx:short__ May"] = "may"; +App::$strings["Jun"] = "jun"; +App::$strings["Jul"] = "jul"; +App::$strings["Aug"] = "ago"; +App::$strings["Sep"] = "sep"; +App::$strings["Oct"] = "oct"; +App::$strings["Nov"] = "nov"; +App::$strings["Dec"] = "dic"; +App::$strings["Sun"] = "dom"; +App::$strings["Mon"] = "lun"; +App::$strings["Tue"] = "mar"; +App::$strings["Wed"] = "mié"; +App::$strings["Thu"] = "jue"; +App::$strings["Fri"] = "vie"; +App::$strings["Sat"] = "sáb"; +App::$strings["__ctx:calendar__ today"] = "hoy"; +App::$strings["__ctx:calendar__ month"] = "mes"; +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["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +App::$strings["Channel location missing."] = "Falta la dirección del canal."; +App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["Image/photo"] = "Imagen/foto"; +App::$strings["Encrypted content"] = "Contenido cifrado"; +App::$strings["Install %s element: "] = "Instalar el elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; +App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["$1 wrote:"] = "$1 escribió:"; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; @@ -1936,7 +2060,6 @@ App::$strings["Categories:"] = "Temas:"; App::$strings["Filed under:"] = "Archivado bajo:"; App::$strings["View in context"] = "Mostrar en su contexto"; App::$strings["remove"] = "eliminar"; -App::$strings["Loading..."] = "Cargando..."; App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; App::$strings["View Source"] = "Ver el código fuente de la entrada"; App::$strings["Follow Thread"] = "Seguir este hilo"; @@ -1991,7 +2114,7 @@ App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones App::$strings["About"] = "Mi perfil"; App::$strings["Profile Details"] = "Detalles del perfil"; App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Chatrooms"] = "Salas de chat"; App::$strings["Saved Bookmarks"] = "Marcadores guardados"; App::$strings["Manage Webpages"] = "Administrar páginas web"; App::$strings["__ctx:noun__ Attending"] = array( @@ -2018,108 +2141,55 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "se abstiene", 1 => "Se abstienen", ); -App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; -App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; -App::$strings["edit"] = "editar"; -App::$strings["Privacy Groups"] = "Grupos de canales"; -App::$strings["Edit group"] = "Editar grupo"; -App::$strings["Add privacy group"] = "Añadir un grupo de canales"; -App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; -App::$strings["New Page"] = "Nueva página"; -App::$strings["Title"] = "Título"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; -App::$strings["Starts:"] = "Comienza:"; -App::$strings["Finishes:"] = "Finaliza:"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["Not specified"] = "Sin especificar"; -App::$strings["Needs Action"] = "Necesita de una intervención"; -App::$strings["Completed"] = "Completado/a"; -App::$strings["In Process"] = "En proceso"; -App::$strings["Cancelled"] = "Cancelado/a"; -App::$strings["Attachments:"] = "Ficheros adjuntos:"; -App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; -App::$strings["Delete this item?"] = "¿Borrar este elemento?"; -App::$strings["%s show less"] = "%s mostrar menos"; -App::$strings["%s expand"] = "%s expandir"; -App::$strings["%s collapse"] = "%s contraer"; -App::$strings["Password too short"] = "Contraseña demasiado corta"; -App::$strings["Passwords do not match"] = "Las contraseñas no coinciden"; -App::$strings["everybody"] = "cualquiera"; -App::$strings["Secret Passphrase"] = "Contraseña secreta"; -App::$strings["Passphrase hint"] = "Pista de contraseña"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados."; -App::$strings["close all"] = "cerrar todo"; -App::$strings["Nothing new here"] = "Nada nuevo por aquí"; -App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)"; -App::$strings["Describe (optional)"] = "Describir (opcional)"; -App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "antes"; -App::$strings["from now"] = "desde ahora"; -App::$strings["less than a minute"] = "menos de un minuto"; -App::$strings["about a minute"] = "alrededor de un minuto"; -App::$strings["%d minutes"] = "%d minutos"; -App::$strings["about an hour"] = "alrededor de una hora"; -App::$strings["about %d hours"] = "alrededor de %d horas"; -App::$strings["a day"] = "un día"; -App::$strings["%d days"] = "%d días"; -App::$strings["about a month"] = "alrededor de un mes"; -App::$strings["%d months"] = "%d meses"; -App::$strings["about a year"] = "alrededor de un año"; -App::$strings["%d years"] = "%d años"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "mayo"; -App::$strings["Jan"] = "ene"; -App::$strings["Feb"] = "feb"; -App::$strings["Mar"] = "mar"; -App::$strings["Apr"] = "abr"; -App::$strings["__ctx:short__ May"] = "may"; -App::$strings["Jun"] = "jun"; -App::$strings["Jul"] = "jul"; -App::$strings["Aug"] = "ago"; -App::$strings["Sep"] = "sep"; -App::$strings["Oct"] = "oct"; -App::$strings["Nov"] = "nov"; -App::$strings["Dec"] = "dic"; -App::$strings["Sun"] = "dom"; -App::$strings["Mon"] = "lun"; -App::$strings["Tue"] = "mar"; -App::$strings["Wed"] = "mié"; -App::$strings["Thu"] = "jue"; -App::$strings["Fri"] = "vie"; -App::$strings["Sat"] = "sáb"; -App::$strings["__ctx:calendar__ today"] = "hoy"; -App::$strings["__ctx:calendar__ month"] = "mes"; -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["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la dirección del canal."; -App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["Item was not found."] = "Elemento no encontrado."; -App::$strings["No source file."] = "Ningún fichero de origen"; -App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; -App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -App::$strings["Path not available."] = "Ruta no disponible."; -App::$strings["Empty pathname"] = "Ruta vacía"; -App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; -App::$strings["Path not found."] = "Ruta no encontrada"; -App::$strings["mkdir failed."] = "mkdir ha fallado."; -App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -App::$strings["Empty path"] = "Ruta vacía"; +App::$strings["Birthday"] = "Cumpleaños"; +App::$strings["Age: "] = "Edad:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +App::$strings["never"] = "nunca"; +App::$strings["less than a second ago"] = "hace un instante"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "año", + 1 => "años", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "meses", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semana", + 1 => "semanas", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "día", + 1 => "días", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "horas", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minutos", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segundo", + 1 => "segundos", +); +App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +App::$strings["Directory Options"] = "Opciones del directorio"; +App::$strings["Safe Mode"] = "Modo seguro"; +App::$strings["Public Forums Only"] = "Solo foros públicos"; +App::$strings["This Website Only"] = "Solo este sitio web"; +App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +App::$strings["Not specified"] = "Sin especificar"; +App::$strings["Needs Action"] = "Necesita de una intervención"; +App::$strings["Completed"] = "Completado/a"; +App::$strings["In Process"] = "En proceso"; +App::$strings["Cancelled"] = "Cancelado/a"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; +App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; +App::$strings["Unable to import element \""] = "No se puede importar un elemento \""; App::$strings["Logged out."] = "Desconectado/a."; App::$strings["Failed authentication"] = "Autenticación fallida."; App::$strings["Login failed."] = "El acceso ha fallado."; @@ -2128,78 +2198,19 @@ App::$strings["public profile"] = "el perfil público"; App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; -App::$strings["Invalid data packet"] = "Paquete de datos no válido"; -App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; -App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; -App::$strings["invalid target signature"] = "La firma recibida no es válida"; -App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Content Expiration"] = "Caducidad del contenido"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -App::$strings["Advanced Profiles"] = "Perfiles avanzados"; -App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; -App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; -App::$strings["Web Pages"] = "Páginas web"; -App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; -App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; -App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; -App::$strings["Photo Location"] = "Ubicación de las fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; -App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; -App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; -App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; -App::$strings["Expert Mode"] = "Modo de experto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; -App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; -App::$strings["Large Photos"] = "Fotos de gran tamaño"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; -App::$strings["Even More Encryption"] = "Más cifrado todavía"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; -App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; -App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; -App::$strings["Disable Comments"] = "Deshabilitar comentarios"; -App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios de una publicación"; -App::$strings["Delayed Posting"] = "Publicación aplazada"; -App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; -App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; -App::$strings["Search by Date"] = "Buscar por fecha"; -App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; -App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; -App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; -App::$strings["Network Personal Tab"] = "Actividad personal"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; -App::$strings["Network New Tab"] = "Contenido nuevo"; -App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; -App::$strings["Affinity Tool"] = "Herramienta de afinidad"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; -App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; -App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Temas de las entradas"; -App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; -App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; -App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; -App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; -App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -App::$strings["Star Posts"] = "Entradas destacadas"; -App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -App::$strings["Tag Cloud"] = "Nube de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +App::$strings["view full size"] = "Ver en el tamaño original"; +App::$strings["No Subject"] = "Sin asunto"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Categories"] = "Temas"; App::$strings["Tags"] = "Etiquetas"; App::$strings["Keywords"] = "Palabras clave"; App::$strings["have"] = "tener"; @@ -2208,30 +2219,6 @@ App::$strings["want"] = "quiero"; App::$strings["wants"] = "quiere"; App::$strings["likes"] = "gusta de"; App::$strings["dislikes"] = "no gusta de"; -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["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."; -App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; -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["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["Image/photo"] = "Imagen/foto"; -App::$strings["Encrypted content"] = "Contenido cifrado"; -App::$strings["Install %s element: "] = "Instalar el elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["$1 wrote:"] = "$1 escribió:"; App::$strings["%d invitation available"] = array( 0 => "%d invitación pendiente", 1 => "%d invitaciones disponibles", @@ -2243,62 +2230,94 @@ App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Ferná App::$strings["Random Profile"] = "Perfil aleatorio"; App::$strings["Invite Friends"] = "Invitar a amigos"; App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; +App::$strings["Everything"] = "Todo"; App::$strings["%d connection in common"] = array( 0 => "%d conexión en común", 1 => "%d conexiones en común", ); App::$strings["show more"] = "mostrar más"; -App::$strings["Directory Options"] = "Opciones del directorio"; -App::$strings["Safe Mode"] = "Modo seguro"; -App::$strings["Public Forums Only"] = "Solo foros públicos"; -App::$strings["This Website Only"] = "Solo este sitio web"; -App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; -App::$strings["[no subject]"] = "[sin asunto]"; -App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; -App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; -App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; -App::$strings["Logout"] = "Finalizar sesión"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Home"] = "Inicio"; -App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Your wiki"] = "Su wiki"; -App::$strings["Sign in"] = "Acceder"; -App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -App::$strings["Remote authentication"] = "Acceder desde su servidor"; -App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Home Page"] = "Página de inicio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["See all private messages"] = "Ver todas los mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["See all events"] = "Ver todos los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nueva aplicación (app)"; +App::$strings["Suggestions"] = "Sugerencias"; +App::$strings["See more..."] = "Ver más..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; +App::$strings["Add New Connection"] = "Añadir nueva conexión"; +App::$strings["Enter channel address"] = "Dirección del canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; +App::$strings["Notes"] = "Notas"; +App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Archives"] = "Hemeroteca"; +App::$strings["Refresh"] = "Recargar"; +App::$strings["Account settings"] = "Configuración de la cuenta"; +App::$strings["Channel settings"] = "Configuración del canal"; +App::$strings["Additional features"] = "Funcionalidades"; +App::$strings["Feature/Addon settings"] = "Complementos"; +App::$strings["Display settings"] = "Ajustes de visualización"; +App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; +App::$strings["Export channel"] = "Exportar canal"; +App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; +App::$strings["Private Mail Menu"] = "Menú de correo privado"; +App::$strings["Combined View"] = "Vista combinada"; +App::$strings["Conversations"] = "Conversaciones"; +App::$strings["Received Messages"] = "Mensajes recibidos"; +App::$strings["Sent Messages"] = "Enviar mensajes"; +App::$strings["No messages."] = "Sin mensajes."; +App::$strings["Delete conversation"] = "Eliminar conversación"; +App::$strings["Events Tools"] = "Gestión de eventos"; +App::$strings["Export Calendar"] = "Exportar el calendario"; +App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Overview"] = "Resumen"; +App::$strings["Chat Members"] = "Miembros del chat"; +App::$strings["Wiki List"] = "Lista de wikis"; +App::$strings["Wiki Pages"] = "Páginas del wiki"; +App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; +App::$strings["photo/image"] = "foto/imagen"; +App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Rating Tools"] = "Valoraciones"; +App::$strings["Rate Me"] = "Valorar este canal"; +App::$strings["View Ratings"] = "Mostrar las valoraciones"; +App::$strings["Forums"] = "Foros"; +App::$strings["Tasks"] = "Tareas"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; +App::$strings["Inspect queue"] = "Examinar la cola"; +App::$strings["DB updates"] = "Actualizaciones de la base de datos"; +App::$strings["Plugin Features"] = "Extensiones"; +App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings[" by "] = "por"; +App::$strings[" on "] = "en"; +App::$strings["Embedded content"] = "Contenido incorporado"; +App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["(Unknown)"] = "(Desconocido)"; +App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +App::$strings["Visible to you only."] = "Visible sólo para usted."; +App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; +App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; +App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; +App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; +App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; +App::$strings["Connection not found."] = "Conexión no encontrada"; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["No source file."] = "Ningún fichero de origen"; +App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +App::$strings["Path not available."] = "Ruta no disponible."; +App::$strings["Empty pathname"] = "Ruta vacía"; +App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +App::$strings["Path not found."] = "Ruta no encontrada"; +App::$strings["mkdir failed."] = "mkdir ha fallado."; +App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +App::$strings["Empty path"] = "Ruta vacía"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; App::$strings["Narrow navbar"] = "Estrechar la barra de navegación"; diff --git a/view/it/hmessages.po b/view/it/hmessages.po index 72da81a4a..c09bc1536 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-17 14:51-0700\n" -"PO-Revision-Date: 2016-09-21 08:59+0000\n" +"POT-Creation-Date: 2016-09-30 00:02-0700\n" +"PO-Revision-Date: 2016-10-02 12:23+0000\n" "Last-Translator: Paolo Wave \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -91,8 +91,8 @@ msgid "Special - Group Repository" msgstr "Speciale - Repository di gruppo" #: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../Zotlabs/Module/Register.php:213 #: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:213 #: ../../Zotlabs/Module/Settings/Channel.php:442 #: ../../include/permissions.php:949 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 @@ -169,7 +169,7 @@ msgstr "Può usare i miei post pubblici per creare canali derivati" msgid "Can administer my channel" msgstr "Può amministrare il mio canale" -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:238 msgid "parent" msgstr "cartella superiore" @@ -200,41 +200,41 @@ msgstr "Appuntamenti inviati" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 -#: ../../include/widgets.php:1679 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1031 +#: ../../include/widgets.php:1683 msgid "Unknown" msgstr "Sconosciuto" -#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Storage/Browser.php:225 ../../Zotlabs/Module/Fbrowser.php:85 #: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1679 msgid "Files" msgstr "Archivio file" -#: ../../Zotlabs/Storage/Browser.php:227 +#: ../../Zotlabs/Storage/Browser.php:226 msgid "Total" msgstr "Totale" -#: ../../Zotlabs/Storage/Browser.php:229 +#: ../../Zotlabs/Storage/Browser.php:228 msgid "Shared" msgstr "Condiviso" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:321 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 +#: ../../Zotlabs/Module/Webpages.php:239 msgid "Create" msgstr "Crea" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1696 msgid "Upload" msgstr "Carica" -#: ../../Zotlabs/Storage/Browser.php:235 +#: ../../Zotlabs/Storage/Browser.php:234 #: ../../Zotlabs/Module/Admin/Channels.php:163 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 #: ../../Zotlabs/Module/Settings/Oauth.php:89 @@ -242,153 +242,154 @@ msgstr "Carica" msgid "Name" msgstr "Nome" -#: ../../Zotlabs/Storage/Browser.php:236 +#: ../../Zotlabs/Storage/Browser.php:235 msgid "Type" msgstr "Tipo" -#: ../../Zotlabs/Storage/Browser.php:237 +#: ../../Zotlabs/Storage/Browser.php:236 #: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "Dimensione" -#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../Zotlabs/Storage/Browser.php:237 #: ../../Zotlabs/Module/Sharedwithme.php:102 msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Storage/Browser.php:239 #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../Zotlabs/Lib/Apps.php:341 +#: ../../include/channel.php:959 ../../include/channel.php:963 +#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 +#: ../../include/menu.php:113 msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:153 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Connedit.php:607 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 #: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Photos.php:1179 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../Zotlabs/Lib/Apps.php:342 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "Elimina" -#: ../../Zotlabs/Storage/Browser.php:301 +#: ../../Zotlabs/Storage/Browser.php:299 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Stai usando %1$s dello spazio disponibile per i tuoi file." -#: ../../Zotlabs/Storage/Browser.php:306 +#: ../../Zotlabs/Storage/Browser.php:304 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Stai usando %1$s di %2$s che hai a disposizione per i file. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:317 +#: ../../Zotlabs/Storage/Browser.php:315 msgid "WARNING:" msgstr "ATTENZIONE:" -#: ../../Zotlabs/Storage/Browser.php:322 +#: ../../Zotlabs/Storage/Browser.php:320 msgid "Create new folder" msgstr "Nuova cartella" -#: ../../Zotlabs/Storage/Browser.php:324 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Upload file" msgstr "Carica un file" -#: ../../Zotlabs/Storage/Browser.php:337 +#: ../../Zotlabs/Storage/Browser.php:335 msgid "Drop files here to immediately upload" msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 #: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:229 ../../Zotlabs/Module/Channel.php:270 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Mail.php:121 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Settings.php:59 -#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Group.php:13 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 -#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29 -#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Events.php:264 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1068 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Photos.php:73 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/items.php:3496 +#: ../../include/photos.php:27 ../../include/items.php:3506 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 #: ../../include/attach.php:353 ../../include/attach.php:360 -#: ../../include/attach.php:440 ../../include/attach.php:902 -#: ../../include/attach.php:973 ../../include/attach.php:1125 +#: ../../include/attach.php:440 ../../include/attach.php:909 +#: ../../include/attach.php:980 ../../include/attach.php:1132 msgid "Permission denied." msgstr "Permesso negato." -#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:53 +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:56 msgid "Not Found" msgstr "Non disponibile" #: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 -#: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 -#: ../../include/help.php:56 +#: ../../Zotlabs/Module/Block.php:79 ../../Zotlabs/Module/Display.php:120 +#: ../../include/help.php:59 msgid "Page not found." msgstr "Pagina non trovata." -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:66 #: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 #: ../../include/items.php:403 @@ -411,9 +412,9 @@ msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 #: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "Il profilo richiesto non è disponibile." @@ -429,216 +430,210 @@ msgstr "Assente" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Messaggio non valido" - -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "nessun risultato" - -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." +msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Post e commenti" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo post" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Import.php:548 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +"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 "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Register.php:227 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Register.php:229 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" - -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" - -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." - -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" - -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" -msgstr "no" - -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" -msgstr "sì" - -#: ../../Zotlabs/Module/Register.php:253 -#: ../../Zotlabs/Module/Admin/Site.php:268 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:74 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Setup.php:317 +#: ../../Zotlabs/Module/Setup.php:365 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:484 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:725 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Salva" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1721 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Register.php:271 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" #: ../../Zotlabs/Module/Admin/Accounts.php:36 #, php-format @@ -687,47 +682,10 @@ msgid "Administration" msgstr "Amministrazione" #: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1561 msgid "Accounts" msgstr "Account" -#: ../../Zotlabs/Module/Admin/Accounts.php:167 -#: ../../Zotlabs/Module/Admin/Channels.php:151 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Plugins.php:429 -#: ../../Zotlabs/Module/Admin/Profs.php:157 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Admin/Site.php:267 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Module/Settings/Account.php:126 -#: ../../Zotlabs/Module/Settings/Channel.php:452 -#: ../../Zotlabs/Module/Settings/Display.php:194 -#: ../../Zotlabs/Module/Settings/Features.php:47 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 -#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" -msgstr "Salva" - #: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Channels.php:152 msgid "select all" @@ -742,7 +700,7 @@ msgid "Request date" msgstr "Data richiesta" #: ../../Zotlabs/Module/Admin/Accounts.php:170 -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2212 msgid "Email" msgstr "Email" @@ -855,7 +813,7 @@ msgstr "Il canale '%s' permette codice nei contenuti" msgid "Channel '%s' code disallowed" msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1562 msgid "Channels" msgstr "Canali" @@ -876,7 +834,7 @@ msgid "Disallow Code" msgstr "Non permettere codice" #: ../../Zotlabs/Module/Admin/Channels.php:158 -#: ../../include/conversation.php:1650 +#: ../../include/conversation.php:1651 msgid "Channel" msgstr "Canale" @@ -966,8 +924,8 @@ msgstr "Funzionalità opzionali" msgid "Log settings updated." msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 -#: ../../include/widgets.php:1593 +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1587 +#: ../../include/widgets.php:1597 msgid "Logs" msgstr "Log" @@ -995,9 +953,9 @@ msgstr "Livello di log" #: ../../Zotlabs/Module/Admin/Plugins.php:254 #: ../../Zotlabs/Module/Admin/Themes.php:69 -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24 -#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417 +#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:40 +#: ../../Zotlabs/Module/Admin.php:62 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3427 msgid "Item not found." msgstr "Elemento non trovato." @@ -1022,7 +980,7 @@ msgid "Enable" msgstr "Attiva" #: ../../Zotlabs/Module/Admin/Plugins.php:337 -#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1565 msgid "Plugins" msgstr "Plugin" @@ -1061,7 +1019,7 @@ msgstr "Minima versione PHP:" #: ../../Zotlabs/Module/Admin/Plugins.php:351 msgid "Compatible Server Roles: " -msgstr "Ruoli compatibili per questo server" +msgstr "Ruoli previsti per questo server" #: ../../Zotlabs/Module/Admin/Plugins.php:352 msgid "Requires: " @@ -1106,7 +1064,7 @@ msgstr "Installa" #: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +#: ../../include/conversation.php:1248 ../../include/conversation.php:1297 msgid "Cancel" msgstr "Annulla" @@ -1133,7 +1091,7 @@ msgid "Switch branch" msgstr "Cambia branch" #: ../../Zotlabs/Module/Admin/Plugins.php:445 -#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989 +#: ../../Zotlabs/Module/Photos.php:989 ../../Zotlabs/Module/Tagrm.php:137 msgid "Remove" msgstr "Rimuovi" @@ -1192,7 +1150,7 @@ msgstr "Impossibile trovare la definizione del campo" msgid "Edit Profile Field" msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1568 msgid "Profile Fields" msgstr "Campi del profilo" @@ -1272,7 +1230,7 @@ msgid "" "embedded content from that site is explicitly blocked." msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." -#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1563 msgid "Security" msgstr "Sicurezza" @@ -1381,15 +1339,16 @@ msgstr "sperimentale" msgid "unsupported" msgstr "non supportato" -#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Admin/Site.php:221 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 #: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 ../../Zotlabs/Module/Events.php:462 #: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 #: ../../Zotlabs/Module/Settings/Channel.php:289 #: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 @@ -1402,15 +1361,16 @@ msgstr "No" msgid "Yes - with approval" msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Admin/Site.php:223 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Api.php:84 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 #: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 ../../Zotlabs/Module/Events.php:462 #: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Photos.php:653 #: ../../Zotlabs/Module/Settings/Channel.php:289 #: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 @@ -1475,12 +1435,17 @@ msgstr "Esperto - posso scrivere codice" #: ../../Zotlabs/Module/Admin/Site.php:254 #: ../../Zotlabs/Module/Settings/Account.php:110 msgid "Wizard - I probably know more than you do" -msgstr "Genio - probabilmente ne so più di te" +msgstr "Genio - probabilmente ne so più di te!" -#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1560 msgid "Site" msgstr "Sito" +#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Register.php:253 +msgid "Registration" +msgstr "Registrazione" + #: ../../Zotlabs/Module/Admin/Site.php:269 msgid "File upload" msgstr "Caricamento file" @@ -1772,7 +1737,7 @@ msgid "Screenshot" msgstr "Istantanea dello schermo" #: ../../Zotlabs/Module/Admin/Themes.php:121 -#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1566 msgid "Themes" msgstr "Temi" @@ -1784,298 +1749,156 @@ msgstr "[Sperimentale]" msgid "[Unsupported]" msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1672 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." -#: ../../Zotlabs/Module/Import.php:548 -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 "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1184 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "A:" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" - -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." - -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Photos.php:509 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." - -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" - -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" - -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 -#: ../../include/channel.php:1049 -msgid "Location:" -msgstr "Luogo:" - -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" - -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" - -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 -#: ../../include/connections.php:78 ../../include/conversation.php:957 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" -msgstr "Aggiungi" - -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" - -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" - -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" - -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" - -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" - -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" - -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" - -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" - -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" - -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" - -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" - -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" - -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" - -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" - -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" - -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." - -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1244 +msgid "Attach file" +msgstr "Allega file" -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1149 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Invia" -#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1289 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:737 +#: ../../include/conversation.php:1294 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Sito web:" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:95 ../../include/conversation.php:1671 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" #: ../../Zotlabs/Module/Connections.php:56 #: ../../Zotlabs/Module/Connections.php:161 @@ -2103,7 +1926,7 @@ msgstr "Archiviati" #: ../../Zotlabs/Module/Connections.php:76 #: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1572 +#: ../../include/conversation.php:1573 msgid "New" msgstr "Novità" @@ -2188,8 +2011,8 @@ msgid "Ignore connection" msgstr "Ignora il contatto" #: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 #: ../../Zotlabs/Module/Connedit.php:583 +#: ../../Zotlabs/Module/Notifications.php:55 msgid "Ignore" msgstr "Ignora" @@ -2198,14 +2021,14 @@ msgid "Recent activity" msgstr "Attività recenti" #: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:191 ../../include/text.php:901 +#: ../../include/text.php:901 ../../include/nav.php:191 msgid "Connections" msgstr "Contatti" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 -#: ../../include/acl_selectors.php:174 ../../include/text.php:971 -#: ../../include/text.php:983 ../../include/widgets.php:315 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:170 ../../include/widgets.php:315 msgid "Search" msgstr "Cerca" @@ -2217,6 +2040,12 @@ msgstr "Cerca tra i contatti" msgid "Connections search" msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" + #: ../../Zotlabs/Module/Cover_photo.php:58 #: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." @@ -2247,25 +2076,25 @@ msgstr "Il caricamento dell'immagine è fallito." msgid "Unable to process image." msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4341 msgid "female" msgstr "femmina" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4342 #, php-format msgid "%1$s updated her %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4343 msgid "male" msgstr "maschio" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4344 #, php-format msgid "%1$s updated his %2$s" msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4346 #, php-format msgid "%1$s updated their %2$s" msgstr "Aggiornamento: %2$s di %1$s" @@ -2326,363 +2155,631 @@ msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." msgid "Done Editing" msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ha come nuovo contatto" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:953 +msgid "View Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivia" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Non nascondere" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Nascondi" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "Me" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "Famiglia" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Amici" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "--" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3993 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Connedit.php:762 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "derivato" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "Permessi concessi a te" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "Permessi che concedo" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "Permessi individuali" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1243 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1288 -msgid "Set expiration date" -msgstr "Data di scadenza" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1260 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 -#: ../../include/conversation.php:1293 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Help.php:27 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Help.php:57 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" +msgstr "Menù" + +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Elimina" + +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:251 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creato" + +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modificato" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." + +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" + +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" + +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" + +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" + +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" + +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" + +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:257 +msgid "Required" +msgstr "Obbligatorio" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../Zotlabs/Module/Events.php:465 +msgid "Description" +msgstr "Descrizione" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" +msgstr "Hub pubblici" + +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:958 +msgid "Ratings" +msgstr "Valutazioni" + +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "Valuta" + +#: ../../Zotlabs/Module/Pubsites.php:51 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" + +#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Webpages.php:246 +#: ../../Zotlabs/Module/Events.php:680 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Guarda" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizza la app" + +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" + +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." + +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" + +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" + +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" + +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." + +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Guida al layout" #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 #: ../../Zotlabs/Module/Siteinfo.php:48 @@ -2714,10 +2811,10 @@ msgstr "File non trovato." msgid "Edit file permissions" msgstr "Modifica i permessi del file" -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 -#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 -#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 -#: ../../include/acl_selectors.php:179 +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:658 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 msgid "Permissions" msgstr "Permessi" @@ -2753,10 +2850,6 @@ msgstr "Mostra l'URL del file" msgid "Notify your contacts about this file" msgstr "Notifica ai contatti che hai caricato questo file" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." - #: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 msgid "Continue" msgstr "Continua" @@ -2800,16 +2893,66 @@ msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" msgid "Restricted or Premium Channel" msgstr "Canale premium - con restrizioni" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." + +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" + +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crea nuova" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Gestione canali" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" + +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" + +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" + +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." #: ../../Zotlabs/Module/Group.php:30 msgid "Could not create privacy group." msgstr "Impossibile creare il gruppo di canali." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3950 +#: ../../include/items.php:3960 msgid "Privacy group not found." msgstr "Gruppo di canali non trovato." @@ -2853,76 +2996,70 @@ msgstr "Tutti i canali connessi" msgid "Click on a channel to add or remove." msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" -msgstr "Importa gli elementi della pagina web" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" -msgstr "Importa i selezionati" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "nessun risultato" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" -msgstr "Esporta gli elementi della pagina web" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" -msgstr "Esporta i selezionati" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:109 ../../include/conversation.php:1724 -msgid "Webpages" -msgstr "Pagine web" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "inviato" -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 -#: ../../include/conversation.php:1231 -msgid "Share" -msgstr "Condividi" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aggiornato" -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 -msgid "Preview" -msgstr "Anteprima" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Titolo della pagina" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "Tipo di file non valido." +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Errore nell'apertura del file zip" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "La cartella indicata non è valida." +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "Nella pagina web non sono presenti elementi." +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opzioni" -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "Importazione completata." +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Reinvia" #: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 msgid "webpage" @@ -3055,12 +3192,6 @@ msgstr "Nessun indirizzo trovato." msgid "Manage Channel Locations" msgstr "Modifica gli indirizzi del canale" -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" - #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" msgstr "Primario" @@ -3083,33 +3214,22 @@ msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando i msgid "Use this form to drop the location if the hub is no longer operating." msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" - -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" -msgstr "Canale sconosciuto" - -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" -msgstr "Cerca risultati con:" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sito web:" -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " -msgstr "Gruppo di canali:" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." -msgstr "Contatto non valido." +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" @@ -3147,19 +3267,19 @@ msgid "Previous action reversed." msgstr "Il comando precedente è stato annullato." #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1991 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1991 +#: ../../include/conversation.php:120 msgid "photo" msgstr "la foto" #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1997 +#: ../../include/text.php:1997 ../../include/conversation.php:148 msgid "status" msgstr "il messaggio di stato" #: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 -#: ../../include/conversation.php:123 ../../include/text.php:1994 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1994 +#: ../../include/conversation.php:123 ../../include/event.php:961 msgid "event" msgstr "l'evento" @@ -3211,57 +3331,283 @@ msgstr "Comando completato." msgid "Thank you." msgstr "Grazie." -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profilo-" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:211 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Mitem.php:52 +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Lavoro/impiego" + +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religione" + +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Orientamento politico" + +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sesso" + +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" + +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Home page" + +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interessi" + +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilo aggiornato." + +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" + +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Guarda questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Cambia la visibilità" + +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestione del profilo" + +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" + +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" + +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" + +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clona questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Elimina questo profilo" + +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" + +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1564 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Personali" + +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relazione" + +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:55 +msgid "Miscellaneous" +msgstr "Altro" + +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" + +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" + +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Sesso" + +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Stato civile" + +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferenze sessuali" + +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nome del profilo" + +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." + +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Il tuo nome completo" + +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titolo/descrizione" + +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" + +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Località" + +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Regione/stato" + +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "CAP" + +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Nazione" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" + +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" + +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "dal (data)" + +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." + +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Indirizzo home page" + +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Città dove vivo" + +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Orientamento politico" + +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Orientamento religioso" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" + +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" + +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Interessi musicali" + +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libri, letteratura" + +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisione" + +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" + +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" + +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Amore" + +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Scuola/educazione" + +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contatti e social network" + +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "I miei altri canali" + +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Immagine del profilo" + +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:91 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" + +#: ../../Zotlabs/Module/Mitem.php:52 msgid "Unable to create element." msgstr "Impossibile creare l'elemento." @@ -3378,1127 +3724,1035 @@ msgstr "Modifica l'elemento del menù" msgid "Link text" msgstr "Testo del link" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +#: ../../Zotlabs/Module/Setup.php:192 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../Zotlabs/Module/Lostpass.php:67 +#: ../../Zotlabs/Module/Setup.php:208 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 -msgid "Password Reset" -msgstr "Reimposta la password" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:949 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +msgid "Next" +msgstr "Successivo" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../Zotlabs/Module/Lostpass.php:95 +#: ../../Zotlabs/Module/Setup.php:296 msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../Zotlabs/Module/Lostpass.php:128 +#: ../../Zotlabs/Module/Setup.php:298 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Port del database" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Password database" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Nome database" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profilo-" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Tipo database" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Stato sentimentale" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partner affettivo" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Impostazioni del hub" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "Versione PHP" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Lavoro/impiego" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religione" +#: ../../Zotlabs/Module/Setup.php:417 +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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Home page" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessi" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" +#: ../../Zotlabs/Module/Setup.php:457 +#, 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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" - -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Guarda questo profilo" - -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Cambia la visibilità" - -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestione del profilo" - -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" - -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" - -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" - -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clona questo profilo" - -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina questo profilo" - -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" - -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personali" - -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relazione" - -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Altro" - -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" - -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" - -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Sesso" - -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Stato civile" - -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferenze sessuali" - -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nome del profilo" - -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." - -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Il tuo nome completo" - -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titolo/descrizione" - -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" - -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Località" - -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Regione/stato" - -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "CAP" - -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Nazione" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Con chi (se possibile)" - -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" - -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "dal (data)" - -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." - -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Città dove vivo" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Orientamento religioso" +#: ../../Zotlabs/Module/Setup.php:488 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisione" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amore" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Scuola/educazione" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contatti e social network" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 -#: ../../include/channel.php:959 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Api.php:83 +#: ../../Zotlabs/Module/Setup.php:584 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" -msgstr "Titolo dell'evento" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" +#: ../../Zotlabs/Module/Setup.php:644 +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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" -msgstr "Modifica la categoria" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" -msgstr "Categoria" +#: ../../Zotlabs/Module/Setup.php:646 +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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" -msgstr "Data e ora di inizio" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" -msgstr "La data e l'ora di fine non sono necessarie" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" -msgstr "Data e ora di fine" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" -#: ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Setup.php:671 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." - -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" -msgstr "Modifica la descrizione" +"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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" -msgstr "Modifica il luogo" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" -msgstr "Opzioni avanzate" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" -msgstr "Elimina l'evento" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1762 -msgid "Link to Source" -msgstr "Link al sito d'origine" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crea un evento" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Previous" -msgstr "Precendente" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 -#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 -msgid "Next" -msgstr "Successivo" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Esporta" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" -msgstr "Mese" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Settimana" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Giorno" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Oggi" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Evento eliminato" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Umore" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "WARNING: " +msgstr "ATTENZIONE:" -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Questo canale sarà completamente eliminato dalla rete." -#: ../../Zotlabs/Module/Item.php:1119 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Questo comando è definitivo e non può essere annullato!" -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" -#: ../../Zotlabs/Module/New_channel.php:141 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../Zotlabs/Module/Match.php:68 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:955 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" -msgstr "Poke" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:728 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" +#: ../../Zotlabs/Module/Photos.php:133 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " -#: ../../Zotlabs/Module/Setup.php:184 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Setup.php:188 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Photos.php:509 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Directory.php:63 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Setup.php:192 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Photos.php:608 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../Zotlabs/Module/Setup.php:208 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:734 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" + +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1677 +msgid "View Photo" +msgstr "Guarda la foto" + +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1694 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Photos.php:940 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 +msgid "Previous" +msgstr "Precendente" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" -msgstr "Impostazioni del hub" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" +msgstr "Sposta la foto in un album" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Setup.php:416 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Setup.php:417 -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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:268 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:269 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Setup.php:436 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:241 +#: ../../include/conversation.php:1232 +msgid "Share" +msgstr "Condividi" -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:405 +#: ../../include/conversation.php:741 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Setup.php:457 -#, 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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:722 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Setup.php:462 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:724 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:247 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:734 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1201 +msgid "Preview" +msgstr "Anteprima" -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Setup.php:488 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Lib/ThreadItem.php:198 +#: ../../include/conversation.php:1763 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/channel.php:1182 ../../include/conversation.php:1787 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:195 +#: ../../include/conversation.php:1790 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mappa" + +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:394 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:395 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:400 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Setup.php:566 +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +#, php-format msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." -msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" +msgstr "Crea un canale" -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +#: ../../Zotlabs/Module/New_channel.php:141 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." -#: ../../Zotlabs/Module/Setup.php:587 -#, php-format +#: ../../Zotlabs/Module/New_channel.php:142 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 bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." - -#: ../../Zotlabs/Module/Setup.php:590 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." -#: ../../Zotlabs/Module/Setup.php:606 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Setup.php:644 -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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../Zotlabs/Module/Setup.php:646 -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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:959 +msgid "Poke" +msgstr "Poke" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" -#: ../../Zotlabs/Module/Setup.php:671 -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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" -#: ../../Zotlabs/Module/Setup.php:733 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "App" #: ../../Zotlabs/Module/Oexchange.php:27 msgid "Unable to find your hub." @@ -4538,15 +4792,10 @@ msgstr "Editor di configurazione" #: ../../Zotlabs/Module/Pconfig.php:49 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." - -#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "App" +"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 "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." #: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format @@ -4620,8 +4869,8 @@ msgid "Layouts" msgstr "Layout" #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:164 ../../include/help.php:44 -#: ../../include/help.php:49 +#: ../../include/help.php:47 ../../include/help.php:52 +#: ../../include/nav.php:164 msgid "Help" msgstr "Guida" @@ -4637,402 +4886,250 @@ msgstr "Descrizione del layout" msgid "Download PDL file" msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" - -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." - -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 -msgid "Import" -msgstr "Importa" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Nessun contatto in comune." - -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "rete" - -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" - -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 -msgid "Public Hubs" -msgstr "Hub pubblici" - -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL del hub" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo di accesso" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politica di registrazione" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiche" - -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" - -#: ../../Zotlabs/Module/Pubsites.php:48 -msgid "Rate" -msgstr "Valuta" - -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Layout aggiornato." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." - -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" - -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." -msgstr "Layout non trovato." - -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" -msgstr "Nome del modulo:" - -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" -msgstr "Guida al layout" - -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." - -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." - -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Contatto aggiornato." - -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." - -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "ha come nuovo contatto" - -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." - -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." - -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." - -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." - -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:89 ../../include/conversation.php:955 -msgid "View Profile" -msgstr "Profilo" - -#: ../../Zotlabs/Module/Connedit.php:557 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" -msgstr "Archivia" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" -msgstr "Nascondi" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" -msgstr "Elimina questo contatto" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" -msgstr "Me" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" -msgstr "Famiglia" +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:597 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Connedit.php:627 -#: ../../Zotlabs/Module/Settings/Channel.php:61 -#: ../../Zotlabs/Module/Settings/Channel.php:65 -#: ../../Zotlabs/Module/Settings/Channel.php:66 -#: ../../Zotlabs/Module/Settings/Channel.php:69 -#: ../../Zotlabs/Module/Settings/Channel.php:80 -#: ../../include/selectors.php:123 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/widgets.php:531 -msgid "Friends" -msgstr "Amici" +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:646 +#: ../../include/text.php:1762 +msgid "Link to Source" +msgstr "Link al sito d'origine" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 +msgid "Edit Event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 +msgid "Create Event" +msgstr "Crea un evento" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:677 +msgid "Export" +msgstr "Esporta" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" -msgstr "Scegli l'affinità" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" +msgstr "Importa" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:686 +msgid "Today" +msgstr "Oggi" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" -msgstr "--" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" -msgstr "Le richieste di entrare in contatto saranno approvate in automatico" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" -msgstr "Indirizzo primario di questo canale" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" -msgstr "Indirizzi disponibili" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Register.php:55 msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" -msgstr "Gestione dei contatti" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" -msgstr "Commento facoltativo" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" -msgstr "Filtro personalizzato" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono queste parole chiave" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." + +#: ../../Zotlabs/Module/Register.php:204 msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" -msgstr "Non importare i post con queste parole chiave" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" -#: ../../Zotlabs/Module/Connedit.php:778 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../Zotlabs/Module/Connedit.php:782 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../Zotlabs/Module/Connedit.php:783 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../Zotlabs/Module/Connedit.php:785 -#: ../../Zotlabs/Module/Settings/Tokens.php:165 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Connedit.php:786 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Connedit.php:787 +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." + +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" +msgstr "Registrati" + +#: ../../Zotlabs/Module/Register.php:271 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "Ricerca nella guida" + +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" #: ../../Zotlabs/Module/Rbmark.php:94 msgid "Select a bookmark folder" @@ -5050,10 +5147,6 @@ msgstr "URL del segnalibro" msgid "Or enter new bookmark folder name" msgstr "O inserisci il nome di una nuova cartella di segnalibri" -#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" - #: ../../Zotlabs/Module/Rmagic.php:35 msgid "Authentication failed." msgstr "Autenticazione fallita." @@ -5084,27 +5177,12 @@ msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo ca msgid "Remove This Account" msgstr "Elimina questo account" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATTENZIONE:" - #: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" - -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" - #: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " @@ -5122,34 +5200,58 @@ msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su q msgid "Remove Account" msgstr "Elimina l'account" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" +msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" +msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Esporta gli elementi della pagina web" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Esporta i selezionati" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1725 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:544 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Azioni" + +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Link alla pagina" + +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Titolo della pagina" + +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Tipo di file non valido." + +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Errore nell'apertura del file zip" + +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "La cartella indicata non è valida." + +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Nella pagina web non sono presenti elementi." + +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Importazione completata." #: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 msgid "Export Channel" @@ -5223,22 +5325,132 @@ msgstr "Elementi taggati con: %s" msgid "Search results for: %s" msgstr "Risultati ricerca: %s" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Le voci del calendario sono state importate." -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Non sono state trovate voci del calendario." -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." + +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." + +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento non trovato." + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" + +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Titolo dell'evento" + +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Modifica la categoria" + +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" + +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Data e ora di inizio" + +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "La data e l'ora di fine non sono necessarie" + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" + +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Data e ora di fine" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." + +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Modifica la descrizione" + +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Modifica il luogo" + +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Condividi questo evento" + +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1264 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" + +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Opzioni avanzate" + +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Elimina l'evento" + +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Mese" + +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Settimana" + +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Giorno" + +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento eliminato" + +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" #: ../../Zotlabs/Module/Service_limits.php:23 msgid "No service class restrictions found." @@ -5301,9 +5513,39 @@ msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" msgid "Add Thing to your Profile" msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." + +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." + +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." + +#: ../../Zotlabs/Module/Item.php:851 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." + +#: ../../Zotlabs/Module/Item.php:986 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." + +#: ../../Zotlabs/Module/Item.php:1107 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." + +#: ../../Zotlabs/Module/Item.php:1114 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." + +#: ../../Zotlabs/Module/Item.php:1121 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." #: ../../Zotlabs/Module/Sharedwithme.php:98 msgid "Files: shared with me" @@ -5326,8 +5568,8 @@ msgid "Not found" msgstr "Non trovato" #: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:111 ../../include/conversation.php:1734 -#: ../../include/conversation.php:1737 ../../include/features.php:57 +#: ../../include/features.php:99 ../../include/nav.php:111 +#: ../../include/conversation.php:1735 ../../include/conversation.php:1738 msgid "Wiki" msgstr "Wiki" @@ -5361,443 +5603,171 @@ msgstr "Nome della tua nuova pagina:" msgid "Enter the new name:" msgstr "Nuovo nome:" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1153 msgid "Embed image from photo albums" msgstr "Inserisci un'immagine dall'album foto" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1247 msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" - -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 -#: ../../include/conversation.php:1295 -msgid "OK" -msgstr "OK" - -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" - -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 -msgid "Choose an album" -msgstr "Scegli un album" - -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." - -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" - -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" - -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" - -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." - -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." - -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." - -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" - -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 -#: ../../include/features.php:70 -msgid "Channel Sources" -msgstr "Sorgenti del canale" - -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." - -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" - -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" - -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" - -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" - -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -msgid "Optional" -msgstr "Facoltativo" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" - -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" - -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" - -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." - -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" - -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s non segue più %3$s di %2$s" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1999 -msgid "comment" -msgstr "il commento" - -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " - -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 -msgid "Album not found." -msgstr "Album non trovato." - -#: ../../Zotlabs/Module/Photos.php:112 -msgid "Delete Album" -msgstr "Elimina album" - -#: ../../Zotlabs/Module/Photos.php:133 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " - -#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" - -#: ../../Zotlabs/Module/Photos.php:520 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" - -#: ../../Zotlabs/Module/Photos.php:569 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." - -#: ../../Zotlabs/Module/Photos.php:608 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." - -#: ../../Zotlabs/Module/Photos.php:611 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." - -#: ../../Zotlabs/Module/Photos.php:647 -msgid "Upload Photos" -msgstr "Carica foto" - -#: ../../Zotlabs/Module/Photos.php:651 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" - -#: ../../Zotlabs/Module/Photos.php:652 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" - -#: ../../Zotlabs/Module/Photos.php:653 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" - -#: ../../Zotlabs/Module/Photos.php:654 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" - -#: ../../Zotlabs/Module/Photos.php:655 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" - -#: ../../Zotlabs/Module/Photos.php:686 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" - -#: ../../Zotlabs/Module/Photos.php:734 -msgid "Contact Photos" -msgstr "Foto dei contatti" - -#: ../../Zotlabs/Module/Photos.php:757 -msgid "Show Newest First" -msgstr "Prima i più recenti" - -#: ../../Zotlabs/Module/Photos.php:759 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" - -#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 -msgid "View Photo" -msgstr "Guarda la foto" - -#: ../../Zotlabs/Module/Photos.php:814 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 -msgid "Edit Album" -msgstr "Modifica album" - -#: ../../Zotlabs/Module/Photos.php:861 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." - -#: ../../Zotlabs/Module/Photos.php:863 -msgid "Photo not available" -msgstr "Foto non disponibile" - -#: ../../Zotlabs/Module/Photos.php:921 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" - -#: ../../Zotlabs/Module/Photos.php:922 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +msgstr "Inserisci un'immagine dai tuoi album" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1249 +#: ../../include/conversation.php:1296 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Photos.php:944 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1189 +msgid "Choose images to embed" +msgstr "Scegli le immagini da inserire" -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1190 +msgid "Choose an album" +msgstr "Scegli un album" -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1191 +msgid "Choose a different album..." +msgstr "Scegli un altro album..." -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1192 +msgid "Error getting album list" +msgstr "Errore nell'ottenere l'elenco degli album" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Move photo to album" -msgstr "Sposta la foto in un album" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1193 +msgid "Error getting photo link" +msgstr "Errore nell'ottenere il link alla foto" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1194 +msgid "Error getting album" +msgstr "Errore nell'ottenere l'album" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:195 +#: ../../include/widgets.php:672 +msgid "Channel Sources" +msgstr "Sorgenti del canale" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:709 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" +msgstr "Facoltativo" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1762 -msgid "View all" -msgstr "Vedi tutto" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1786 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Suggest.php:64 ../../Zotlabs/Module/Directory.php:392 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "il post" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1999 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "il commento" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " #: ../../Zotlabs/Module/Follow.php:34 msgid "Channel added." @@ -5877,77 +5847,110 @@ msgstr "min" msgid "Xchan Lookup" msgstr "Ricerca canale" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" + +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" + +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" + +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" + +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" + +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Età:" + +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Admin.php:98 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Admin.php:99 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Admin.php:100 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Admin.php:111 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Admin.php:112 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Admin.php:113 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Contatti in comune:" -#: ../../Zotlabs/Module/Admin.php:119 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Admin.php:151 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" + +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." #: ../../Zotlabs/Module/Settings/Account.php:20 msgid "Not valid email." @@ -6628,210 +6631,386 @@ msgstr "Chat non trovata." msgid "Room is full" msgstr "La chat è al completo" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1889 msgid "$Projectname Notification" msgstr "Notifica $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1890 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1892 msgid "Thank You," msgstr "Grazie," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1894 #, php-format msgid "%s Administrator" msgstr "L'amministratore di %s" -#: ../../Zotlabs/Lib/Enotify.php:100 +#: ../../Zotlabs/Lib/Enotify.php:103 #, php-format msgid "%s " msgstr "%s " -#: ../../Zotlabs/Lib/Enotify.php:104 +#: ../../Zotlabs/Lib/Enotify.php:107 #, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla] Nuovo messaggio su %s" +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Notifica] Nuovo messaggio su %s" -#: ../../Zotlabs/Lib/Enotify.php:106 +#: ../../Zotlabs/Lib/Enotify.php:109 #, php-format msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Lib/Enotify.php:110 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s ti ha mandato %2$s." -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Lib/Enotify.php:110 msgid "a private message" msgstr "un messaggio privato" -#: ../../Zotlabs/Lib/Enotify.php:108 +#: ../../Zotlabs/Lib/Enotify.php:111 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." -#: ../../Zotlabs/Lib/Enotify.php:164 +#: ../../Zotlabs/Lib/Enotify.php:170 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:172 +#: ../../Zotlabs/Lib/Enotify.php:178 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" +#: ../../Zotlabs/Lib/Enotify.php:187 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:198 +#, php-format +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notifica] Nuovo commento di %2$s alla conversazione #%1$d" + +#: ../../Zotlabs/Lib/Enotify.php:199 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." + +#: ../../Zotlabs/Lib/Enotify.php:202 ../../Zotlabs/Lib/Enotify.php:217 +#: ../../Zotlabs/Lib/Enotify.php:243 ../../Zotlabs/Lib/Enotify.php:261 +#: ../../Zotlabs/Lib/Enotify.php:275 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." + +#: ../../Zotlabs/Lib/Enotify.php:208 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Notifica] %s ha scritto sulla tua bacheca" + +#: ../../Zotlabs/Lib/Enotify.php:210 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:212 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:236 +#, php-format +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Notifica] %s ti ha taggato" + +#: ../../Zotlabs/Lib/Enotify.php:237 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s ti ha taggato su %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:238 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:250 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Notifica] %1$s ti ha mandato un poke" + +#: ../../Zotlabs/Lib/Enotify.php:251 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:252 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." + +#: ../../Zotlabs/Lib/Enotify.php:268 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Notifica] %s ha taggato il tuo post" + +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:270 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" + +#: ../../Zotlabs/Lib/Enotify.php:282 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Notifica] Hai una richiesta di amicizia" + +#: ../../Zotlabs/Lib/Enotify.php:283 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:288 ../../Zotlabs/Lib/Enotify.php:307 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" + +#: ../../Zotlabs/Lib/Enotify.php:290 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." + +#: ../../Zotlabs/Lib/Enotify.php:297 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Notifica] Ti è stato suggerito un amico" + +#: ../../Zotlabs/Lib/Enotify.php:298 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" + +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." + +#: ../../Zotlabs/Lib/Enotify.php:305 +msgid "Name:" +msgstr "Nome:" + +#: ../../Zotlabs/Lib/Enotify.php:306 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:309 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." + +#: ../../Zotlabs/Lib/Enotify.php:527 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Notifica]" + +#: ../../Zotlabs/Lib/Enotify.php:687 +msgid "created a new post" +msgstr "Ha creato un nuovo post" + +#: ../../Zotlabs/Lib/Enotify.php:688 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato il post di %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "Scegli" + +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Salva nella cartella" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Parteciperò" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Non parteciperò" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Forse parteciperò" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Sono d'accordo" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Non sono d'accordo" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Mi astengo" + +#: ../../Zotlabs/Lib/ThreadItem.php:223 +msgid "Add Star" +msgstr "Aggiungi ai preferiti" + +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "Remove Star" +msgstr "Rimuovi dai preferiti" -#: ../../Zotlabs/Lib/Enotify.php:192 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" +#: ../../Zotlabs/Lib/ThreadItem.php:225 +msgid "Toggle Star Status" +msgstr "Attiva/disattiva preferito" -#: ../../Zotlabs/Lib/Enotify.php:193 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." +#: ../../Zotlabs/Lib/ThreadItem.php:229 +msgid "starred" +msgstr "preferito" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." +#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:674 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" +#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:248 +msgid "Add Tag" +msgstr "Aggiungi un tag" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:316 +msgid "like" +msgstr "mi piace" -#: ../../Zotlabs/Lib/Enotify.php:230 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla] %s ti ha taggato" +#: ../../Zotlabs/Lib/ThreadItem.php:269 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "non mi piace" -#: ../../Zotlabs/Lib/Enotify.php:231 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:273 +msgid "Share This" +msgstr "Condividi" -#: ../../Zotlabs/Lib/Enotify.php:232 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." +#: ../../Zotlabs/Lib/ThreadItem.php:273 +msgid "share" +msgstr "condividi" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla] %1$s ti ha mandato un poke" +#: ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "Delivery Report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Lib/Enotify.php:245 +#: ../../Zotlabs/Lib/ThreadItem.php:300 #, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../Zotlabs/Lib/Enotify.php:246 +#: ../../Zotlabs/Lib/ThreadItem.php:329 ../../Zotlabs/Lib/ThreadItem.php:330 #, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../Zotlabs/Lib/Enotify.php:262 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla] %s ha taggato il tuo post" +#: ../../Zotlabs/Lib/ThreadItem.php:333 +msgid "to" +msgstr "a" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:334 +msgid "via" +msgstr "via" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:335 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla] Hai una richiesta di amicizia" +#: ../../Zotlabs/Lib/ThreadItem.php:336 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" -#: ../../Zotlabs/Lib/Enotify.php:277 +#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:720 #, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" +msgid "from %s" +msgstr "da %s" -#: ../../Zotlabs/Lib/Enotify.php:278 +#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:723 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." +msgid "last edited: %s" +msgstr "ultima modifica: %s" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:724 #, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" +msgid "Expires: %s" +msgstr "Scadenza: %s" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Save Bookmarks" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla] Ti è stato suggerito un amico" +#: ../../Zotlabs/Lib/ThreadItem.php:378 +msgid "Add to Calendar" +msgstr "Aggiungi al calendario" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:387 +msgid "Mark all seen" +msgstr "Marca tutto come letto" -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../Zotlabs/Lib/ThreadItem.php:436 ../../include/js_strings.php:7 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." +msgid "%s show all" +msgstr "%s mostra tutto" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Nome:" +#: ../../Zotlabs/Lib/ThreadItem.php:726 ../../include/conversation.php:1239 +msgid "Bold" +msgstr "Grassetto" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Lib/ThreadItem.php:727 ../../include/conversation.php:1240 +msgid "Italic" +msgstr "Corsivo" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: ../../Zotlabs/Lib/ThreadItem.php:728 ../../include/conversation.php:1241 +msgid "Underline" +msgstr "Sottolineato" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla]" +#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/conversation.php:1242 +msgid "Quote" +msgstr "Citazione" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Ha creato un nuovo post" +#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/conversation.php:1243 +msgid "Code" +msgstr "Codice" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato il post di %s" +#: ../../Zotlabs/Lib/ThreadItem.php:731 +msgid "Image" +msgstr "Immagine" + +#: ../../Zotlabs/Lib/ThreadItem.php:732 +msgid "Insert Link" +msgstr "Collegamento" + +#: ../../Zotlabs/Lib/ThreadItem.php:733 +msgid "Video" +msgstr "Video" #: ../../Zotlabs/Lib/PermissionDescription.php:31 #: ../../include/acl_selectors.php:124 @@ -6920,7 +7099,7 @@ msgstr "Firefox Share" msgid "Remote Diagnostics" msgstr "Diagnostica remota" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:88 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:319 msgid "Suggest Channels" msgstr "Suggerisci canali" @@ -6938,7 +7117,7 @@ msgid "Channel Home" msgstr "Bacheca del canale" #: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 -#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 +#: ../../include/conversation.php:1689 ../../include/conversation.php:1692 msgid "Events" msgstr "Eventi" @@ -6970,7 +7149,7 @@ msgstr "Canale casuale" msgid "Invite" msgstr "Invita" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1564 msgid "Features" msgstr "Funzionalità" @@ -6986,688 +7165,789 @@ msgstr "Post" msgid "Profile Photo" msgstr "Foto del profilo" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acquista" +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Acquista" + +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Impossibile trovare il nome utente nel file da importare." + +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." + +#: ../../include/dba/dba_driver.php:173 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" +msgstr "Può vedere i miei contenuti e i post normali" + +#: ../../include/permissions.php:39 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" + +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" + +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\" a tutto il resto" + +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" +msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" + +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" + +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" + +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" + +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" + +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" + +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" + +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" + +#: ../../include/permissions.php:55 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" + +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nuova foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1675 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../include/features.php:58 +msgid "General Features" +msgstr "Funzionalità di base" + +#: ../../include/features.php:63 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:64 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" + +#: ../../include/features.php:72 +msgid "Advanced Profiles" +msgstr "Profili avanzati" + +#: ../../include/features.php:73 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" + +#: ../../include/features.php:81 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../include/features.php:82 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Scegli" +#: ../../include/features.php:90 +msgid "Web Pages" +msgstr "Pagine web" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Salva nella cartella" +#: ../../include/features.php:91 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Parteciperò" +#: ../../include/features.php:100 +msgid "Provide a wiki for your channel" +msgstr "Fornisce una wiki per il tuo canale" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Non parteciperò" +#: ../../include/features.php:117 +msgid "Private Notes" +msgstr "Note private" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Forse parteciperò" +#: ../../include/features.php:118 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Sono d'accordo" +#: ../../include/features.php:126 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Non sono d'accordo" +#: ../../include/features.php:127 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Mi astengo" +#: ../../include/features.php:135 +msgid "Photo Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" +#: ../../include/features.php:136 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" +#: ../../include/features.php:144 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" +#: ../../include/features.php:145 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato." -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferito" +#: ../../include/features.php:153 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" +#: ../../include/features.php:154 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" +#: ../../include/features.php:162 +msgid "Advanced Directory Search" +msgstr "Ricerca avanzata sugli elenchi pubblici" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Aggiungi un tag" +#: ../../include/features.php:163 +msgid "Allows creation of complex directory search queries" +msgstr "Permette la creazione di ricerche complesse negli elenchi" -#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:316 -msgid "like" -msgstr "mi piace" +#: ../../include/features.php:171 +msgid "Advanced Theme and Layout Settings" +msgstr "Impostazioni avanzate del tema e dei layout" -#: ../../Zotlabs/Lib/ThreadItem.php:264 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "non mi piace" +#: ../../include/features.php:172 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permette una personalizzazione accurata del tema e dei layout" -#: ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "Share This" -msgstr "Condividi" +#: ../../include/features.php:182 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" -#: ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "share" -msgstr "condividi" +#: ../../include/features.php:186 +msgid "Large Photos" +msgstr "Foto grandi" -#: ../../Zotlabs/Lib/ThreadItem.php:277 -msgid "Delivery Report" -msgstr "Rapporto di trasmissione" +#: ../../include/features.php:187 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../Zotlabs/Lib/ThreadItem.php:295 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +#: ../../include/features.php:196 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../Zotlabs/Lib/ThreadItem.php:324 ../../Zotlabs/Lib/ThreadItem.php:325 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" +#: ../../include/features.php:204 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "to" -msgstr "a" +#: ../../include/features.php:205 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via" -msgstr "via" +#: ../../include/features.php:213 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" -#: ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../include/features.php:214 +msgid "Provide a class of post which others can vote on" +msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../Zotlabs/Lib/ThreadItem.php:331 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" +#: ../../include/features.php:222 +msgid "Disable Comments" +msgstr "Disabilita i commenti" -#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "da %s" +#: ../../include/features.php:223 +msgid "Provide the option to disable comments for a post" +msgstr "Permetti di disabilitare i commenti" -#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" +#: ../../include/features.php:231 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" -#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" +#: ../../include/features.php:232 +msgid "Allow posts to be published at a later date" +msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../Zotlabs/Lib/ThreadItem.php:372 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" +#: ../../include/features.php:240 +msgid "Content Expiration" +msgstr "Scadenza" -#: ../../Zotlabs/Lib/ThreadItem.php:373 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" +#: ../../include/features.php:241 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" -#: ../../Zotlabs/Lib/ThreadItem.php:382 -msgid "Mark all seen" -msgstr "Marca tutto come letto" +#: ../../include/features.php:249 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" -#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +#: ../../include/features.php:250 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 -msgid "Bold" -msgstr "Grassetto" +#: ../../include/features.php:261 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 -msgid "Italic" -msgstr "Corsivo" +#: ../../include/features.php:265 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 -msgid "Underline" -msgstr "Sottolineato" +#: ../../include/features.php:266 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 -msgid "Quote" -msgstr "Citazione" +#: ../../include/features.php:274 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Gruppi di canali" -#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 -msgid "Code" -msgstr "Codice" +#: ../../include/features.php:275 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Image" -msgstr "Immagine" +#: ../../include/features.php:283 ../../include/widgets.php:283 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Insert Link" -msgstr "Collegamento" +#: ../../include/features.php:284 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../Zotlabs/Lib/ThreadItem.php:720 -msgid "Video" -msgstr "Video" +#: ../../include/features.php:292 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Impossibile trovare il nome utente nel file da importare." +#: ../../include/features.php:293 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." +#: ../../include/features.php:301 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../include/dba/dba_driver.php:173 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: ../../include/features.php:302 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" +#: ../../include/features.php:310 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../include/network.php:1935 ../../include/account.php:326 -#: ../../include/account.php:353 ../../include/account.php:413 -msgid "Administrator" -msgstr "Amministratore" +#: ../../include/features.php:311 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "Nessun titolo" +#: ../../include/features.php:320 +msgid "Show friend and connection suggestions" +msgstr "Mostra suggerimenti di contatti e amici" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/features.php:328 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/features.php:329 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/network.php:2206 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../include/features.php:341 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/features.php:345 +msgid "Community Tagging" +msgstr "Tag della comunità" -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/features.php:346 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" + +#: ../../include/features.php:354 +msgid "Post Categories" +msgstr "Categorie dei post" -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/features.php:355 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "Zot" +#: ../../include/features.php:363 +msgid "Emoji Reactions" +msgstr "Risposte emoji" -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/features.php:364 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti di rispondere ai post con degli emoji" -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/features.php:372 ../../include/contact_widgets.php:53 +#: ../../include/widgets.php:346 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/features.php:373 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +#: ../../include/features.php:381 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/features.php:382 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." +#: ../../include/features.php:390 +msgid "Star Posts" +msgstr "Post con stella" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" +#: ../../include/features.php:391 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" +#: ../../include/features.php:399 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../include/photos.php:506 ../../include/conversation.php:1674 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../include/features.php:400 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/features.php:412 +msgid "Premium Channel" +msgstr "Canale premium" -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 -msgid "Logout" -msgstr "Esci" +#: ../../include/features.php:413 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" -msgstr "Chiudi questa sessione" +#: ../../include/help.php:25 +msgid "Help:" +msgstr "Guida:" -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" -msgstr "Bacheca" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "ospite:" -#: ../../include/nav.php:88 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/nav.php:89 -msgid "Your profile page" -msgstr "Il tuo profilo" +#: ../../include/text.php:450 +msgid "prev" +msgstr "prec" -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" +#: ../../include/text.php:452 +msgid "first" +msgstr "inizio" -#: ../../include/nav.php:93 ../../include/channel.php:963 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../include/text.php:481 +msgid "last" +msgstr "fine" -#: ../../include/nav.php:93 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" +#: ../../include/text.php:484 +msgid "next" +msgstr "succ" -#: ../../include/nav.php:95 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../include/text.php:494 +msgid "older" +msgstr "più recenti" -#: ../../include/nav.php:96 -msgid "Your files" -msgstr "I tuoi file" +#: ../../include/text.php:496 +msgid "newer" +msgstr "più nuovi" -#: ../../include/nav.php:99 -msgid "Your chatrooms" -msgstr "Le tue chat" +#: ../../include/text.php:889 +msgid "No connections" +msgstr "Nessun contatto" -#: ../../include/nav.php:105 ../../include/conversation.php:1714 -msgid "Bookmarks" -msgstr "Segnalibri" +#: ../../include/text.php:914 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../include/nav.php:105 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" +msgstr "poke" -#: ../../include/nav.php:109 -msgid "Your webpages" -msgstr "Le tue pagine web" +#: ../../include/text.php:1059 ../../include/text.php:1064 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" -#: ../../include/nav.php:111 -msgid "Your wiki" -msgstr "La tua wiki" +#: ../../include/text.php:1065 +msgid "ping" +msgstr "ping" -#: ../../include/nav.php:115 -msgid "Sign in" -msgstr "Accedi" +#: ../../include/text.php:1065 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../include/nav.php:132 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +#: ../../include/text.php:1066 +msgid "prod" +msgstr "spintone" -#: ../../include/nav.php:135 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" +#: ../../include/text.php:1066 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" +#: ../../include/text.php:1067 +msgid "slap" +msgstr "schiaffo" -#: ../../include/nav.php:149 -msgid "Home Page" -msgstr "Bacheca" +#: ../../include/text.php:1067 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../include/nav.php:152 -msgid "Create an account" -msgstr "Crea un account" +#: ../../include/text.php:1068 +msgid "finger" +msgstr "finger" -#: ../../include/nav.php:164 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../include/text.php:1068 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" +#: ../../include/text.php:1069 +msgid "rebuff" +msgstr "rifiuto" -#: ../../include/nav.php:170 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" +#: ../../include/text.php:1069 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../include/nav.php:172 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/text.php:1081 +msgid "happy" +msgstr "felice" -#: ../../include/nav.php:184 -msgid "Your grid" -msgstr "La tua rete" +#: ../../include/text.php:1082 +msgid "sad" +msgstr "triste" -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../include/text.php:1083 +msgid "mellow" +msgstr "calmo" -#: ../../include/nav.php:187 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../include/text.php:1084 +msgid "tired" +msgstr "stanco" -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" +#: ../../include/text.php:1085 +msgid "perky" +msgstr "vivace" -#: ../../include/nav.php:194 -msgid "Notices" -msgstr "Avvisi" +#: ../../include/text.php:1086 +msgid "angry" +msgstr "arrabbiato" -#: ../../include/nav.php:194 -msgid "Notifications" -msgstr "Notifiche" +#: ../../include/text.php:1087 +msgid "stupefied" +msgstr "stupito" -#: ../../include/nav.php:195 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../include/text.php:1088 +msgid "puzzled" +msgstr "confuso" -#: ../../include/nav.php:198 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../include/text.php:1089 +msgid "interested" +msgstr "attento" -#: ../../include/nav.php:199 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../include/text.php:1090 +msgid "bitter" +msgstr "amaro" -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../include/text.php:1091 +msgid "cheerful" +msgstr "allegro" -#: ../../include/nav.php:201 ../../include/widgets.php:700 -msgid "Inbox" -msgstr "In arrivo" +#: ../../include/text.php:1092 +msgid "alive" +msgstr "vivace" -#: ../../include/nav.php:202 ../../include/widgets.php:705 -msgid "Outbox" -msgstr "Inviati" +#: ../../include/text.php:1093 +msgid "annoyed" +msgstr "seccato" -#: ../../include/nav.php:203 ../../include/widgets.php:710 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../include/text.php:1094 +msgid "anxious" +msgstr "ansioso" -#: ../../include/nav.php:206 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../include/text.php:1095 +msgid "cranky" +msgstr "irritabile" -#: ../../include/nav.php:207 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../include/text.php:1096 +msgid "disturbed" +msgstr "turbato" -#: ../../include/nav.php:208 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" +#: ../../include/text.php:1097 +msgid "frustrated" +msgstr "frustrato" -#: ../../include/nav.php:211 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" +#: ../../include/text.php:1098 +msgid "depressed" +msgstr "in depressione" -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" +#: ../../include/text.php:1099 +msgid "motivated" +msgstr "motivato" -#: ../../include/nav.php:221 ../../include/widgets.php:1590 -msgid "Admin" -msgstr "Amministrazione" +#: ../../include/text.php:1100 +msgid "relaxed" +msgstr "rilassato" -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" +#: ../../include/text.php:1101 +msgid "surprised" +msgstr "sorpreso" -#: ../../include/nav.php:252 ../../include/conversation.php:855 -msgid "Loading..." -msgstr "Caricamento in corso..." +#: ../../include/text.php:1285 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunedì" -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" +#: ../../include/text.php:1285 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martedì" -#: ../../include/nav.php:258 -msgid "Please wait..." -msgstr "Attendere..." +#: ../../include/text.php:1285 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../include/oembed.php:349 -msgid "Embedded content" -msgstr "Contenuti incorporati" +#: ../../include/text.php:1285 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "giovedì" -#: ../../include/oembed.php:358 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" +#: ../../include/text.php:1285 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "venerdì" -#: ../../include/permissions.php:35 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" +#: ../../include/text.php:1285 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sabato" -#: ../../include/permissions.php:39 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" +#: ../../include/text.php:1285 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domenica" -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/text.php:1289 ../../include/js_strings.php:45 +msgid "January" +msgstr "gennaio" -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\" a tutto il resto" +#: ../../include/text.php:1289 ../../include/js_strings.php:46 +msgid "February" +msgstr "febbraio" -#: ../../include/permissions.php:46 -msgid "Profiles and things other than posts/comments" -msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" +#: ../../include/text.php:1289 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" -#: ../../include/permissions.php:48 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" +#: ../../include/text.php:1289 ../../include/js_strings.php:48 +msgid "April" +msgstr "aprile" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/text.php:1289 +msgid "May" +msgstr "Mag" -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/text.php:1289 ../../include/js_strings.php:50 +msgid "June" +msgstr "giugno" -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" +#: ../../include/text.php:1289 ../../include/js_strings.php:51 +msgid "July" +msgstr "luglio" -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" +#: ../../include/text.php:1289 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/text.php:1289 ../../include/js_strings.php:53 +msgid "September" +msgstr "settembre" -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/text.php:1289 ../../include/js_strings.php:54 +msgid "October" +msgstr "ottobre" -#: ../../include/permissions.php:55 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" +#: ../../include/text.php:1289 ../../include/js_strings.php:55 +msgid "November" +msgstr "novembre" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../include/text.php:1289 ../../include/js_strings.php:56 +msgid "December" +msgstr "dicembre" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/import.php:1441 -msgid "Unable to import element \"" -msgstr "Impossibile importare l'elemento \"" +#: ../../include/text.php:1372 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" -msgstr "(Sconosciuto)" +#: ../../include/text.php:1408 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/items.php:1162 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." +#: ../../include/text.php:1485 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/items.php:1164 -msgid "Visible to you only." -msgstr "Visibile solo a te." +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" +msgstr "predefinito" -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." +#: ../../include/text.php:1792 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." +#: ../../include/text.php:1834 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/items.php:1172 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." +#: ../../include/text.php:1867 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/items.php:1174 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." +#: ../../include/text.php:2004 +msgid "activity" +msgstr "l'attività" -#: ../../include/items.php:1176 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." +#: ../../include/text.php:2305 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/items.php:3966 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." +#: ../../include/text.php:2311 +msgid "Pages" +msgstr "Pagine" -#: ../../include/items.php:3973 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" +#: ../../include/text.php:2333 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/items.php:3985 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../include/text.php:2334 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" + +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/items.php:4338 -msgid "profile photo" -msgstr "foto del profilo" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "Importa da un file su cloud:" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/posizione/della/cartella" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/datetime.php:272 ../../boot.php:2578 -msgid "never" -msgstr "mai" +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "Esporta il sito web..." -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "Esporta come file zip" -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "sitoweb.zip" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "Scegli il nome del file zip." -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "Esporta nell'archivio cloud" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "/percorso/alla/cartella" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "Scegli la posizione su una cartella cloud." -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "Scegli la cartella" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/datetime.php:562 +#: ../../include/zot.php:2329 #, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" +#: ../../include/zot.php:3713 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" #: ../../include/account.php:35 msgid "Not a valid email address" @@ -7707,6 +7987,11 @@ msgstr "Registrazione di %s confermata" msgid "Registration request at %s" msgstr "Richiesta di registrazione su %s" +#: ../../include/account.php:326 ../../include/account.php:353 +#: ../../include/account.php:413 ../../include/network.php:1937 +msgid "Administrator" +msgstr "Amministratore" + #: ../../include/account.php:348 msgid "your registration password" msgstr "la password di registrazione" @@ -7737,6 +8022,22 @@ msgstr "Questa operazione supera i limiti del tuo abbonamento." msgid "This action is not available under your subscription plan." msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[nessun titolo]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Frequentemente" @@ -7957,891 +8258,811 @@ msgstr "Separato/a" msgid "Unstable" msgstr "Instabile" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" - -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" - -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" - -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" - -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 -#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 -#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 -#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 -#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 -#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:920 -msgid "Image/photo" -msgstr "Immagine" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" -msgstr "Contenuto cifrato" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 ../../include/wiki.php:525 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" - -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" - -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" - -#: ../../include/event.php:1021 -msgid "Not specified" -msgstr "Non specificato" - -#: ../../include/event.php:1022 -msgid "Needs Action" -msgstr "Necessita di un intervento" - -#: ../../include/event.php:1023 -msgid "Completed" -msgstr "Completato" - -#: ../../include/event.php:1024 -msgid "In Process" -msgstr "In corso" - -#: ../../include/event.php:1025 -msgid "Cancelled" -msgstr "Annullato" - -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" - -#: ../../include/security.php:527 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." - -#: ../../include/help.php:25 -msgid "Help:" -msgstr "Guida:" - -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." - -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Aggiungi nuovi contatti a questo gruppo di canali" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorziato/a" -#: ../../include/group.php:289 -msgid "edit" -msgstr "modifica" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" -#: ../../include/group.php:311 ../../include/features.php:83 -msgid "Privacy Groups" -msgstr "Gruppi di canali" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Vedovo/a" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Modifica il gruppo" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incerto/a" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Crea un gruppo di canali" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Relazione complicata" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Canali che non sono in nessun gruppo" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Chi se ne frega" -#: ../../include/group.php:316 ../../include/widgets.php:284 -msgid "add" -msgstr "aggiungi" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Chiedimelo" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." -msgstr "Percorso non disponibile." +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../include/attach.php:1026 -msgid "Path not found." -msgstr "Percorso del file non trovato." +#: ../../include/channel.php:963 ../../include/nav.php:93 +msgid "Edit Profile" +msgstr "Modifica il profilo" -#: ../../include/attach.php:1084 -msgid "mkdir failed." -msgstr "mkdir fallito." +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "scrittura su database fallita." +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Sesso:" -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "La posizione è vuota" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Stato:" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Home page:" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Online adesso" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Allegati:" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Mi piace questo canale" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Eliminare questo elemento?" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j F" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s riduci" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../include/js_strings.php:9 +#: ../../include/channel.php:1216 #, php-format -msgid "%s expand" -msgstr "%s mostra tutto" +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s minimizza" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Password troppo corta" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Le password non corrispondono" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "tutti" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Parola chiave per decifrare" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Suggerimento per la parola chiave" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "chiudi tutto" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "I miei altri canali:" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valuta questo canale (visibile a tutti)" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Descrizione (facoltativa)" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Inserisci l'URL di un link" +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" + +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Amore:" + +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Lavoro:" + +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Scuola:" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Mi piace" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Chi può vederlo?" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selezione personalizzata" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "fa" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "da adesso" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostra" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "meno di un minuto" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Non mostrare" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "circa un minuto" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." -#: ../../include/js_strings.php:33 +#: ../../include/bookmarks.php:35 #, php-format -msgid "%d minutes" -msgstr "%d minuti" +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "circa un’ora" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "circa %d ore" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Aggiungi nuovi contatti a questo gruppo di canali" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un giorno" +#: ../../include/group.php:289 +msgid "edit" +msgstr "modifica" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d giorni" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Modifica il gruppo" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "circa un mese" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Crea un gruppo di canali" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d mesi" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Canali che non sono in nessun gruppo" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "circa un anno" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "aggiungi" -#: ../../include/js_strings.php:41 +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nuova finestra" + +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" + +#: ../../include/connections.php:214 #, php-format -msgid "%d years" -msgstr "%d anni" +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titolo" -#: ../../include/js_strings.php:45 ../../include/text.php:1289 -msgid "January" -msgstr "gennaio" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/js_strings.php:46 ../../include/text.php:1289 -msgid "February" -msgstr "febbraio" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "Esci" -#: ../../include/js_strings.php:47 ../../include/text.php:1289 -msgid "March" -msgstr "marzo" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "Chiudi questa sessione" -#: ../../include/js_strings.php:48 ../../include/text.php:1289 -msgid "April" -msgstr "aprile" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "Bacheca" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "maggio" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" -#: ../../include/js_strings.php:50 ../../include/text.php:1289 -msgid "June" -msgstr "giugno" +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../include/js_strings.php:51 ../../include/text.php:1289 -msgid "July" -msgstr "luglio" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" -#: ../../include/js_strings.php:52 ../../include/text.php:1289 -msgid "August" -msgstr "agosto" +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" -#: ../../include/js_strings.php:53 ../../include/text.php:1289 -msgid "September" -msgstr "settembre" +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "Le tue foto" -#: ../../include/js_strings.php:54 ../../include/text.php:1289 -msgid "October" -msgstr "ottobre" +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "I tuoi file" -#: ../../include/js_strings.php:55 ../../include/text.php:1289 -msgid "November" -msgstr "novembre" +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "Le tue chat" -#: ../../include/js_strings.php:56 ../../include/text.php:1289 -msgid "December" -msgstr "dicembre" +#: ../../include/nav.php:105 ../../include/conversation.php:1715 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Gen" +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "Le tue pagine web" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mar" +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "La tua wiki" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "Accedi" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "maggio" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Mag" +#: ../../include/nav.php:135 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Giu" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Ago" +#: ../../include/nav.php:149 +msgid "Home Page" +msgstr "Bacheca" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Set" +#: ../../include/nav.php:152 +msgid "Create an account" +msgstr "Crea un account" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Ott" +#: ../../include/nav.php:164 +msgid "Help and documentation" +msgstr "Guida e documentazione" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Dic" +#: ../../include/nav.php:172 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" -#: ../../include/js_strings.php:69 ../../include/text.php:1285 -msgid "Sunday" -msgstr "domenica" +#: ../../include/nav.php:184 +msgid "Your grid" +msgstr "La tua rete" -#: ../../include/js_strings.php:70 ../../include/text.php:1285 -msgid "Monday" -msgstr "lunedì" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" -#: ../../include/js_strings.php:71 ../../include/text.php:1285 -msgid "Tuesday" -msgstr "martedì" +#: ../../include/nav.php:187 +msgid "Channel home" +msgstr "Bacheca del canale" -#: ../../include/js_strings.php:72 ../../include/text.php:1285 -msgid "Wednesday" -msgstr "mercoledì" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" -#: ../../include/js_strings.php:73 ../../include/text.php:1285 -msgid "Thursday" -msgstr "giovedì" +#: ../../include/nav.php:194 +msgid "Notices" +msgstr "Avvisi" -#: ../../include/js_strings.php:74 ../../include/text.php:1285 -msgid "Friday" -msgstr "venerdì" +#: ../../include/nav.php:194 +msgid "Notifications" +msgstr "Notifiche" -#: ../../include/js_strings.php:75 ../../include/text.php:1285 -msgid "Saturday" -msgstr "sabato" +#: ../../include/nav.php:195 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "Dom" +#: ../../include/nav.php:198 +msgid "Private mail" +msgstr "Messaggi privati" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Lun" +#: ../../include/nav.php:199 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Mar" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Mer" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Gio" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Ven" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Sab" +#: ../../include/nav.php:206 +msgid "Event Calendar" +msgstr "Calendario" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "oggi" +#: ../../include/nav.php:207 +msgid "See all events" +msgstr "Guarda tutti gli eventi" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mese" +#: ../../include/nav.php:208 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "settimana" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "giorno" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" +#: ../../include/nav.php:221 ../../include/widgets.php:1594 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." +#: ../../include/nav.php:252 ../../include/conversation.php:853 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." +#: ../../include/nav.php:258 +msgid "Please wait..." +msgstr "Attendere..." -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notifica evento $Projectname:" -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" -msgstr "Chi può vederlo?" +#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" -msgstr "Selezione personalizzata" +#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Eliminare questo elemento?" -#: ../../include/acl_selectors.php:172 -msgid "Show" -msgstr "Mostra" +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "%s riduci" -#: ../../include/acl_selectors.php:173 -msgid "Don't show" -msgstr "Non mostrare" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "%s mostra tutto" -#: ../../include/acl_selectors.php:207 +#: ../../include/js_strings.php:10 #, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." +msgid "%s collapse" +msgstr "%s minimizza" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Password troppo corta" -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Le password non corrispondono" -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "tutti" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Parola chiave per decifrare" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Suggerimento per la parola chiave" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "chiudi tutto" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valuta questo canale (visibile a tutti)" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Descrizione (facoltativa)" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Inserisci l'URL di un link" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "fa" -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "da adesso" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "meno di un minuto" -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "circa un minuto" -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minuti" -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "circa un’ora" -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un giorno" -#: ../../include/channel.php:1216 +#: ../../include/js_strings.php:37 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "%d days" +msgstr "%d giorni" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "circa un mese" -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d mesi" -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "circa un anno" -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d anni" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "maggio" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Gen" -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mar" -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "maggio" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Mag" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Giu" -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "Ago" -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "Set" -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Ott" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nuova finestra" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Dic" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "Dom" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Lun" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Mar" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Mer" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Gio" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Ven" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Profilo casuale" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Sab" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "oggi" + +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mese" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "settimana" -#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 -#: ../../include/features.php:97 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -msgid "Everything" -msgstr "Tutto" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 -#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 -#: ../../include/widgets.php:465 -msgid "Categories" -msgstr "Categorie" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostra tutto" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/activities.php:41 -msgid " and " -msgstr "e" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profilo pubblico" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "Immagine" -#: ../../include/activities.php:58 +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "Contenuto cifrato" + +#: ../../include/bbcode.php:178 #, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" -#: ../../include/activities.php:59 +#: ../../include/bbcode.php:182 #, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." -#: ../../include/activities.php:62 +#: ../../include/bbcode.php:261 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" #: ../../include/conversation.php:204 #, php-format @@ -8853,11 +9074,6 @@ msgstr "%1$s adesso è connesso con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/conversation.php:243 ../../include/text.php:1059 -#: ../../include/text.php:1064 -msgid "poked" -msgstr "ha mandato un poke" - #: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" @@ -8871,602 +9087,571 @@ msgstr "Categorie:" msgid "Filed under:" msgstr "Classificato come:" -#: ../../include/conversation.php:741 +#: ../../include/conversation.php:739 msgid "View in context" msgstr "Vedi nel contesto" -#: ../../include/conversation.php:851 +#: ../../include/conversation.php:849 msgid "remove" msgstr "rimuovi" -#: ../../include/conversation.php:856 +#: ../../include/conversation.php:854 msgid "Delete Selected Items" msgstr "Elimina gli oggetti selezionati" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:947 msgid "View Source" msgstr "Vedi il sorgente" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:948 msgid "Follow Thread" msgstr "Segui la discussione" -#: ../../include/conversation.php:951 +#: ../../include/conversation.php:949 msgid "Unfollow Thread" msgstr "Non seguire la discussione" -#: ../../include/conversation.php:956 +#: ../../include/conversation.php:954 msgid "Activity/Posts" msgstr "Attività e Post" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:956 msgid "Edit Connection" msgstr "Modifica il contatto" -#: ../../include/conversation.php:959 +#: ../../include/conversation.php:957 msgid "Message" msgstr "Messaggio" -#: ../../include/conversation.php:1076 +#: ../../include/conversation.php:1077 #, php-format msgid "%s likes this." msgstr "Piace a %s." -#: ../../include/conversation.php:1076 +#: ../../include/conversation.php:1077 #, php-format msgid "%s doesn't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:1080 +#: ../../include/conversation.php:1081 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "" msgstr[1] "Piace a %2$d persone." -#: ../../include/conversation.php:1082 +#: ../../include/conversation.php:1083 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "" msgstr[1] "Non piace a %2$d persone." -#: ../../include/conversation.php:1088 +#: ../../include/conversation.php:1089 msgid "and" msgstr "e" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1092 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "e altre %d persone" -#: ../../include/conversation.php:1092 +#: ../../include/conversation.php:1093 #, php-format msgid "%s like this." msgstr "Piace a %s." -#: ../../include/conversation.php:1092 +#: ../../include/conversation.php:1093 #, php-format msgid "%s don't like this." msgstr "Non piace a %s." -#: ../../include/conversation.php:1135 +#: ../../include/conversation.php:1136 msgid "Set your location" msgstr "La tua località" -#: ../../include/conversation.php:1136 +#: ../../include/conversation.php:1137 msgid "Clear browser location" msgstr "Rimuovi la località data dal browser" -#: ../../include/conversation.php:1184 +#: ../../include/conversation.php:1185 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1185 +#: ../../include/conversation.php:1186 msgid "Where are you right now?" msgstr "Dove sei ora?" -#: ../../include/conversation.php:1194 +#: ../../include/conversation.php:1195 msgid "Comments enabled" msgstr "Commenti abilitati" -#: ../../include/conversation.php:1195 +#: ../../include/conversation.php:1196 msgid "Comments disabled" msgstr "Commenti disabilitati" -#: ../../include/conversation.php:1233 +#: ../../include/conversation.php:1234 msgid "Page link name" msgstr "Nome del link alla pagina" -#: ../../include/conversation.php:1236 +#: ../../include/conversation.php:1237 msgid "Post as" msgstr "Pubblica come " -#: ../../include/conversation.php:1250 +#: ../../include/conversation.php:1251 msgid "Toggle voting" msgstr "Abilita/disabilita il voto" -#: ../../include/conversation.php:1253 +#: ../../include/conversation.php:1254 msgid "Disable comments" msgstr "Disabilita i commenti" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1255 msgid "Toggle comments" msgstr "Abilita/disabilita i commenti" -#: ../../include/conversation.php:1262 +#: ../../include/conversation.php:1263 msgid "Categories (optional, comma-separated list)" msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/conversation.php:1285 +#: ../../include/conversation.php:1286 msgid "Other networks and post services" msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/conversation.php:1291 +#: ../../include/conversation.php:1292 msgid "Set publish date" msgstr "Data di uscita programmata" -#: ../../include/conversation.php:1540 +#: ../../include/conversation.php:1541 msgid "Discover" msgstr "Scopri" -#: ../../include/conversation.php:1543 +#: ../../include/conversation.php:1544 msgid "Imported public streams" msgstr "Contenuti pubblici importati" -#: ../../include/conversation.php:1548 +#: ../../include/conversation.php:1549 msgid "Commented Order" msgstr "Commenti recenti" -#: ../../include/conversation.php:1551 +#: ../../include/conversation.php:1552 msgid "Sort by Comment Date" msgstr "Per data del commento" -#: ../../include/conversation.php:1555 +#: ../../include/conversation.php:1556 msgid "Posted Order" msgstr "Post recenti" -#: ../../include/conversation.php:1558 +#: ../../include/conversation.php:1559 msgid "Sort by Post Date" msgstr "Per data di creazione" -#: ../../include/conversation.php:1566 +#: ../../include/conversation.php:1567 msgid "Posts that mention or involve you" msgstr "Post che ti riguardano" -#: ../../include/conversation.php:1575 +#: ../../include/conversation.php:1576 msgid "Activity Stream - by date" msgstr "Elenco attività - per data" -#: ../../include/conversation.php:1581 +#: ../../include/conversation.php:1582 msgid "Starred" msgstr "Preferiti" -#: ../../include/conversation.php:1584 +#: ../../include/conversation.php:1585 msgid "Favourite Posts" msgstr "Post preferiti" -#: ../../include/conversation.php:1591 +#: ../../include/conversation.php:1592 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1594 +#: ../../include/conversation.php:1595 msgid "Posts flagged as SPAM" msgstr "Post marcati come spam" -#: ../../include/conversation.php:1653 +#: ../../include/conversation.php:1654 msgid "Status Messages and Posts" msgstr "Post e messaggi di stato" -#: ../../include/conversation.php:1662 +#: ../../include/conversation.php:1663 msgid "About" msgstr "Informazioni" -#: ../../include/conversation.php:1665 +#: ../../include/conversation.php:1666 msgid "Profile Details" msgstr "Dettagli del profilo" -#: ../../include/conversation.php:1681 +#: ../../include/conversation.php:1682 msgid "Files and Storage" msgstr "Archivio file" -#: ../../include/conversation.php:1701 ../../include/conversation.php:1704 +#: ../../include/conversation.php:1702 ../../include/conversation.php:1705 #: ../../include/widgets.php:883 msgid "Chatrooms" msgstr "Chat" -#: ../../include/conversation.php:1717 +#: ../../include/conversation.php:1718 msgid "Saved Bookmarks" msgstr "Segnalibri salvati" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:1728 msgid "Manage Webpages" msgstr "Gestisci le pagine web" -#: ../../include/conversation.php:1792 +#: ../../include/conversation.php:1793 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Partecipa" msgstr[1] "Partecipano" -#: ../../include/conversation.php:1795 +#: ../../include/conversation.php:1796 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Non partecipa" msgstr[1] "Non partecipano" -#: ../../include/conversation.php:1798 +#: ../../include/conversation.php:1799 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso" msgstr[1] "Indecisi" -#: ../../include/conversation.php:1801 +#: ../../include/conversation.php:1802 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accordo" msgstr[1] "D'accordo" -#: ../../include/conversation.php:1804 +#: ../../include/conversation.php:1805 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Non d'accordo" msgstr[1] "Non d'accordo" -#: ../../include/conversation.php:1807 +#: ../../include/conversation.php:1808 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Astenuto" msgstr[1] "Astenuti" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tag" - -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Parole chiave" - -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "ho" - -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "ha" - -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "voglio" - -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "vuole" - -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gli piace" - -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "non gli piace" - -#: ../../include/text.php:450 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:452 -msgid "first" -msgstr "inizio" - -#: ../../include/text.php:481 -msgid "last" -msgstr "fine" +#: ../../include/datetime.php:147 +msgid "Birthday" +msgstr "Compleanno" -#: ../../include/text.php:484 -msgid "next" -msgstr "succ" +#: ../../include/datetime.php:149 +msgid "Age: " +msgstr "Età:" -#: ../../include/text.php:494 -msgid "older" -msgstr "più recenti" +#: ../../include/datetime.php:151 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/text.php:496 -msgid "newer" -msgstr "più nuovi" +#: ../../include/datetime.php:284 ../../boot.php:2578 +msgid "never" +msgstr "mai" -#: ../../include/text.php:889 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/datetime.php:290 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../include/text.php:914 +#: ../../include/datetime.php:308 #, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" - -#: ../../include/text.php:1059 ../../include/text.php:1064 -msgid "poke" -msgstr "poke" - -#: ../../include/text.php:1065 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1065 -msgid "pinged" -msgstr "ha effettuato un ping" - -#: ../../include/text.php:1066 -msgid "prod" -msgstr "spintone" - -#: ../../include/text.php:1066 -msgid "prodded" -msgstr "ha ricevuto uno spintone" - -#: ../../include/text.php:1067 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:1067 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../include/text.php:1068 -msgid "finger" -msgstr "finger" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" -#: ../../include/text.php:1068 -msgid "fingered" -msgstr "ha ricevuto un finger" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" -#: ../../include/text.php:1069 -msgid "rebuff" -msgstr "rifiuto" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" -#: ../../include/text.php:1069 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" +#: ../../include/datetime.php:328 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" -#: ../../include/text.php:1081 -msgid "happy" -msgstr "felice" +#: ../../include/datetime.php:331 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" -#: ../../include/text.php:1082 -msgid "sad" -msgstr "triste" +#: ../../include/datetime.php:334 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" -#: ../../include/text.php:1083 -msgid "mellow" -msgstr "calmo" +#: ../../include/datetime.php:337 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" -#: ../../include/text.php:1084 -msgid "tired" -msgstr "stanco" +#: ../../include/datetime.php:574 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" -#: ../../include/text.php:1085 -msgid "perky" -msgstr "vivace" +#: ../../include/datetime.php:575 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" -#: ../../include/text.php:1086 -msgid "angry" -msgstr "arrabbiato" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Visibilità negli elenchi pubblici" -#: ../../include/text.php:1087 -msgid "stupefied" -msgstr "stupito" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" -#: ../../include/text.php:1088 -msgid "puzzled" -msgstr "confuso" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" -#: ../../include/text.php:1089 -msgid "interested" -msgstr "attento" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo in questo sito" -#: ../../include/text.php:1090 -msgid "bitter" -msgstr "amaro" +#: ../../include/event.php:824 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/text.php:1091 -msgid "cheerful" -msgstr "allegro" +#: ../../include/event.php:1024 +msgid "Not specified" +msgstr "Non specificato" -#: ../../include/text.php:1092 -msgid "alive" -msgstr "vivace" +#: ../../include/event.php:1025 +msgid "Needs Action" +msgstr "Necessita di un intervento" -#: ../../include/text.php:1093 -msgid "annoyed" -msgstr "seccato" +#: ../../include/event.php:1026 +msgid "Completed" +msgstr "Completato" -#: ../../include/text.php:1094 -msgid "anxious" -msgstr "ansioso" +#: ../../include/event.php:1027 +msgid "In Process" +msgstr "In corso" -#: ../../include/text.php:1095 -msgid "cranky" -msgstr "irritabile" +#: ../../include/event.php:1028 +msgid "Cancelled" +msgstr "Annullato" -#: ../../include/text.php:1096 -msgid "disturbed" -msgstr "turbato" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/text.php:1097 -msgid "frustrated" -msgstr "frustrato" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/text.php:1098 -msgid "depressed" -msgstr "in depressione" +#: ../../include/import.php:1447 +msgid "Unable to import element \"" +msgstr "Impossibile importare l'elemento \"" -#: ../../include/text.php:1099 -msgid "motivated" -msgstr "motivato" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/text.php:1100 -msgid "relaxed" -msgstr "rilassato" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/text.php:1101 -msgid "surprised" -msgstr "sorpreso" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../include/text.php:1289 -msgid "May" -msgstr "Mag" +#: ../../include/activities.php:41 +msgid " and " +msgstr "e" -#: ../../include/text.php:1366 ../../include/text.php:1370 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../include/text.php:1372 -msgid "unknown" -msgstr "sconosciuta" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../include/text.php:1408 -msgid "remove category" -msgstr "rimuovi la categoria" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " -#: ../../include/text.php:1485 -msgid "remove from file" -msgstr "rimuovi dal file" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/text.php:1784 ../../include/text.php:1855 -msgid "default" -msgstr "predefinito" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" -#: ../../include/text.php:1792 -msgid "Page layout" -msgstr "Layout della pagina" +#: ../../include/network.php:1953 +msgid "No Subject" +msgstr "Nessun titolo" -#: ../../include/text.php:1792 -msgid "You can create your own with the layouts tool" -msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" +#: ../../include/network.php:2207 ../../include/network.php:2208 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/text.php:1834 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" +#: ../../include/network.php:2209 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/text.php:1867 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" +#: ../../include/network.php:2210 +msgid "GNU-Social" +msgstr "GNU-Social" -#: ../../include/text.php:2004 -msgid "activity" -msgstr "l'attività" +#: ../../include/network.php:2211 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/text.php:2305 -msgid "Design Tools" -msgstr "Strumenti di design" +#: ../../include/network.php:2213 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/text.php:2311 -msgid "Pages" -msgstr "Pagine" +#: ../../include/network.php:2214 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/text.php:2333 -msgid "Import website..." -msgstr "Importazione sito web..." +#: ../../include/network.php:2215 +msgid "Zot" +msgstr "Zot" -#: ../../include/text.php:2334 -msgid "Select folder to import" -msgstr "Scegli la cartella da importare" +#: ../../include/network.php:2216 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/text.php:2335 -msgid "Import from a zipped folder:" -msgstr "Importa da un file zip:" +#: ../../include/network.php:2217 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/text.php:2336 -msgid "Import from cloud files:" -msgstr "Importa da un file su cloud:" +#: ../../include/network.php:2218 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/text.php:2337 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/posizione/della/cartella" +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "Categorie" -#: ../../include/text.php:2338 -msgid "Enter path to website files" -msgstr "Inserisci la posizione dei file del sito web" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Tag" -#: ../../include/text.php:2339 -msgid "Select folder" -msgstr "Scegli la cartella" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Parole chiave" -#: ../../include/text.php:2340 -msgid "Export website..." -msgstr "Esporta il sito web..." +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "ho" -#: ../../include/text.php:2341 -msgid "Export to a zip file" -msgstr "Esporta come file zip" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "ha" -#: ../../include/text.php:2342 -msgid "website.zip" -msgstr "sitoweb.zip" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "voglio" -#: ../../include/text.php:2343 -msgid "Enter a name for the zip file." -msgstr "Scegli il nome del file zip." +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "vuole" -#: ../../include/text.php:2344 -msgid "Export to cloud files" -msgstr "Esporta nell'archivio cloud" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gli piace" -#: ../../include/text.php:2345 -msgid "/path/to/export/folder" -msgstr "/percorso/alla/cartella" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "non gli piace" -#: ../../include/text.php:2346 -msgid "Enter a path to a cloud files destination." -msgstr "Scegli la posizione su una cartella cloud." +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../include/text.php:2347 -msgid "Specify folder" -msgstr "Scegli la cartella" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Visibilità negli elenchi pubblici" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Aggiungi" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Profilo casuale" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo in questo sito" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[nessun titolo]" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "Tutto" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostra tutto" #: ../../include/widgets.php:103 msgid "System" @@ -9509,10 +9694,6 @@ msgstr "Note" msgid "Remove term" msgstr "Rimuovi termine" -#: ../../include/widgets.php:283 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Ricerche salvate" - #: ../../include/widgets.php:390 msgid "Archives" msgstr "Archivi" @@ -9543,7 +9724,7 @@ msgstr "Aspetto" #: ../../include/widgets.php:627 msgid "Manage locations" -msgstr "Gestione cloni" +msgstr "Gestione cloni del tuo canale" #: ../../include/widgets.php:634 msgid "Export channel" @@ -9597,383 +9778,213 @@ msgstr "Esporta calendario" msgid "Import Calendar" msgstr "Importa calendario" -#: ../../include/widgets.php:887 -msgid "Overview" -msgstr "Riepilogo" - -#: ../../include/widgets.php:894 -msgid "Chat Members" -msgstr "Partecipanti" - -#: ../../include/widgets.php:916 -msgid "Wiki List" -msgstr "Elenco wiki" - -#: ../../include/widgets.php:954 -msgid "Wiki Pages" -msgstr "Pagine wiki" - -#: ../../include/widgets.php:989 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" - -#: ../../include/widgets.php:1020 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" - -#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 -msgid "photo/image" -msgstr "foto/immagine" - -#: ../../include/widgets.php:1221 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" - -#: ../../include/widgets.php:1372 -msgid "Rating Tools" -msgstr "Valutazione" - -#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 -msgid "Rate Me" -msgstr "Valutami" - -#: ../../include/widgets.php:1381 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" - -#: ../../include/widgets.php:1465 -msgid "Forums" -msgstr "Forum" - -#: ../../include/widgets.php:1494 -msgid "Tasks" -msgstr "Attività" - -#: ../../include/widgets.php:1505 -msgid "Documentation" -msgstr "Guida" - -#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" - -#: ../../include/widgets.php:1563 -msgid "Inspect queue" -msgstr "Coda di attesa" - -#: ../../include/widgets.php:1565 -msgid "DB updates" -msgstr "Aggiornamenti al DB" - -#: ../../include/widgets.php:1591 -msgid "Plugin Features" -msgstr "Plugin" - -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" - -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/zot.php:3711 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" - -#: ../../include/features.php:50 -msgid "General Features" -msgstr "Funzionalità di base" - -#: ../../include/features.php:52 -msgid "Content Expiration" -msgstr "Scadenza" - -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" - -#: ../../include/features.php:53 -msgid "Multiple Profiles" -msgstr "Profili multipli" - -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" - -#: ../../include/features.php:54 -msgid "Advanced Profiles" -msgstr "Profili avanzati" - -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" - -#: ../../include/features.php:55 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" - -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" - -#: ../../include/features.php:56 -msgid "Web Pages" -msgstr "Pagine web" - -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" - -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" - -#: ../../include/features.php:59 -msgid "Private Notes" -msgstr "Note private" - -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" - -#: ../../include/features.php:60 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" - -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" - -#: ../../include/features.php:61 -msgid "Photo Location" -msgstr "Posizione geografica" - -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." - -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" - -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato." +#: ../../include/widgets.php:887 +msgid "Overview" +msgstr "Riepilogo" -#: ../../include/features.php:63 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" +#: ../../include/widgets.php:894 +msgid "Chat Members" +msgstr "Partecipanti" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." +#: ../../include/widgets.php:916 +msgid "Wiki List" +msgstr "Elenco wiki" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../include/widgets.php:954 +msgid "Wiki Pages" +msgstr "Pagine wiki" -#: ../../include/features.php:69 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" -#: ../../include/features.php:69 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" +#: ../../include/widgets.php:1020 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" -#: ../../include/features.php:70 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 +msgid "photo/image" +msgstr "foto/immagine" -#: ../../include/features.php:71 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" +#: ../../include/widgets.php:1221 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" -#: ../../include/features.php:71 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" +#: ../../include/widgets.php:1372 +msgid "Rating Tools" +msgstr "Valutazione" -#: ../../include/features.php:72 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 +msgid "Rate Me" +msgstr "Valutami" -#: ../../include/features.php:72 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di post in cui sarà possibile votare" +#: ../../include/widgets.php:1381 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" -#: ../../include/features.php:73 -msgid "Disable Comments" -msgstr "Disabilita i commenti" +#: ../../include/widgets.php:1465 +msgid "Forums" +msgstr "Forum" -#: ../../include/features.php:73 -msgid "Provide the option to disable comments for a post" -msgstr "Permetti di disabilitare i commenti" +#: ../../include/widgets.php:1494 +msgid "Tasks" +msgstr "Attività" -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" +#: ../../include/widgets.php:1505 +msgid "Documentation" +msgstr "Guida" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Per scegliere una data e un'ora a cui far uscire i post" +#: ../../include/widgets.php:1561 ../../include/widgets.php:1599 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" +#: ../../include/widgets.php:1567 +msgid "Inspect queue" +msgstr "Coda di attesa" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." +#: ../../include/widgets.php:1569 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../include/widgets.php:1595 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../include/oembed.php:322 +msgid " by " +msgstr "di" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" +#: ../../include/oembed.php:323 +msgid " on " +msgstr "su" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../include/oembed.php:352 +msgid "Embedded content" +msgstr "Contenuti incorporati" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../include/oembed.php:361 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../include/items.php:1164 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../include/features.php:88 -msgid "Show friend and connection suggestions" -msgstr "Mostra suggerimenti di contatti e amici" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/features.php:93 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/features.php:94 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/features.php:94 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/features.php:95 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/items.php:3976 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../include/features.php:95 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/items.php:3983 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/features.php:96 -msgid "Emoji Reactions" -msgstr "Risposte emoji" +#: ../../include/items.php:3995 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../include/features.php:96 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti di rispondere ai post con degli emoji" +#: ../../include/items.php:4348 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../include/features.php:97 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../include/features.php:98 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/features.php:99 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/features.php:100 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." -#: ../../include/features.php:100 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" +#: ../../include/attach.php:854 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." -#: ../../include/features.php:109 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/attach.php:867 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/features.php:110 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/attach.php:923 ../../include/attach.php:939 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/features.php:120 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/attach.php:985 ../../include/attach.php:1137 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/features.php:121 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" +#: ../../include/attach.php:1011 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" -#: ../../include/features.php:128 -msgid "Advanced Directory Search" -msgstr "Ricerca avanzata sugli elenchi pubblici" +#: ../../include/attach.php:1033 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/features.php:129 -msgid "Allows creation of complex directory search queries" -msgstr "Permette la creazione di ricerche complesse negli elenchi" +#: ../../include/attach.php:1091 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/features.php:135 -msgid "Advanced Theme and Layout Settings" -msgstr "Impostazioni avanzate del tema e dei layout" +#: ../../include/attach.php:1095 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/features.php:136 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permette una personalizzazione accurata del tema e dei layout" +#: ../../include/attach.php:1143 +msgid "Empty path" +msgstr "La posizione è vuota" #: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index fd69c67ec..9eb419735 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -72,53 +72,44 @@ App::$strings["Requested profile is not available."] = "Il profilo richiesto non App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -App::$strings["recipient not found"] = "Destinatario non trovato"; -App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; -App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; -App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -App::$strings["Passwords do not match."] = "Le password non corrispondono."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; -App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; -App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; -App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -App::$strings["Terms of Service"] = "Condizioni d'Uso"; -App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -App::$strings["Your email address"] = "Il tuo indirizzo email"; -App::$strings["Choose a password"] = "Scegli una password"; -App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; -App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -App::$strings["Name or caption"] = "Nome o titolo"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -App::$strings["Choose a short nickname"] = "Scegli un nome breve"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; -App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sì"; -App::$strings["Registration"] = "Registrazione"; -App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; -App::$strings["Register"] = "Registrati"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; +App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +App::$strings["Posts and comments"] = "Post e commenti"; +App::$strings["Only posts"] = "Solo post"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +App::$strings["Nothing to import."] = "Non c'è niente da importare."; +App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; +App::$strings["Import completed."] = "L'importazione è terminata con successo."; +App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +App::$strings["Import Channel"] = "Importa un canale"; +App::$strings["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."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; +App::$strings["File to Upload"] = "File da caricare"; +App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; +App::$strings["Your old login password"] = "La password per il vecchio hub"; +App::$strings["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."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; +App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; +App::$strings["Submit"] = "Salva"; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; App::$strings["%s account blocked/unblocked"] = array( 0 => "Modificato il blocco su %s account", 1 => "Modificato il blocco verso %s", @@ -133,7 +124,6 @@ App::$strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'"; App::$strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'"; App::$strings["Administration"] = "Amministrazione"; App::$strings["Accounts"] = "Account"; -App::$strings["Submit"] = "Salva"; App::$strings["select all"] = "seleziona tutti"; App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di conferma"; App::$strings["Request date"] = "Data richiesta"; @@ -212,7 +202,7 @@ App::$strings["Maintainer: "] = "Gestore:"; App::$strings["Minimum project version: "] = "Minima versione hubzilla"; App::$strings["Maximum project version: "] = "Massima versione hubzilla"; App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; -App::$strings["Compatible Server Roles: "] = "Ruoli compatibili per questo server"; +App::$strings["Compatible Server Roles: "] = "Ruoli previsti per questo server"; App::$strings["Requires: "] = "Necessita di:"; App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; @@ -297,8 +287,9 @@ App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; -App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te"; +App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te!"; App::$strings["Site"] = "Sito"; +App::$strings["Registration"] = "Registrazione"; App::$strings["File upload"] = "Caricamento file"; App::$strings["Policies"] = "Politiche"; App::$strings["Advanced"] = "Avanzate"; @@ -366,72 +357,39 @@ App::$strings["Screenshot"] = "Istantanea dello schermo"; App::$strings["Themes"] = "Temi"; App::$strings["[Experimental]"] = "[Sperimentale]"; App::$strings["[Unsupported]"] = "[Non supportato]"; -App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; -App::$strings["Nothing to import."] = "Non c'è niente da importare."; -App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; -App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; -App::$strings["Import completed."] = "L'importazione è terminata con successo."; -App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -App::$strings["Import Channel"] = "Importa un canale"; -App::$strings["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."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; -App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; -App::$strings["Your old login password"] = "La password per il vecchio hub"; -App::$strings["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."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; -App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; -App::$strings["Public access denied."] = "Accesso pubblico negato."; -App::$strings["%d rating"] = array( - 0 => "%d valutazione", - 1 => "%d valutazioni", -); -App::$strings["Gender: "] = "Sesso:"; -App::$strings["Status: "] = "Stato:"; -App::$strings["Homepage: "] = "Homepage:"; -App::$strings["Age:"] = "Età:"; -App::$strings["Location:"] = "Luogo:"; -App::$strings["Description:"] = "Descrizione:"; -App::$strings["Hometown:"] = "Città dove vivo:"; -App::$strings["About:"] = "Informazioni:"; -App::$strings["Connect"] = "Aggiungi"; -App::$strings["Public Forum:"] = "Forum pubblico:"; -App::$strings["Keywords: "] = "Parole chiave:"; -App::$strings["Don't suggest"] = "Non fornire suggerimenti"; -App::$strings["Common connections:"] = "Contatti in comune:"; -App::$strings["Global Directory"] = "Elenchi pubblici globali"; -App::$strings["Local Directory"] = "Elenco canali su questo hub"; -App::$strings["Find"] = "Cerca"; -App::$strings["Finding:"] = "Ricerca:"; -App::$strings["Channel Suggestions"] = "Canali suggeriti"; -App::$strings["next page"] = "pagina successiva"; -App::$strings["previous page"] = "pagina precedente"; -App::$strings["Sort options"] = "Opzioni di ordinamento"; -App::$strings["Alphabetic"] = "Alfabetico"; -App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; -App::$strings["Newest to Oldest"] = "Prima i più recenti"; -App::$strings["Oldest to Newest"] = "Prima i più vecchi"; -App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -App::$strings["Edit post"] = "Modifica post"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; App::$strings["Photos"] = "Foto"; App::$strings["Invalid item."] = "Elemento non valido."; App::$strings["Channel not found."] = "Canale non trovato."; App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; App::$strings["Save to Folder:"] = "Salva nella cartella:"; App::$strings["- select -"] = "- scegli -"; +App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +App::$strings["Messages"] = "Messaggi"; +App::$strings["Message recalled."] = "Messaggio revocato."; +App::$strings["Conversation removed."] = "Conversazione rimossa."; +App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +App::$strings["Send Private Message"] = "Invia un messaggio privato"; +App::$strings["To:"] = "A:"; +App::$strings["Subject:"] = "Oggetto:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Attach file"] = "Allega file"; +App::$strings["Insert web link"] = "Inserisci un indirizzo web"; +App::$strings["Send"] = "Invia"; +App::$strings["Set expiration date"] = "Data di scadenza"; +App::$strings["Encrypt text"] = "Cifratura del messaggio"; +App::$strings["Delete message"] = "Elimina il messaggio"; +App::$strings["Delivery report"] = "Rapporto di trasmissione"; +App::$strings["Recall message"] = "Revoca il messaggio"; +App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; +App::$strings["Delete Conversation"] = "Elimina la conversazione"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +App::$strings["Send Reply"] = "Invia la risposta"; +App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; App::$strings["Blocked"] = "Bloccati"; App::$strings["Ignored"] = "Ignorati"; App::$strings["Hidden"] = "Nascosti"; @@ -462,6 +420,7 @@ App::$strings["Connections"] = "Contatti"; App::$strings["Search"] = "Cerca"; App::$strings["Search your connections"] = "Cerca tra i contatti"; App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Find"] = "Cerca"; App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; App::$strings["Cover Photos"] = "Copertine del canale"; App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; @@ -484,9 +443,74 @@ App::$strings["select a photo from your photo albums"] = "seleziona una foto dai App::$strings["Crop Image"] = "Ritaglia immagine"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; App::$strings["Done Editing"] = "Modifica terminata"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; +App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +App::$strings["Connection updated."] = "Contatto aggiornato."; +App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; +App::$strings["is now connected to"] = "ha come nuovo contatto"; +App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; +App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; +App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; +App::$strings["View Profile"] = "Profilo"; +App::$strings["View %s's profile"] = "Guarda il profilo di %s"; +App::$strings["Refresh Permissions"] = "Modifica i permessi"; +App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; +App::$strings["Recent Activity"] = "Attività recenti"; +App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; +App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; +App::$strings["Unignore"] = "Non ignorare"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; +App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; +App::$strings["Unarchive"] = "Non archiviare"; +App::$strings["Archive"] = "Archivia"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; +App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; +App::$strings["Unhide"] = "Non nascondere"; +App::$strings["Hide"] = "Nascondi"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; +App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; +App::$strings["Delete this connection"] = "Elimina questo contatto"; +App::$strings["Me"] = "Me"; +App::$strings["Family"] = "Famiglia"; +App::$strings["Friends"] = "Amici"; +App::$strings["Acquaintances"] = "Conoscenti"; +App::$strings["Approve this connection"] = "Approva questo contatto"; +App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; +App::$strings["Set Affinity"] = "Scegli l'affinità"; +App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; +App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; +App::$strings["none"] = "--"; +App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; +App::$strings["Connection: %s"] = "Contatto: %s"; +App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; +App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; +App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; +App::$strings["Available locations:"] = "Indirizzi disponibili"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; +App::$strings["Connection Tools"] = "Gestione dei contatti"; +App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; +App::$strings["Optionally explain your rating"] = "Commento facoltativo"; +App::$strings["Custom Filter"] = "Filtro personalizzato"; +App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; +App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; +App::$strings["This information is public!"] = "Questa informazione è pubblica!"; +App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; +App::$strings["inherited"] = "derivato"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; +App::$strings["Their Settings"] = "Permessi concessi a te"; +App::$strings["My Settings"] = "Permessi che concedo"; +App::$strings["Individual Permissions"] = "Permessi individuali"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; +App::$strings["Last update:"] = "Ultimo aggiornamento:"; App::$strings["Item not found"] = "Elemento non trovato"; App::$strings["Block Name"] = "Nome del block"; -App::$strings["Insert web link"] = "Inserisci un indirizzo web"; App::$strings["Title (optional)"] = "Titolo (facoltativo)"; App::$strings["Edit Block"] = "Modifica il block"; App::$strings["Layout Name"] = "Nome layout"; @@ -536,37 +560,30 @@ App::$strings["Categories (optional, comma separated list)"] = "Categorie (facol App::$strings["Version ID"] = "ID versione"; App::$strings["Price of app"] = "Prezzo app"; App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; -App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -App::$strings["Messages"] = "Messaggi"; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Conversation removed."] = "Conversazione rimossa."; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["Send"] = "Invia"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["Encrypt text"] = "Cifratura del messaggio"; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Delivery report"] = "Rapporto di trasmissione"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Delete Conversation"] = "Elimina la conversazione"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; +App::$strings["Public Hubs"] = "Hub pubblici"; +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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = "Statistiche"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rate"] = "Valuta"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["View"] = "Guarda"; App::$strings["Item not available."] = "Elemento non disponibile."; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["Documentation Search"] = "Ricerca nella guida"; -App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; @@ -583,7 +600,6 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incol App::$strings["Share this file"] = "Condividi questo file"; App::$strings["Show URL to this file"] = "Mostra l'URL del file"; App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; -App::$strings["Hub not found."] = "Hub non trovato."; App::$strings["Continue"] = "Continua"; App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; @@ -593,6 +609,17 @@ App::$strings["Potential connections will then see the following text before pro App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +App::$strings["Create a new channel"] = "Crea un nuovo canale"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Channel Manager"] = "Gestione canali"; +App::$strings["Current Channel"] = "Canale attuale"; +App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +App::$strings["Default Channel"] = "Canale predefinito"; +App::$strings["Make Default"] = "Rendi predefinito"; +App::$strings["%d new messages"] = "%d nuovi messaggi"; +App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +App::$strings["Delegated Channel"] = "Canale delegato"; App::$strings["Privacy group created."] = "Gruppo di canali creato."; App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; @@ -606,22 +633,22 @@ App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; App::$strings["Members"] = "Membri"; App::$strings["All Connected Channels"] = "Tutti i canali connessi"; App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; -App::$strings["Import selected"] = "Importa i selezionati"; -App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; -App::$strings["Export selected"] = "Esporta i selezionati"; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["Share"] = "Condividi"; -App::$strings["View"] = "Guarda"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Page Title"] = "Titolo della pagina"; -App::$strings["Invalid file type."] = "Tipo di file non valido."; -App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; -App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; -App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; -App::$strings["Import complete."] = "Importazione completata."; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +App::$strings["recipient not found"] = "Destinatario non trovato"; +App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; +App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +App::$strings["mail delivered"] = "messaggio recapitato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +App::$strings["Options"] = "Opzioni"; +App::$strings["Redeliver"] = "Reinvia"; App::$strings["webpage"] = "pagina web"; App::$strings["block"] = "block"; App::$strings["layout"] = "layout"; @@ -655,19 +682,15 @@ App::$strings["Please select another location to become primary before removing App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; App::$strings["No locations found."] = "Nessun indirizzo trovato."; App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; -App::$strings["Location"] = "Posizione geografica"; App::$strings["Primary"] = "Primario"; App::$strings["Sync Now"] = "Sincronizza ora"; App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; @@ -689,70 +712,6 @@ App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s n App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; App::$strings["Action completed."] = "Comando completato."; App::$strings["Thank you."] = "Grazie."; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -App::$strings["Create a new channel"] = "Crea un nuovo canale"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Channel Manager"] = "Gestione canali"; -App::$strings["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; -App::$strings["Default Channel"] = "Canale predefinito"; -App::$strings["Make Default"] = "Rendi predefinito"; -App::$strings["%d new messages"] = "%d nuovi messaggi"; -App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -App::$strings["Delegated Channel"] = "Canale delegato"; -App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; -App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; -App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -App::$strings["Menu Item Permissions"] = "Permessi del menu"; -App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -App::$strings["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; -App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; -App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; -App::$strings["Order in list"] = "Ordine dell'elenco"; -App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -App::$strings["Submit and finish"] = "Salva e termina"; -App::$strings["Submit and continue"] = "Salva e continua"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Destinazione link"; -App::$strings["Edit menu"] = "Modifica il menù"; -App::$strings["Edit element"] = "Modifica l'elemento"; -App::$strings["Drop element"] = "Elimina l'elemento"; -App::$strings["New element"] = "Nuovo elemento"; -App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; -App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; -App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; -App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; -App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -App::$strings["Link text"] = "Testo del link"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -App::$strings["No valid account found."] = "Nessun account valido trovato."; -App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; -App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; -App::$strings["Password Reset"] = "Reimposta la password"; -App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; -App::$strings["Your new password is"] = "La tua nuova password è"; -App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -App::$strings["click here to login"] = "clicca qui per accedere"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; -App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; -App::$strings["Email Address"] = "Indirizzo email"; -App::$strings["Reset"] = "Reimposta"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; -App::$strings["Mood"] = "Umore"; -App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; App::$strings["Profile not found."] = "Profilo non trovato."; App::$strings["Profile deleted."] = "Profilo eliminato."; App::$strings["Profile-"] = "Profilo-"; @@ -821,89 +780,44 @@ App::$strings["Contact information and social networks"] = "Contatti e social ne App::$strings["My other channels"] = "I miei altri canali"; App::$strings["Profile Image"] = "Immagine del profilo"; App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; -App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -App::$strings["System Notifications"] = "Notifiche di sistema"; -App::$strings["Profile Match"] = "Profili corrispondenti"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; -App::$strings["is interested in:"] = "interessi personali:"; -App::$strings["No matches"] = "Nessun risultato"; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; -App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; -App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; -App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; -App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; -App::$strings["Event not found."] = "Evento non trovato."; -App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; -App::$strings["Event title"] = "Titolo dell'evento"; -App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -App::$strings["Edit Category"] = "Modifica la categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; -App::$strings["Start date and time"] = "Data e ora di inizio"; -App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; -App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; -App::$strings["Finish date and time"] = "Data e ora di fine"; -App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; -App::$strings["Edit Description"] = "Modifica la descrizione"; -App::$strings["Edit Location"] = "Modifica il luogo"; -App::$strings["Share this event"] = "Condividi questo evento"; -App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; -App::$strings["Advanced Options"] = "Opzioni avanzate"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Modifica l'evento"; -App::$strings["Delete event"] = "Elimina l'evento"; -App::$strings["Link to Source"] = "Link al sito d'origine"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Modifica l'evento"; -App::$strings["Create Event"] = "Crea un evento"; -App::$strings["Previous"] = "Precendente"; +App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; +App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; +App::$strings["Link Name"] = "Nome link"; +App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; +App::$strings["Order in list"] = "Ordine dell'elenco"; +App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +App::$strings["Submit and finish"] = "Salva e termina"; +App::$strings["Submit and continue"] = "Salva e continua"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Destinazione link"; +App::$strings["Edit menu"] = "Modifica il menù"; +App::$strings["Edit element"] = "Modifica l'elemento"; +App::$strings["Drop element"] = "Elimina l'elemento"; +App::$strings["New element"] = "Nuovo elemento"; +App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; +App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; +App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; +App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; +App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; +App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; +App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; +App::$strings["Link text"] = "Testo del link"; +App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; +App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; +App::$strings["Could not create table."] = "Impossibile creare le tabelle."; +App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; +App::$strings["System check"] = "Verifica del sistema"; App::$strings["Next"] = "Successivo"; -App::$strings["Export"] = "Esporta"; -App::$strings["Month"] = "Mese"; -App::$strings["Week"] = "Settimana"; -App::$strings["Day"] = "Giorno"; -App::$strings["Today"] = "Oggi"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; -App::$strings["Create Channel"] = "Crea un canale"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; -App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; -App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato"; -App::$strings["added your channel"] = "ha aggiunto il tuo canale"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[oggi]"; -App::$strings["posted an event"] = "ha creato un evento"; -App::$strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; -App::$strings["Discard"] = "Rifiuta"; -App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; -App::$strings["Poke"] = "Poke"; -App::$strings["Poke somebody"] = "Manda un poke"; -App::$strings["Poke/Prod"] = "Poke/Prod"; -App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; -App::$strings["Make this post private"] = "Rendi privato questo post"; -App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; -App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; -App::$strings["Could not create table."] = "Impossibile creare le tabelle."; -App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; -App::$strings["System check"] = "Verifica del sistema"; App::$strings["Check again"] = "Verifica di nuovo"; App::$strings["Database connection"] = "Connessione al database"; App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; @@ -981,6 +895,142 @@ App::$strings["The database configuration file \".htconfig.php\" could not be wr App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; App::$strings["

    What next

    "] = "

    I prossimi passi

    "; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; +App::$strings["No valid account found."] = "Nessun account valido trovato."; +App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; +App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; +App::$strings["Password Reset"] = "Reimposta la password"; +App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; +App::$strings["Your new password is"] = "La tua nuova password è"; +App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +App::$strings["click here to login"] = "clicca qui per accedere"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; +App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; +App::$strings["Email Address"] = "Indirizzo email"; +App::$strings["Reset"] = "Reimposta"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; +App::$strings["Mood"] = "Umore"; +App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; +App::$strings["Remove This Channel"] = "Elimina questo canale"; +App::$strings["WARNING: "] = "ATTENZIONE:"; +App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; +App::$strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; +App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; +App::$strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; +App::$strings["Remove Channel"] = "Elimina questo canale"; +App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +App::$strings["System Notifications"] = "Notifiche di sistema"; +App::$strings["Profile Match"] = "Profili corrispondenti"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; +App::$strings["is interested in:"] = "interessi personali:"; +App::$strings["Connect"] = "Aggiungi"; +App::$strings["No matches"] = "Nessun risultato"; +App::$strings["This site is not a directory server"] = "Questo non è un directory server"; +App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Album not found."] = "Album non trovato."; +App::$strings["Delete Album"] = "Elimina album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; +App::$strings["Delete Photo"] = "Elimina foto"; +App::$strings["Public access denied."] = "Accesso pubblico negato."; +App::$strings["No photos selected"] = "Nessuna foto selezionata"; +App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +App::$strings["Upload Photos"] = "Carica foto"; +App::$strings["Enter an album name"] = "Scegli il nome dell'album"; +App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; +App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; +App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +App::$strings["Contact Photos"] = "Foto dei contatti"; +App::$strings["Show Newest First"] = "Prima i più recenti"; +App::$strings["Show Oldest First"] = "Prima i più vecchi"; +App::$strings["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +App::$strings["Photo not available"] = "Foto non disponibile"; +App::$strings["Use as profile photo"] = "Usa come foto del profilo"; +App::$strings["Use as cover photo"] = "Usa come copertina del canale"; +App::$strings["Private Photo"] = "Foto privata"; +App::$strings["Previous"] = "Precendente"; +App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; +App::$strings["Edit photo"] = "Modifica la foto"; +App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; +App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +App::$strings["Move photo to album"] = "Sposta la foto in un album"; +App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +App::$strings["Caption"] = "Didascalia"; +App::$strings["Add a Tag"] = "Aggiungi tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Share"] = "Condividi"; +App::$strings["Please wait"] = "Attendere"; +App::$strings["This is you"] = "Questo sei tu"; +App::$strings["Comment"] = "Commento"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["__ctx:title__ Likes"] = "Mi piace"; +App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; +App::$strings["__ctx:title__ Agree"] = "D'accordo"; +App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; +App::$strings["__ctx:title__ Abstain"] = "Astenuti"; +App::$strings["__ctx:title__ Attending"] = "Partecipano"; +App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; +App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; +App::$strings["View all"] = "Vedi tutto"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["Name or caption"] = "Nome o titolo"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +App::$strings["Choose a short nickname"] = "Scegli un nome breve"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; +App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; +App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["Create Channel"] = "Crea un canale"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; +App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; +App::$strings["sent you a private message"] = "ti ha inviato un messaggio privato"; +App::$strings["added your channel"] = "ha aggiunto il tuo canale"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[oggi]"; +App::$strings["posted an event"] = "ha creato un evento"; +App::$strings["Invalid request identifier."] = "L'identificativo della richiesta non è valido."; +App::$strings["Discard"] = "Rifiuta"; +App::$strings["Mark all system notifications seen"] = "Segna come lette le notifiche di sistema"; +App::$strings["Poke"] = "Poke"; +App::$strings["Poke somebody"] = "Manda un poke"; +App::$strings["Poke/Prod"] = "Poke/Prod"; +App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o altro a qualcuno"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; +App::$strings["Make this post private"] = "Rendi privato questo post"; +App::$strings["Apps"] = "App"; App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; App::$strings["Post successful."] = "Inviato!"; App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; @@ -991,7 +1041,6 @@ App::$strings["Visible To"] = "Visibile a"; App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; App::$strings["Configuration Editor"] = "Editor di configurazione"; 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."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["Apps"] = "App"; App::$strings["Version %s"] = "Versione %s"; App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1012,99 +1061,68 @@ App::$strings["Help"] = "Guida"; App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; App::$strings["Layout Description"] = "Descrizione del layout"; App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["# Accounts"] = "# account"; +App::$strings["# blocked accounts"] = "# account bloccati"; +App::$strings["# expired accounts"] = "# account scaduti"; +App::$strings["# expiring accounts"] = "# account in scadenza"; +App::$strings["# Channels"] = "# canali"; +App::$strings["# primary"] = "# primari"; +App::$strings["# clones"] = "# cloni"; +App::$strings["Message queues"] = "Coda messaggi in uscita"; +App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; +App::$strings["Summary"] = "Riepilogo"; +App::$strings["Registered accounts"] = "Account creati"; +App::$strings["Pending registrations"] = "Registrazioni da approvare"; +App::$strings["Registered channels"] = "Canali creati"; +App::$strings["Active plugins"] = "Plugin attivi"; +App::$strings["Version"] = "Versione"; +App::$strings["Repository version (master)"] = "Versione del repository (master)"; +App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; App::$strings["Permissions denied."] = "Permesso negato."; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Link al sito d'origine"; +App::$strings["Edit Event"] = "Modifica l'evento"; +App::$strings["Create Event"] = "Crea un evento"; +App::$strings["Export"] = "Esporta"; App::$strings["Import"] = "Importa"; +App::$strings["Today"] = "Oggi"; App::$strings["No channel."] = "Nessun canale."; App::$strings["Common connections"] = "Contatti in comune"; App::$strings["No connections in common."] = "Nessun contatto in comune."; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; -App::$strings["Public Hubs"] = "Hub pubblici"; -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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Rate"] = "Valuta"; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; -App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; -App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -App::$strings["Connection updated."] = "Contatto aggiornato."; -App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; -App::$strings["is now connected to"] = "ha come nuovo contatto"; -App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; -App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; -App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; -App::$strings["View Profile"] = "Profilo"; -App::$strings["View %s's profile"] = "Guarda il profilo di %s"; -App::$strings["Refresh Permissions"] = "Modifica i permessi"; -App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; -App::$strings["Recent Activity"] = "Attività recenti"; -App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; -App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; -App::$strings["Unignore"] = "Non ignorare"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; -App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; -App::$strings["Unarchive"] = "Non archiviare"; -App::$strings["Archive"] = "Archivia"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; -App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; -App::$strings["Unhide"] = "Non nascondere"; -App::$strings["Hide"] = "Nascondi"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; -App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; -App::$strings["Delete this connection"] = "Elimina questo contatto"; -App::$strings["Me"] = "Me"; -App::$strings["Family"] = "Famiglia"; -App::$strings["Friends"] = "Amici"; -App::$strings["Acquaintances"] = "Conoscenti"; -App::$strings["Approve this connection"] = "Approva questo contatto"; -App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; -App::$strings["Set Affinity"] = "Scegli l'affinità"; -App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; -App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; -App::$strings["none"] = "--"; -App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; -App::$strings["Connection: %s"] = "Contatto: %s"; -App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; -App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; -App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; -App::$strings["Available locations:"] = "Indirizzi disponibili"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; -App::$strings["Connection Tools"] = "Gestione dei contatti"; -App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; -App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; -App::$strings["Optionally explain your rating"] = "Commento facoltativo"; -App::$strings["Custom Filter"] = "Filtro personalizzato"; -App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; -App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; -App::$strings["This information is public!"] = "Questa informazione è pubblica!"; -App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; -App::$strings["inherited"] = "derivato"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; -App::$strings["Their Settings"] = "Permessi concessi a te"; -App::$strings["My Settings"] = "Permessi che concedo"; -App::$strings["Individual Permissions"] = "Permessi individuali"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; -App::$strings["Last update:"] = "Ultimo aggiornamento:"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +App::$strings["Passwords do not match."] = "Le password non corrispondono."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; +App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; +App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; +App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +App::$strings["Terms of Service"] = "Condizioni d'Uso"; +App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +App::$strings["Your email address"] = "Il tuo indirizzo email"; +App::$strings["Choose a password"] = "Scegli una password"; +App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; +App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sì"; +App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; +App::$strings["Register"] = "Registrati"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; +App::$strings["Documentation Search"] = "Ricerca nella guida"; +App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; App::$strings["Save Bookmark"] = "Salva segnalibro"; App::$strings["URL of bookmark"] = "URL del segnalibro"; App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -App::$strings["This site is not a directory server"] = "Questo non è un directory server"; App::$strings["Authentication failed."] = "Autenticazione fallita."; App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; @@ -1112,19 +1130,23 @@ App::$strings["Authenticate"] = "Accedi"; App::$strings["Please login."] = "Effettua l'accesso."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; App::$strings["Remove This Account"] = "Elimina questo account"; -App::$strings["WARNING: "] = "ATTENZIONE:"; App::$strings["This account and all its channels will be completely removed from the network. "] = "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete."; -App::$strings["This action is permanent and can not be undone!"] = "Questo comando è definitivo e non può essere annullato!"; -App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete."; App::$strings["Remove Account"] = "Elimina l'account"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; -App::$strings["Remove This Channel"] = "Elimina questo canale"; -App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; -App::$strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; -App::$strings["Remove Channel"] = "Elimina questo canale"; +App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; +App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; +App::$strings["Export selected"] = "Esporta i selezionati"; +App::$strings["Webpages"] = "Pagine web"; +App::$strings["Actions"] = "Azioni"; +App::$strings["Page Link"] = "Link alla pagina"; +App::$strings["Page Title"] = "Titolo della pagina"; +App::$strings["Invalid file type."] = "Tipo di file non valido."; +App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; +App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; +App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; +App::$strings["Import complete."] = "Importazione completata."; App::$strings["Export Channel"] = "Esporta il canale"; App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."; App::$strings["Export Content"] = "Esporta i contenuti"; @@ -1137,10 +1159,37 @@ App::$strings["These content files may be imported or restored by visiting "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; @@ -1294,23 +1284,33 @@ App::$strings["Expiration"] = "Scadenza"; App::$strings["min"] = "min"; App::$strings["Xchan Lookup"] = "Ricerca canale"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; -App::$strings["# Accounts"] = "# account"; -App::$strings["# blocked accounts"] = "# account bloccati"; -App::$strings["# expired accounts"] = "# account scaduti"; -App::$strings["# expiring accounts"] = "# account in scadenza"; -App::$strings["# Channels"] = "# canali"; -App::$strings["# primary"] = "# primari"; -App::$strings["# clones"] = "# cloni"; -App::$strings["Message queues"] = "Coda messaggi in uscita"; -App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; -App::$strings["Summary"] = "Riepilogo"; -App::$strings["Registered accounts"] = "Account creati"; -App::$strings["Pending registrations"] = "Registrazioni da approvare"; -App::$strings["Registered channels"] = "Canali creati"; -App::$strings["Active plugins"] = "Plugin attivi"; -App::$strings["Version"] = "Versione"; -App::$strings["Repository version (master)"] = "Versione del repository (master)"; -App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; +App::$strings["%d rating"] = array( + 0 => "%d valutazione", + 1 => "%d valutazioni", +); +App::$strings["Gender: "] = "Sesso:"; +App::$strings["Status: "] = "Stato:"; +App::$strings["Homepage: "] = "Homepage:"; +App::$strings["Age:"] = "Età:"; +App::$strings["Location:"] = "Luogo:"; +App::$strings["Description:"] = "Descrizione:"; +App::$strings["Hometown:"] = "Città dove vivo:"; +App::$strings["About:"] = "Informazioni:"; +App::$strings["Public Forum:"] = "Forum pubblico:"; +App::$strings["Keywords: "] = "Parole chiave:"; +App::$strings["Don't suggest"] = "Non fornire suggerimenti"; +App::$strings["Common connections:"] = "Contatti in comune:"; +App::$strings["Global Directory"] = "Elenchi pubblici globali"; +App::$strings["Local Directory"] = "Elenco canali su questo hub"; +App::$strings["Finding:"] = "Ricerca:"; +App::$strings["next page"] = "pagina successiva"; +App::$strings["previous page"] = "pagina precedente"; +App::$strings["Sort options"] = "Opzioni di ordinamento"; +App::$strings["Alphabetic"] = "Alfabetico"; +App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; +App::$strings["Newest to Oldest"] = "Prima i più recenti"; +App::$strings["Oldest to Newest"] = "Prima i più vecchi"; +App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; App::$strings["Not valid email."] = "Email non valida."; App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; @@ -1477,7 +1477,7 @@ App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Grazie,"; App::$strings["%s Administrator"] = "L'amministratore di %s"; App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla] Nuovo messaggio su %s"; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notifica] Nuovo messaggio su %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s ti ha mandato un messaggio privato su %3\$s."; App::$strings["%1\$s sent you %2\$s."] = "%1\$s ti ha mandato %2\$s."; App::$strings["a private message"] = "un messaggio privato"; @@ -1485,72 +1485,35 @@ App::$strings["Please visit %s to view and/or reply to your private messages."] App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s[/zrl]"; App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%5\$s di %4\$s[/zrl]"; App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha commentato [zrl=%3\$s]%4\$s che hai creato[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla] Nuovo commento di %2\$s alla conversazione #%1\$d"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notifica] Nuovo commento di %2\$s alla conversazione #%1\$d"; App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha commentato un elemento che stavi seguendo."; App::$strings["Please visit %s to view and/or reply to the conversation."] = "Visita %s per leggere o commentare la conversazione."; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla] %s ha scritto sulla tua bacheca"; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notifica] %s ha scritto sulla tua bacheca"; App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha scritto sulla bacheca del tuo profilo su %3\$s"; App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha scritto sulla [zrl=%3\$s]tua bacheca[/zrl]"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla] %s ti ha taggato"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notifica] %s ti ha taggato"; App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s ti ha taggato su %3\$s"; App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]ti ha taggato[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla] %1\$s ti ha mandato un poke"; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notifica] %1\$s ti ha mandato un poke"; App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s ti ha mandato un poke su %3\$s"; App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]ti ha mandato un poke[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla] %s ha taggato il tuo post"; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notifica] %s ha taggato il tuo post"; App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha taggato il tuo post su %3\$s"; App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha taggato [zrl=%3\$s]il tuo post[/zrl]"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla] Hai una richiesta di amicizia"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notifica] Hai una richiesta di amicizia"; App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, hai ricevuto una richiesta di entrare in contatto da '%2\$s' su %3\$s"; App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, hai ricevuto una [zrl=%2\$s]richiesta di entrare in contatto[/zrl] da %3\$s."; App::$strings["You may visit their profile at %s"] = "Puoi visitare il suo profilo su %s"; App::$strings["Please visit %s to approve or reject the connection request."] = "Visita %s per approvare o rifiutare la richiesta di entrare in contatto."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla] Ti è stato suggerito un amico"; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notifica] Ti è stato suggerito un amico"; App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ti è stato suggerito un amico da '%2\$s' su %3\$s"; App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, %4\$s ti [zrl=%2\$s]ha suggerito %3\$s[/zrl] come amico."; App::$strings["Name:"] = "Nome:"; App::$strings["Photo:"] = "Foto:"; App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla]"; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Notifica]"; App::$strings["created a new post"] = "Ha creato un nuovo post"; App::$strings["commented on %s's post"] = "ha commentato il post di %s"; -App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; -App::$strings["Only me"] = "Solo io"; -App::$strings["Public"] = "Pubblico"; -App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; -App::$strings["Any account on %s"] = "Tutti gli account su %s"; -App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; -App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; -App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; -App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; -App::$strings["Site Admin"] = "Amministrazione sito"; -App::$strings["Bug Report"] = "Bug Report"; -App::$strings["View Bookmarks"] = "Vedi i segnalibri"; -App::$strings["My Chatrooms"] = "Le mie aree chat"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnostica remota"; -App::$strings["Suggest Channels"] = "Suggerisci canali"; -App::$strings["Login"] = "Accedi"; -App::$strings["Grid"] = "Rete"; -App::$strings["Channel Home"] = "Bacheca del canale"; -App::$strings["Events"] = "Eventi"; -App::$strings["Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Mail"] = "Messaggi"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Diagnostica"; -App::$strings["Suggest"] = "Suggerisci"; -App::$strings["Random Channel"] = "Canale casuale"; -App::$strings["Invite"] = "Invita"; -App::$strings["Features"] = "Funzionalità"; -App::$strings["Language"] = "Lingua"; -App::$strings["Post"] = "Post"; -App::$strings["Profile Photo"] = "Foto del profilo"; -App::$strings["Purchase"] = "Acquista"; App::$strings["Private Message"] = "Messaggio privato"; App::$strings["Select"] = "Scegli"; App::$strings["Save to Folder"] = "Salva nella cartella"; @@ -1596,79 +1559,46 @@ App::$strings["Code"] = "Codice"; App::$strings["Image"] = "Immagine"; App::$strings["Insert Link"] = "Collegamento"; App::$strings["Video"] = "Video"; -App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; -App::$strings["a new photo"] = "una nuova foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["Logout"] = "Esci"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Your chatrooms"] = "Le tue chat"; -App::$strings["Bookmarks"] = "Segnalibri"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Your wiki"] = "La tua wiki"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["%s - click to logout"] = "%s - clicca per uscire"; -App::$strings["Remote authentication"] = "Accedi dal tuo hub"; -App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Your grid"] = "La tua rete"; -App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Private mail"] = "Messaggi privati"; -App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; -App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Event Calendar"] = "Calendario"; -App::$strings["See all events"] = "Guarda tutti gli eventi"; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; -App::$strings["Loading..."] = "Caricamento in corso..."; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; +App::$strings["Only me"] = "Solo io"; +App::$strings["Public"] = "Pubblico"; +App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; +App::$strings["Any account on %s"] = "Tutti gli account su %s"; +App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; +App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; +App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; +App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; +App::$strings["Site Admin"] = "Amministrazione sito"; +App::$strings["Bug Report"] = "Bug Report"; +App::$strings["View Bookmarks"] = "Vedi i segnalibri"; +App::$strings["My Chatrooms"] = "Le mie aree chat"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnostica remota"; +App::$strings["Suggest Channels"] = "Suggerisci canali"; +App::$strings["Login"] = "Accedi"; +App::$strings["Grid"] = "Rete"; +App::$strings["Channel Home"] = "Bacheca del canale"; +App::$strings["Events"] = "Eventi"; +App::$strings["Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Mail"] = "Messaggi"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Diagnostica"; +App::$strings["Suggest"] = "Suggerisci"; +App::$strings["Random Channel"] = "Canale casuale"; +App::$strings["Invite"] = "Invita"; +App::$strings["Features"] = "Funzionalità"; +App::$strings["Language"] = "Lingua"; +App::$strings["Post"] = "Post"; +App::$strings["Profile Photo"] = "Foto del profilo"; +App::$strings["Purchase"] = "Acquista"; +App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; @@ -1682,58 +1612,180 @@ App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; -App::$strings["(Unknown)"] = "(Sconosciuto)"; -App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -App::$strings["Visible to you only."] = "Visibile solo a te."; -App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; -App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["profile photo"] = "foto del profilo"; -App::$strings["Birthday"] = "Compleanno"; -App::$strings["Age: "] = "Età:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; -App::$strings["never"] = "mai"; -App::$strings["less than a second ago"] = "meno di un secondo fa"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "anno", - 1 => "anni", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mese", - 1 => "mesi", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "settimana", - 1 => "settimane", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "giorno", - 1 => "giorni", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "ora", - 1 => "ore", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minuti", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "secondo", - 1 => "secondi", -); -App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; +App::$strings["a new photo"] = "una nuova foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Upload New Photos"] = "Carica nuove foto"; +App::$strings["General Features"] = "Funzionalità di base"; +App::$strings["Multiple Profiles"] = "Profili multipli"; +App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +App::$strings["Advanced Profiles"] = "Profili avanzati"; +App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; +App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; +App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; +App::$strings["Web Pages"] = "Pagine web"; +App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; +App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; +App::$strings["Private Notes"] = "Note private"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; +App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; +App::$strings["Photo Location"] = "Posizione geografica"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; +App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; +App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato."; +App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; +App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pubblici"; +App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; +App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; +App::$strings["Post Composition Features"] = "Modalità di scrittura post"; +App::$strings["Large Photos"] = "Foto grandi"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; +App::$strings["Even More Encryption"] = "Cifratura addizionale"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; +App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; +App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; +App::$strings["Disable Comments"] = "Disabilita i commenti"; +App::$strings["Provide the option to disable comments for a post"] = "Permetti di disabilitare i commenti"; +App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; +App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; +App::$strings["Content Expiration"] = "Scadenza"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; +App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; +App::$strings["Search by Date"] = "Ricerca per data"; +App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; +App::$strings["Privacy Groups"] = "Gruppi di canali"; +App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["Saved Searches"] = "Ricerche salvate"; +App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; +App::$strings["Network Personal Tab"] = "Attività personale"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; +App::$strings["Network New Tab"] = "Contenuti nuovi"; +App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; +App::$strings["Affinity Tool"] = "Filtro per affinità"; +App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; +App::$strings["Show friend and connection suggestions"] = "Mostra suggerimenti di contatti e amici"; +App::$strings["Connection Filtering"] = "Filtro sui contatti"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; +App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; +App::$strings["Community Tagging"] = "Tag della comunità"; +App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; +App::$strings["Post Categories"] = "Categorie dei post"; +App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; +App::$strings["Emoji Reactions"] = "Risposte emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; +App::$strings["Saved Folders"] = "Cartelle salvate"; +App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; +App::$strings["Dislike Posts"] = "Non mi piace"; +App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; +App::$strings["Star Posts"] = "Post con stella"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; +App::$strings["Tag Cloud"] = "Nuvola di tag"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; +App::$strings["Premium Channel"] = "Canale premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; +App::$strings["Help:"] = "Guida:"; +App::$strings["guest:"] = "ospite:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +App::$strings["newer"] = "più nuovi"; +App::$strings["No connections"] = "Nessun contatto"; +App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; +App::$strings["poke"] = "poke"; +App::$strings["poked"] = "ha mandato un poke"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["Monday"] = "lunedì"; +App::$strings["Tuesday"] = "martedì"; +App::$strings["Wednesday"] = "mercoledì"; +App::$strings["Thursday"] = "giovedì"; +App::$strings["Friday"] = "venerdì"; +App::$strings["Saturday"] = "sabato"; +App::$strings["Sunday"] = "domenica"; +App::$strings["January"] = "gennaio"; +App::$strings["February"] = "febbraio"; +App::$strings["March"] = "marzo"; +App::$strings["April"] = "aprile"; +App::$strings["May"] = "Mag"; +App::$strings["June"] = "giugno"; +App::$strings["July"] = "luglio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "settembre"; +App::$strings["October"] = "ottobre"; +App::$strings["November"] = "novembre"; +App::$strings["December"] = "dicembre"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; +App::$strings["activity"] = "l'attività"; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/posizione/della/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Export website..."] = "Esporta il sito web..."; +App::$strings["Export to a zip file"] = "Esporta come file zip"; +App::$strings["website.zip"] = "sitoweb.zip"; +App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; +App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; +App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; +App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; +App::$strings["Specify folder"] = "Scegli la cartella"; +App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; +App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; App::$strings["Not a valid email address"] = "Email non valida"; App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; @@ -1743,6 +1795,7 @@ App::$strings["Please enter the required information."] = "Inserisci le informaz App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +App::$strings["Administrator"] = "Amministratore"; App::$strings["your registration password"] = "la password di registrazione"; App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; App::$strings["Account approved."] = "Account approvato."; @@ -1750,6 +1803,10 @@ App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; +App::$strings["[no subject]"] = "[nessun titolo]"; +App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; App::$strings["Frequently"] = "Frequentemente"; App::$strings["Hourly"] = "Ogni ora"; App::$strings["Twice daily"] = "Due volte al giorno"; @@ -1804,63 +1861,125 @@ App::$strings["Not looking"] = "Non in cerca"; App::$strings["Swinger"] = "Scambista"; App::$strings["Betrayed"] = "Tradito/a"; App::$strings["Separated"] = "Separato/a"; -App::$strings["Unstable"] = "Instabile"; -App::$strings["Divorced"] = "Divorziato/a"; -App::$strings["Imaginarily divorced"] = "Sogna il divorzio"; -App::$strings["Widowed"] = "Vedovo/a"; -App::$strings["Uncertain"] = "Incerto/a"; -App::$strings["It's complicated"] = "Relazione complicata"; -App::$strings["Don't care"] = "Chi se ne frega"; -App::$strings["Ask me"] = "Chiedimelo"; -App::$strings["Image/photo"] = "Immagine"; -App::$strings["Encrypted content"] = "Contenuto cifrato"; -App::$strings["Install %s element: "] = "Installa l'elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; -App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["Not specified"] = "Non specificato"; -App::$strings["Needs Action"] = "Necessita di un intervento"; -App::$strings["Completed"] = "Completato"; -App::$strings["In Process"] = "In corso"; -App::$strings["Cancelled"] = "Annullato"; -App::$strings["guest:"] = "ospite:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; -App::$strings["Help:"] = "Guida:"; +App::$strings["Unstable"] = "Instabile"; +App::$strings["Divorced"] = "Divorziato/a"; +App::$strings["Imaginarily divorced"] = "Sogna il divorzio"; +App::$strings["Widowed"] = "Vedovo/a"; +App::$strings["Uncertain"] = "Incerto/a"; +App::$strings["It's complicated"] = "Relazione complicata"; +App::$strings["Don't care"] = "Chi se ne frega"; +App::$strings["Ask me"] = "Chiedimelo"; +App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +App::$strings["Empty name"] = "Nome vuoto"; +App::$strings["Name too long"] = "Nome troppo lungo"; +App::$strings["No account identifier"] = "Account senza identificativo"; +App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Edit Profile"] = "Modifica il profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Status:"] = "Stato:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Like this channel"] = "Mi piace questo canale"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Compleanno:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; +App::$strings["Tags:"] = "Tag:"; +App::$strings["Political Views:"] = "Orientamento politico:"; +App::$strings["Religion:"] = "Religione:"; +App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; +App::$strings["Likes:"] = "Mi piace:"; +App::$strings["Dislikes:"] = "Non mi piace:"; +App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; +App::$strings["My other channels:"] = "I miei altri canali:"; +App::$strings["Musical interests:"] = "Gusti musicali:"; +App::$strings["Books, literature:"] = "Libri, letteratura:"; +App::$strings["Television:"] = "Televisione:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +App::$strings["Love/Romance:"] = "Amore:"; +App::$strings["Work/employment:"] = "Lavoro:"; +App::$strings["School/education:"] = "Scuola:"; +App::$strings["Like this thing"] = "Mi piace"; +App::$strings["Who can see this?"] = "Chi può vederlo?"; +App::$strings["Custom selection"] = "Selezione personalizzata"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; +App::$strings["Show"] = "Mostra"; +App::$strings["Don't show"] = "Non mostrare"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; App::$strings["edit"] = "modifica"; -App::$strings["Privacy Groups"] = "Gruppi di canali"; App::$strings["Edit group"] = "Modifica il gruppo"; App::$strings["Add privacy group"] = "Crea un gruppo di canali"; App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; App::$strings["add"] = "aggiungi"; -App::$strings["Item was not found."] = "Elemento non trovato."; -App::$strings["No source file."] = "Nessun file di origine."; -App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -App::$strings["Path not available."] = "Percorso non disponibile."; -App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; -App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -App::$strings["Path not found."] = "Percorso del file non trovato."; -App::$strings["mkdir failed."] = "mkdir fallito."; -App::$strings["database storage failed."] = "scrittura su database fallita."; -App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["New window"] = "Nuova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; App::$strings["New Page"] = "Nuova pagina web"; App::$strings["Title"] = "Titolo"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +App::$strings["Logout"] = "Esci"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Your photos"] = "Le tue foto"; +App::$strings["Your files"] = "I tuoi file"; +App::$strings["Your chatrooms"] = "Le tue chat"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Your bookmarks"] = "I tuoi segnalibri"; +App::$strings["Your webpages"] = "Le tue pagine web"; +App::$strings["Your wiki"] = "La tua wiki"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["%s - click to logout"] = "%s - clicca per uscire"; +App::$strings["Remote authentication"] = "Accedi dal tuo hub"; +App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +App::$strings["Home Page"] = "Bacheca"; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Your grid"] = "La tua rete"; +App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +App::$strings["Channel home"] = "Bacheca del canale"; +App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +App::$strings["Notices"] = "Avvisi"; +App::$strings["Notifications"] = "Notifiche"; +App::$strings["See all notifications"] = "Vedi tutte le notifiche"; +App::$strings["Private mail"] = "Messaggi privati"; +App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; +App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Event Calendar"] = "Calendario"; +App::$strings["See all events"] = "Guarda tutti gli eventi"; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["Loading..."] = "Caricamento in corso..."; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; App::$strings["Attachments:"] = "Allegati:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; +App::$strings["Starts:"] = "Inizio:"; +App::$strings["Finishes:"] = "Fine:"; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; App::$strings["%s show less"] = "%s riduci"; App::$strings["%s expand"] = "%s mostra tutto"; @@ -1894,18 +2013,7 @@ App::$strings["about a year"] = "circa un anno"; App::$strings["%d years"] = "%d anni"; App::$strings[" "] = " "; App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["January"] = "gennaio"; -App::$strings["February"] = "febbraio"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "aprile"; App::$strings["__ctx:long__ May"] = "maggio"; -App::$strings["June"] = "giugno"; -App::$strings["July"] = "luglio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "settembre"; -App::$strings["October"] = "ottobre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "dicembre"; App::$strings["Jan"] = "Gen"; App::$strings["Feb"] = "Feb"; App::$strings["Mar"] = "Mar"; @@ -1918,13 +2026,6 @@ App::$strings["Sep"] = "Set"; App::$strings["Oct"] = "Ott"; App::$strings["Nov"] = "Nov"; App::$strings["Dec"] = "Dic"; -App::$strings["Sunday"] = "domenica"; -App::$strings["Monday"] = "lunedì"; -App::$strings["Tuesday"] = "martedì"; -App::$strings["Wednesday"] = "mercoledì"; -App::$strings["Thursday"] = "giovedì"; -App::$strings["Friday"] = "venerdì"; -App::$strings["Saturday"] = "sabato"; App::$strings["Sun"] = "Dom"; App::$strings["Mon"] = "Lun"; App::$strings["Tue"] = "Mar"; @@ -1944,83 +2045,16 @@ App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato App::$strings["Protocol disabled."] = "Protocollo disabilitato."; App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -App::$strings["Who can see this?"] = "Chi può vederlo?"; -App::$strings["Custom selection"] = "Selezione personalizzata"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; -App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -App::$strings["Empty name"] = "Nome vuoto"; -App::$strings["Name too long"] = "Nome troppo lungo"; -App::$strings["No account identifier"] = "Account senza identificativo"; -App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Like this channel"] = "Mi piace questo canale"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Compleanno:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; -App::$strings["Likes:"] = "Mi piace:"; -App::$strings["Dislikes:"] = "Non mi piace:"; -App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; -App::$strings["My other channels:"] = "I miei altri canali:"; -App::$strings["Musical interests:"] = "Gusti musicali:"; -App::$strings["Books, literature:"] = "Libri, letteratura:"; -App::$strings["Television:"] = "Televisione:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -App::$strings["Love/Romance:"] = "Amore:"; -App::$strings["Work/employment:"] = "Lavoro:"; -App::$strings["School/education:"] = "Scuola:"; -App::$strings["Like this thing"] = "Mi piace"; -App::$strings["New window"] = "Nuova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -App::$strings["Find Channels"] = "Ricerca canali"; -App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -App::$strings["Connect/Follow"] = "Aggiungi"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -App::$strings["Random Profile"] = "Profilo casuale"; -App::$strings["Invite Friends"] = "Invita amici"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -App::$strings["Saved Folders"] = "Cartelle salvate"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Categories"] = "Categorie"; -App::$strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -App::$strings["show more"] = "mostra tutto"; -App::$strings["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings[" and "] = "e"; -App::$strings["public profile"] = "profilo pubblico"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +App::$strings["Image/photo"] = "Immagine"; +App::$strings["Encrypted content"] = "Contenuto cifrato"; +App::$strings["Install %s element: "] = "Installa l'elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["$1 wrote:"] = "$1 ha scritto:"; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -App::$strings["poked"] = "ha mandato un poke"; App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; App::$strings["Categories:"] = "Categorie:"; App::$strings["Filed under:"] = "Classificato come:"; @@ -2095,18 +2129,88 @@ App::$strings["__ctx:noun__ Undecided"] = array( 0 => "Indeciso", 1 => "Indecisi", ); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accordo", - 1 => "D'accordo", +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accordo", + 1 => "D'accordo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Non d'accordo", + 1 => "Non d'accordo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Astenuto", + 1 => "Astenuti", +); +App::$strings["Birthday"] = "Compleanno"; +App::$strings["Age: "] = "Età:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; +App::$strings["never"] = "mai"; +App::$strings["less than a second ago"] = "meno di un secondo fa"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s fa"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "anno", + 1 => "anni", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mese", + 1 => "mesi", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "settimana", + 1 => "settimane", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "giorno", + 1 => "giorni", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "ora", + 1 => "ore", ); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Non d'accordo", - 1 => "Non d'accordo", +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minuti", ); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Astenuto", - 1 => "Astenuti", +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "secondo", + 1 => "secondi", ); +App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; +App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; +App::$strings["Safe Mode"] = "Modalità SafeSearch"; +App::$strings["Public Forums Only"] = "Solo forum pubblici"; +App::$strings["This Website Only"] = "Solo in questo sito"; +App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +App::$strings["Not specified"] = "Non specificato"; +App::$strings["Needs Action"] = "Necessita di un intervento"; +App::$strings["Completed"] = "Completato"; +App::$strings["In Process"] = "In corso"; +App::$strings["Cancelled"] = "Annullato"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; +App::$strings["Logged out."] = "Uscita effettuata."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Login failed."] = "Accesso fallito."; +App::$strings[" and "] = "e"; +App::$strings["public profile"] = "profilo pubblico"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +App::$strings["No Subject"] = "Nessun titolo"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Categories"] = "Categorie"; App::$strings["Tags"] = "Tag"; App::$strings["Keywords"] = "Parole chiave"; App::$strings["have"] = "ho"; @@ -2115,83 +2219,23 @@ App::$strings["want"] = "voglio"; App::$strings["wants"] = "vuole"; App::$strings["likes"] = "gli piace"; App::$strings["dislikes"] = "non gli piace"; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; -App::$strings["poke"] = "poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["May"] = "Mag"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/posizione/della/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Export website..."] = "Esporta il sito web..."; -App::$strings["Export to a zip file"] = "Esporta come file zip"; -App::$strings["website.zip"] = "sitoweb.zip"; -App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; -App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; -App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; -App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; -App::$strings["Specify folder"] = "Scegli la cartella"; -App::$strings["Public Timeline"] = "Diario pubblico"; -App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; -App::$strings["Safe Mode"] = "Modalità SafeSearch"; -App::$strings["Public Forums Only"] = "Solo forum pubblici"; -App::$strings["This Website Only"] = "Solo in questo sito"; -App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; -App::$strings["[no subject]"] = "[nessun titolo]"; -App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; +App::$strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +App::$strings["Find Channels"] = "Ricerca canali"; +App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +App::$strings["Connect/Follow"] = "Aggiungi"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +App::$strings["Random Profile"] = "Profilo casuale"; +App::$strings["Invite Friends"] = "Invita amici"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +App::$strings["Everything"] = "Tutto"; +App::$strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +App::$strings["show more"] = "mostra tutto"; App::$strings["System"] = "Sistema"; App::$strings["New App"] = "Nuova app"; App::$strings["Suggestions"] = "Suggerimenti"; @@ -2202,7 +2246,6 @@ App::$strings["Enter channel address"] = "Indirizzo del canale"; App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; App::$strings["Notes"] = "Note"; App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Saved Searches"] = "Ricerche salvate"; App::$strings["Archives"] = "Archivi"; App::$strings["Refresh"] = "Aggiorna"; App::$strings["Account settings"] = "Il tuo account"; @@ -2210,7 +2253,7 @@ App::$strings["Channel settings"] = "Impostazioni del canale"; App::$strings["Additional features"] = "Funzionalità opzionali"; App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione cloni"; +App::$strings["Manage locations"] = "Gestione cloni del tuo canale"; App::$strings["Export channel"] = "Esporta il canale"; App::$strings["Connected apps"] = "App connesse"; App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; @@ -2242,80 +2285,39 @@ App::$strings["Member registrations waiting for confirmation"] = "Richieste in a App::$strings["Inspect queue"] = "Coda di attesa"; App::$strings["DB updates"] = "Aggiornamenti al DB"; App::$strings["Plugin Features"] = "Plugin"; -App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; -App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; -App::$strings["General Features"] = "Funzionalità di base"; -App::$strings["Content Expiration"] = "Scadenza"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; -App::$strings["Multiple Profiles"] = "Profili multipli"; -App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; -App::$strings["Advanced Profiles"] = "Profili avanzati"; -App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; -App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; -App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; -App::$strings["Web Pages"] = "Pagine web"; -App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; -App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; -App::$strings["Private Notes"] = "Note private"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; -App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; -App::$strings["Photo Location"] = "Posizione geografica"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; -App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; -App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato."; -App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; -App::$strings["Post Composition Features"] = "Modalità di scrittura post"; -App::$strings["Large Photos"] = "Foto grandi"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; -App::$strings["Even More Encryption"] = "Cifratura addizionale"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; -App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; -App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; -App::$strings["Disable Comments"] = "Disabilita i commenti"; -App::$strings["Provide the option to disable comments for a post"] = "Permetti di disabilitare i commenti"; -App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; -App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; -App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; -App::$strings["Search by Date"] = "Ricerca per data"; -App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; -App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; -App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; -App::$strings["Network Personal Tab"] = "Attività personale"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -App::$strings["Network New Tab"] = "Contenuti nuovi"; -App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; -App::$strings["Affinity Tool"] = "Filtro per affinità"; -App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Show friend and connection suggestions"] = "Mostra suggerimenti di contatti e amici"; -App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; -App::$strings["Community Tagging"] = "Tag della comunità"; -App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; -App::$strings["Post Categories"] = "Categorie dei post"; -App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Risposte emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; -App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; -App::$strings["Dislike Posts"] = "Non mi piace"; -App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; -App::$strings["Star Posts"] = "Post con stella"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; -App::$strings["Tag Cloud"] = "Nuvola di tag"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; -App::$strings["Premium Channel"] = "Canale premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; -App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pubblici"; -App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; -App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; -App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; +App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings[" by "] = "di"; +App::$strings[" on "] = "su"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["(Unknown)"] = "(Sconosciuto)"; +App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +App::$strings["Visible to you only."] = "Visibile solo a te."; +App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; +App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; +App::$strings["Connection not found."] = "Contatto non trovato."; +App::$strings["profile photo"] = "foto del profilo"; +App::$strings["Item was not found."] = "Elemento non trovato."; +App::$strings["No source file."] = "Nessun file di origine."; +App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +App::$strings["Path not available."] = "Percorso non disponibile."; +App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; +App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +App::$strings["Path not found."] = "Percorso del file non trovato."; +App::$strings["mkdir failed."] = "mkdir fallito."; +App::$strings["database storage failed."] = "scrittura su database fallita."; +App::$strings["Empty path"] = "La posizione è vuota"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; App::$strings["Theme settings"] = "Impostazioni del tema"; App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index b9b6dd2e5..daf713983 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-26 00:02-0700\n" -"PO-Revision-Date: 2016-08-31 11:08+0000\n" +"POT-Creation-Date: 2016-09-30 00:02-0700\n" +"PO-Revision-Date: 2016-10-05 20:11+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -19,84 +19,87 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social Networking" msgstr "Sociaal netwerk" #: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Mostly Public" msgstr "Sociaal - Vrijwel alles openbaar" #: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Restricted" msgstr "Sociaal - Beperkt zichtbaar" #: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Private" msgstr "Sociaal - Verborgen kanaal" #: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Community Forum" msgstr "Groepsforum" #: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Mostly Public" msgstr "Forum - Vrijwel alles openbaar" #: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Restricted" msgstr "Forum - Beperkt zichtbaar" #: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Private" msgstr "Forum - Verborgen kanaal" #: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed Republish" msgstr "Feed herpubliceren" #: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Mostly Public" msgstr "Feed - Vrijwel alles openbaar" #: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Restricted" msgstr "Feed - Beperkt zichtbaar" #: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special Purpose" msgstr "Speciaal doel" #: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Celebrity/Soapbox" msgstr "Speciaal - Beroemdheid/alleen volgen" #: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Group Repository" msgstr "Speciaal - Groepsopslag" #: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../include/permissions.php:943 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/Settings/Channel.php:442 +#: ../../include/permissions.php:949 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 #: ../../include/selectors.php:140 msgid "Other" msgstr "Anders" #: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:943 +#: ../../include/permissions.php:949 msgid "Custom/Expert Mode" msgstr "Expertmodus/handmatig aanpassen" @@ -104,19 +107,19 @@ msgstr "Expertmodus/handmatig aanpassen" msgid "Can view my channel stream and posts" msgstr "Kan mijn kanaal en berichten bekijken" -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:42 msgid "Can send me their channel stream and posts" msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:36 msgid "Can view my default channel profile" msgstr "Kan mijn standaard kanaalprofiel bekijken" -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:37 msgid "Can view my connections" msgstr "Kan een lijst met mijn connecties bekijken" -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:38 msgid "Can view my file storage and photos" msgstr "Kan mijn foto's en andere bestanden bekijken" @@ -136,11 +139,11 @@ msgstr "Kan wegpagina's van mijn kanaal aanmaken en bewerken" msgid "Can post on my channel (wall) page" msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:44 msgid "Can comment on or like my posts" msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:45 msgid "Can send me private mail messages" msgstr "Kan mij privéberichten sturen" @@ -156,7 +159,7 @@ msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @v msgid "Can chat with me" msgstr "Kan met mij chatten" -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:53 msgid "Can source my public posts in derived channels" msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" @@ -164,11 +167,11 @@ msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" msgid "Can administer my channel" msgstr "Kan mijn kanaal beheren" -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:238 msgid "parent" msgstr "omhoog" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 msgid "Collection" msgstr "map" @@ -192,196 +195,202 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 -#: ../../include/conversation.php:1033 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1031 +#: ../../include/widgets.php:1683 msgid "Unknown" msgstr "Onbekend" -#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 -#: ../../include/nav.php:95 +#: ../../Zotlabs/Storage/Browser.php:225 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 +#: ../../include/conversation.php:1679 msgid "Files" msgstr "Bestanden" -#: ../../Zotlabs/Storage/Browser.php:227 +#: ../../Zotlabs/Storage/Browser.php:226 msgid "Total" msgstr "Totaal" -#: ../../Zotlabs/Storage/Browser.php:229 +#: ../../Zotlabs/Storage/Browser.php:228 msgid "Shared" msgstr "Gedeeld" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:321 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 +#: ../../Zotlabs/Module/Webpages.php:239 msgid "Create" msgstr "Aanmaken" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1696 msgid "Upload" msgstr "Uploaden" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 -#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Storage/Browser.php:234 +#: ../../Zotlabs/Module/Admin/Channels.php:163 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 msgid "Name" msgstr "Naam" -#: ../../Zotlabs/Storage/Browser.php:236 +#: ../../Zotlabs/Storage/Browser.php:235 msgid "Type" msgstr "Type" -#: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 +#: ../../Zotlabs/Storage/Browser.php:236 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "Grootte" -#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../Zotlabs/Storage/Browser.php:237 #: ../../Zotlabs/Module/Sharedwithme.php:102 msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 -#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../Zotlabs/Lib/Apps.php:341 +#: ../../include/channel.php:959 ../../include/channel.php:963 +#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 +#: ../../include/menu.php:113 msgid "Edit" msgstr "Bewerken" -#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Connedit.php:607 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 -#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 -#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../Zotlabs/Lib/Apps.php:342 #: ../../include/conversation.php:660 msgid "Delete" msgstr "Verwijderen" -#: ../../Zotlabs/Storage/Browser.php:301 +#: ../../Zotlabs/Storage/Browser.php:299 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Je gebruikt %1$s van de beschikbare bestandsopslag." -#: ../../Zotlabs/Storage/Browser.php:306 +#: ../../Zotlabs/Storage/Browser.php:304 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Je gebruikt %1$s van totaal %2$s beschikbare bestandsopslag. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:317 +#: ../../Zotlabs/Storage/Browser.php:315 msgid "WARNING:" msgstr "WAARSCHUWING:" -#: ../../Zotlabs/Storage/Browser.php:322 +#: ../../Zotlabs/Storage/Browser.php:320 msgid "Create new folder" msgstr "Nieuwe map aanmaken" -#: ../../Zotlabs/Storage/Browser.php:324 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Upload file" msgstr "Bestand uploaden" -#: ../../Zotlabs/Storage/Browser.php:337 +#: ../../Zotlabs/Storage/Browser.php:335 msgid "Drop files here to immediately upload" msgstr "Sleep bestanden hierheen om ze onmiddelijk te uploaden" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:229 ../../Zotlabs/Module/Channel.php:270 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Mail.php:121 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 -#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Group.php:13 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 -#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Events.php:264 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 #: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1068 #: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/photos.php:27 ../../include/items.php:3506 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 #: ../../include/attach.php:353 ../../include/attach.php:360 -#: ../../include/attach.php:440 ../../include/attach.php:902 -#: ../../include/attach.php:973 ../../include/attach.php:1125 +#: ../../include/attach.php:440 ../../include/attach.php:909 +#: ../../include/attach.php:980 ../../include/attach.php:1132 msgid "Permission denied." msgstr "Toegang geweigerd." -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:56 msgid "Not Found" msgstr "Niet gevonden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 +#: ../../Zotlabs/Module/Block.php:79 ../../Zotlabs/Module/Display.php:120 +#: ../../include/help.php:59 msgid "Page not found." msgstr "Pagina niet gevonden." -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:66 #: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:403 msgid "Permission denied" msgstr "Toegang geweigerd" @@ -400,11 +409,10 @@ msgstr "Welkom %s. Authenticatie op afstand geslaagd." #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../include/channel.php:859 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Webpages.php:33 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" @@ -420,2728 +428,2636 @@ msgstr "Afwezig" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Ongeldig bericht" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "geen resultaten" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "Niet zo'n kanaal" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "kanaalsync verwerkt" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in wachtrij" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "verstuurd" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "geaccepteerd om afgeleverd te worden" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "Privacygroep: " -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "geüpdatet" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." +msgstr "Ongeldige connectie." -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "update genegeerd" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "toegang geweigerd" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "netwerk" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "ontvanger niet gevonden" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "Privébericht ingetrokken" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "dubbel privébericht ontvangen" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Berichten en reacties" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "privébericht afgeleverd" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Alleen berichten" -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." + +#: ../../Zotlabs/Module/Import.php:33 #, php-format -msgid "Delivery report for %1$s" -msgstr "Afleveringsrapport voor %1$s" +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opties" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Opnieuw afleveren" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" + +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../Zotlabs/Module/Api.php:83 +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." + +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Kanaal importeren" + +#: ../../Zotlabs/Module/Import.php:548 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +"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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "Yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "No" -msgstr "Nee" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Beoordeling" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Website:" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" + +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" + +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 -#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:74 #: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 -#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 -#: ../../Zotlabs/Module/Settings.php:935 -#: ../../Zotlabs/Module/Settings.php:1040 -#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 -#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 -#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 -#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Setup.php:317 +#: ../../Zotlabs/Module/Setup.php:365 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:484 #: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 -#: ../../include/widgets.php:763 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:725 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 msgid "Submit" msgstr "Opslaan" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 -msgid "Public Hubs" -msgstr "Openbare hubs" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "Hub-URL" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Toegangs-
     type" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s account geblokkeerd/gedeblokkeerd" +msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Registratie-
     beleid" +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account verwijderd" +msgstr[1] "%s accounts verwijderd" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Stats" +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" +msgstr "Account niet gevonden" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "Beoordelingen" +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" +msgstr "Account '%s' geblokkeerd" -#: ../../Zotlabs/Module/Pubsites.php:43 -msgid "Rate" -msgstr "Beoordeel" +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Account '%s' gedeblokkeerd" -#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Locatie" +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Administration" +msgstr "Beheer" -#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 -#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Weergeven" +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1561 +msgid "Accounts" +msgstr "Accounts" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" +msgstr "alles selecteren" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" +msgstr "Accounts die op goedkeuring wachten" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" +msgstr "Tijd/datum verzoek" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2212 +msgid "Email" +msgstr "E-mail" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." +msgstr "Geen verzoeken." -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Goedkeuren" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" +msgstr "Afkeuren" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blokkeren" -#: ../../Zotlabs/Module/Register.php:194 -msgid "
    Register at another affiliated hub." -msgstr "Registreer op een andere hub." +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Deblokkeren" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" +msgstr "Alle kanalen" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" +msgstr "Geregistreerd" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" +msgstr "Laatste keer ingelogd" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" +msgstr "Verloopt" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" +msgstr "Abonnementen" + +#: ../../Zotlabs/Module/Admin/Accounts.php:189 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../Zotlabs/Module/Admin/Accounts.php:190 +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 "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Register.php:221 +#: ../../Zotlabs/Module/Admin/Channels.php:30 #, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze $Projectname-hub" +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanaal gecensureerd/ongecensureerd" +msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../Zotlabs/Module/Register.php:223 +#: ../../Zotlabs/Module/Admin/Channels.php:39 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Jouw e-mailadres" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" +msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanaal verwijderd" +msgstr[1] "%s kanalen verwijderd" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" +msgstr "Kanaal niet gevonden" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanaal '%s' verwijderd" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Name or caption" -msgstr "Naam" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanaal '%s' gecensureerd" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanaal '%s' ongecensureerd" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Scripts toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Admin/Channels.php:99 #, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" +msgid "Channel '%s' code disallowed" +msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1562 +msgid "Channels" +msgstr "Kanalen" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Select a channel role with your privacy requirements." -msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" +msgstr "Censureren" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" +msgstr "Niet censureren" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "Nee" +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" +msgstr "Scripts toestaan" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" +msgstr "Scripts niet toestaan" -#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 -msgid "Registration" -msgstr "Registratie" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1651 +msgid "Channel" +msgstr "Kanaal" -#: ../../Zotlabs/Module/Register.php:253 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 -#: ../../boot.php:1720 -msgid "Register" -msgstr "Registreren" +#: ../../Zotlabs/Module/Admin/Channels.php:164 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Kanaaladres" -#: ../../Zotlabs/Module/Register.php:266 +#: ../../Zotlabs/Module/Admin/Channels.php:166 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder." +"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 "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "Update is als succesvol gemarkeerd" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was geslaagd." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 -#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1665 ../../include/nav.php:94 -msgid "Photos" -msgstr "Foto's" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 -#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1292 -msgid "Cancel" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." +msgstr "Geen mislukte updates." -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Mislukte updates" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "Uit" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- kies map -" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "Aan" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 -#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr " Vergrendel de functie '%s'" -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Collectie niet gevonden" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Beheer - Extra functies" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Niet zo'n kanaal" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Logboek-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1587 +#: ../../include/widgets.php:1597 +msgid "Logs" +msgstr "Logboeken" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Leegmaken" -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Debuggen" -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Privacygroep: " +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Logbestand" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ongeldige connectie." +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Geblokkeerd" +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Logniveau" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Genegeerd" +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 +#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:40 +#: ../../Zotlabs/Module/Admin.php:62 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3427 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Verborgen" +#: ../../Zotlabs/Module/Admin/Plugins.php:284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s uitgeschakeld." -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Gearchiveerd" +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s ingeschakeld" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1568 -msgid "New" -msgstr "Nieuw" +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" +msgstr "Uitschakelen" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 -msgid "All" -msgstr "Alles" +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" +msgstr "Inschakelen" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1565 +msgid "Plugins" +msgstr "Plugins" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" +msgstr "Omschakelen" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" +msgstr "Instellingen" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Toon alle connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " +msgstr "Auteur: " -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " +msgstr "Beheerder: " -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " +msgstr "Minimum versie Hubzilla: " -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " +msgstr "Maximum versie Hubzilla:" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " +msgstr "Minimum versie PHP: " -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Moet nog geaccepteerd worden" +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " +msgstr "Werkt met configuratietypes: " -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " +msgstr "Vereist: " -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Connectie bewerken" +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" +msgstr "Uitgeschakeld - versie is incompatibel" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Connectie verwijderen" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Vul de openbare Git-URL in van de plugin-repository." -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" +msgstr "Git-URL plugin-repository" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Netwerk" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" +msgstr "Handmatige repository-naam" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 -msgid "Status" -msgstr "Status" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" +msgstr "(optioneel)" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Verbonden" +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" +msgstr "Plugin-repository downloaden" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Connectie accepteren" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" +msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Approve" -msgstr "Goedkeuren" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installeren" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Connectie negeren" +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1248 ../../include/conversation.php:1297 +msgid "Cancel" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" -msgstr "Negeren" +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" +msgstr "Repositories beheren" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Recente activiteit" +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" +msgstr "Toegevoegde plugin-repositories" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:190 -msgid "Connections" -msgstr "Connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" +msgstr "Nieuwe plugin-repository toevoegen" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 -#: ../../include/text.php:937 ../../include/acl_selectors.php:174 -#: ../../include/nav.php:169 -msgid "Search" -msgstr "Zoeken" +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Bijwerken" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" +msgstr "Branch veranderen" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Connecties zoeken" +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Photos.php:989 ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Verwijderen" -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Vinden" +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" +msgstr "Nieuw profielveld" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" +msgstr "Bijnaam voor veld" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Omslagfoto's" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" +msgstr "Systeemnaam voor veld" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" +msgstr "Invoertype" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" +msgstr "Veldnaam" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" +msgstr "Tekstlabel voor op profielpagina's" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" +msgstr "Helptekst" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 -msgid "female" -msgstr "vrouw" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" +msgstr "Extra informatie (optioneel)" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s heeft haar %2$s bijgewerkt" +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../include/text.php:972 ../../include/text.php:984 +#: ../../include/widgets.php:201 +msgid "Save" +msgstr "Opslaan" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 -msgid "male" -msgstr "man" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" +msgstr "Velddefinitie niet gevonden" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s heeft zijn %2$s bijgewerkt" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" +msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "De %2$s van %1$s is bijgewerkt" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1568 +msgid "Profile Fields" +msgstr "Profielvelden" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 -msgid "cover photo" -msgstr "omslagfoto" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" +msgstr "Standaard profielvelden" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" +msgstr "Geavanceerde profielvelden" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" +msgstr "(als toevoeging op de standaard velden)" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" +msgstr "Alle beschikbare velden" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Omslagfoto uploaden" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" +msgstr "Extra (handmatig toegevoegde) velden" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1180 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "of" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" +msgstr "Extra velden aanmaken" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" +msgstr "Wachtrij-statistieken" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" +msgstr "Aantal vermeldingen" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" +msgstr "Prioriteit" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" +msgstr "Doel-URL" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markeren" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Hub - Setup" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" +msgstr "Berichtenwachtrij voor deze hub legen" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" +msgstr "Voor het laatst contact" -#: ../../Zotlabs/Module/Setup.php:191 +#: ../../Zotlabs/Module/Admin/Security.php:77 msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig." -#: ../../Zotlabs/Module/Setup.php:198 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"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/
    " -#: ../../Zotlabs/Module/Setup.php:207 +#: ../../Zotlabs/Module/Admin/Security.php:82 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." -#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 -#: ../../Zotlabs/Module/Setup.php:733 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1563 +msgid "Security" +msgstr "Beveiliging" -#: ../../Zotlabs/Module/Setup.php:267 -msgid "System check" -msgstr "System check" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Openbare toegang blokkeren" -#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Volgende" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." -#: ../../Zotlabs/Module/Setup.php:272 -msgid "Check again" -msgstr "Check again" +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "\"Transport Security\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database connection" -msgstr "Database connection" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr " \"Content Security Policy\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "In order to install $Projectname we need to know how to connect to your database." +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Toegestane e-maildomeinen" -#: ../../Zotlabs/Module/Setup.php:296 +#: ../../Zotlabs/Module/Admin/Security.php:92 msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." +"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 "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/Setup.php:297 +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Niet toegestane e-maildomeinen" + +#: ../../Zotlabs/Module/Admin/Security.php:93 msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Alleen communicatie met deze hubs toestaan" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Default is 127.0.0.1" -msgstr "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Port" -msgstr "Database Port" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Communicatie met deze hubs blokkeren" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Sta alleen communicatie toe met deze kanalen" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Communicatie met deze kanalen blokkeren" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Name" -msgstr "Database Name" +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan." -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Type" -msgstr "Database Type" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan" -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd." -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Your account email address must match this in order to use the web admin panel." +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Website URL" -msgstr "Hub URL" +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." +msgstr "Hub-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" +msgstr "Standaard" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" +msgstr "mobiel" + +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" +msgstr "experimenteel" + +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" +msgstr "Niet ondersteund" + +#: ../../Zotlabs/Module/Admin/Site.php:221 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" +msgstr "Nee" + +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" +msgstr "Ja - met goedkeuring" + +#: ../../Zotlabs/Module/Admin/Site.php:223 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Api.php:84 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" +msgstr "Ja" + +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" +msgstr "Mijn $Projectname-hub is niet openbaar" -#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" +msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" + +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" +msgstr "Mijn $Projectname-hub kent alleen gratis toegang" + +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" + +#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 msgid "Basic/Minimal Social Networking" msgstr "Basic/eenvoudig sociaal netwerk" -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 msgid "Standard Configuration (default)" msgstr "Standaard (standaard)" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 msgid "Professional" msgstr "Professioneel " -#: ../../Zotlabs/Module/Setup.php:343 -msgid "Site settings" -msgstr "Hub settings" +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" +msgstr "Beginner/basic" + +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" +msgstr "Onervaren - niet bekwaam, maar wil graag leren" + +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "Ervaren - voelt zich enigszins comfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "Gevorderd - voelt zich comfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" +msgstr "Expert - kan programmeren" + +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" +msgstr "Tovenaar - ik weet waarschijnlijk meer dan jij" + +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1560 +msgid "Site" +msgstr "Hub-instellingen" + +#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Register.php:253 +msgid "Registration" +msgstr "Registratie" + +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" +msgstr "Bestand uploaden" + +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" +msgstr "Beleid" + +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Geavanceerd" + +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" +msgstr "Naam van deze $Projectname-hub" -#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 msgid "Server Configuration/Role" msgstr "Configuratietype hub" -#: ../../Zotlabs/Module/Setup.php:399 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" +msgstr "Standaard technisch niveau voor deze hub" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version" -msgstr "PHP version" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Wordt gebruikt om leden een gebruikerservaring te bieden die met hun technisch niveau overeenkomt" -#: ../../Zotlabs/Module/Setup.php:415 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" +msgstr "Vergrendel de functie 'Standaard technisch niveau voor deze hub'" -#: ../../Zotlabs/Module/Setup.php:416 -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 "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." +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" +msgstr "Leden kunnen hun eigen technisch niveau standaard instellen" -#: ../../Zotlabs/Module/Setup.php:420 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "Banner/logo" + +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" +msgstr "Informatie over de beheerder" -#: ../../Zotlabs/Module/Setup.php:420 +#: ../../Zotlabs/Module/Admin/Site.php:285 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../Zotlabs/Module/Setup.php:425 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" +msgstr "Standaardtaal" + +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" +msgstr "Standaardthema" -#: ../../Zotlabs/Module/Setup.php:434 +#: ../../Zotlabs/Module/Admin/Site.php:287 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" +msgstr "Standaardthema voor mobiel" -#: ../../Zotlabs/Module/Setup.php:438 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Setup.php:456 -#, 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 "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." +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" +msgstr "Sta feeds toe als connecties" -#: ../../Zotlabs/Module/Setup.php:461 -msgid "You can adjust these settings in the servers php.ini." -msgstr "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" +msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../Zotlabs/Module/Setup.php:463 -msgid "PHP upload limits" -msgstr "PHP upload limits" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" +msgstr "Maximale grootte van afbeeldingen" -#: ../../Zotlabs/Module/Setup.php:486 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" +msgstr "Staat deze hub nieuwe accounts toe?" -#: ../../Zotlabs/Module/Setup.php:490 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" +msgstr "Alleen op uitnodiging" -#: ../../Zotlabs/Module/Setup.php:502 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." -#: ../../Zotlabs/Module/Setup.php:503 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." -#: ../../Zotlabs/Module/Setup.php:504 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "Tekst tijdens registratie" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "xml PHP module" -msgstr "xml PHP module" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." -#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" +msgstr "Behoudt de URL van de hub (/)" -#: ../../Zotlabs/Module/Setup.php:511 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" -#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" +msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../Zotlabs/Module/Setup.php:517 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../Zotlabs/Module/Setup.php:525 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" +msgstr "Toegestane domeinen" -#: ../../Zotlabs/Module/Setup.php:529 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/Setup.php:533 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" +msgstr "E-mailadres verifieren" -#: ../../Zotlabs/Module/Setup.php:537 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." - -#: ../../Zotlabs/Module/Setup.php:541 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." +"Check to verify email addresses used in account registration (recommended)." +msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../Zotlabs/Module/Setup.php:545 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" +msgstr "Dwing kanaalvermelding af" -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Admin/Site.php:301 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 "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." +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../Zotlabs/Module/Setup.php:564 -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 "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." +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "Openbare streams importeren" -#: ../../Zotlabs/Module/Setup.php:565 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." -#: ../../Zotlabs/Module/Setup.php:566 +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" +msgstr "Inlogformulier op de homepagina" + +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " -#: ../../Zotlabs/Module/Setup.php:569 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" +msgstr "Schakel contextuele hulp in" -#: ../../Zotlabs/Module/Setup.php:583 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt." -#: ../../Zotlabs/Module/Setup.php:584 -#, 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 "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." - -#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" +msgstr "Server-URL voor de kanalengids" -#: ../../Zotlabs/Module/Setup.php:586 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" +msgstr "Standaardserver voor de kanalengids" -#: ../../Zotlabs/Module/Setup.php:589 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" +msgstr "Gebruikersnaam proxy" -#: ../../Zotlabs/Module/Setup.php:605 -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 Red top " -"level folder" -msgstr "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" +msgstr "Proxy-URL" -#: ../../Zotlabs/Module/Setup.php:609 -msgid "store is writable" -msgstr "store is writable" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" +msgstr "Netwerktimeout" -#: ../../Zotlabs/Module/Setup.php:642 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" +msgstr "Afleveringsinterval" -#: ../../Zotlabs/Module/Setup.php:644 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +"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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" +msgstr "Leveringen per serverproces" -#: ../../Zotlabs/Module/Setup.php:646 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" +msgstr "Poll-interval" -#: ../../Zotlabs/Module/Setup.php:649 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "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." +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../Zotlabs/Module/Setup.php:652 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" +msgstr "Maximaal gemiddelde systeembelasting" -#: ../../Zotlabs/Module/Setup.php:658 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../Zotlabs/Module/Setup.php:661 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." -#: ../../Zotlabs/Module/Setup.php:670 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" +msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." -#: ../../Zotlabs/Module/Setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." +msgstr "Thema-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Setup.php:731 -msgid "

    What next

    " -msgstr "

    What next

    " +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." +msgstr "Geen thema's gevonden" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "Schermafdruk" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d beoordeling" -msgstr[1] "%d beoordelingen" +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1566 +msgid "Themes" +msgstr "Thema's" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Geslacht:" +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" +msgstr "[Experimenteel]" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status: " +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage: " +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1672 +msgid "Photos" +msgstr "Foto's" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ongeldig item." -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/event.php:52 ../../include/event.php:84 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Plaats:" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Omschrijving:" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Over:" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/channel.php:1034 ../../include/conversation.php:957 -msgid "Connect" -msgstr "Verbinden" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Openbaar forum:" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Trefwoorden: " +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Niet voorstellen" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Gemeenschappelijke connecties:" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Berichten" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Volledige kanalengids" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Bericht ingetrokken." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Lokale kanalengids" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Gezocht naar:" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1184 +msgid "Please enter a link URL:" +msgstr "Vul een URL in:" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "volgende pagina" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "vorige pagina" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Privébericht versturen" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Sorteeropties" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Aan:" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetisch" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" - -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" - -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" - -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." - -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" - -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Onderwerp:" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Bloknaam" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1244 +msgid "Attach file" +msgstr "Bestand toevoegen" +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 #: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1149 msgid "Insert web link" msgstr "Weblink invoegen" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 -msgid "Title (optional)" -msgstr "Titel (optioneel)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Blok bewerken" - -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Naam lay-out" - -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Lay-out-omschrijving (optioneel)" - -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Lay-out bewerken" - -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Paginalink" - -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" - -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" - -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." - -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menunaam" - -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" - -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menutitel" - -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" - -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" - -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menu's" - -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Verwijderen" - -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Aangemaakt" - -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Bewerkt" - -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" - -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Menu verwijderen" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dit menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu niet gevonden." - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Naam van menu" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titel van menu" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Niet gevonden." - -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App geïnstalleerd" - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Misvormde app." - -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Insluitcode" - -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bewerken" - -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App maken" - -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Naam van app" - -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Vereist" - -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" - -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Omschrijving" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL van pictogram" - -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" - -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" - -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versie-ID" - -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prijs van de app" - -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Zoek documentatie" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hulp:" - -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:163 -msgid "Help" -msgstr "Hulp" - -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "$Projectname-documentatie" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Item is niet aanwezig." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." - -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" - -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." - -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulenaam:" - -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Verzenden" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1289 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:737 +#: ../../include/conversation.php:1294 +msgid "Encrypt text" +msgstr "Tekst versleutelen" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Bericht verwijderen" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Afleveringsrapport" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Bericht intrekken" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Antwoord versturen" -#: ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 -msgid "Permissions" -msgstr "Permissies" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Geblokkeerd" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Genegeerd" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Verborgen" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Gearchiveerd" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1573 +msgid "New" +msgstr "Nieuw" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Dit bestand delen" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Alles" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Jouw connecties over dit bestand berichten" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Toon alle connecties" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 -#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Bijwerken" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Dit kanaal heeft een limiet van %d tokens" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Naam en wachtwoord zijn vereist" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token opgeslagen." +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" -#: ../../Zotlabs/Module/Settings.php:312 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Settings.php:315 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Settings.php:324 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Connectie bewerken" -#: ../../Zotlabs/Module/Settings.php:341 -msgid "Password verification failed." -msgstr "Wachtwoordverificatie mislukt" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Connectie verwijderen" -#: ../../Zotlabs/Module/Settings.php:348 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaaladres" -#: ../../Zotlabs/Module/Settings.php:352 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Netwerk" -#: ../../Zotlabs/Module/Settings.php:366 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Status" -#: ../../Zotlabs/Module/Settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Verbonden" -#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 -#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 -#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 -#: ../../include/widgets.php:495 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/selectors.php:123 -msgid "Friends" -msgstr "Vrienden" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Connectie accepteren" -#: ../../Zotlabs/Module/Settings.php:617 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Connectie negeren" -#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 -#: ../../Zotlabs/Module/Settings.php:743 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connedit.php:583 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Negeren" -#: ../../Zotlabs/Module/Settings.php:684 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Recente activiteit" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:901 ../../include/nav.php:191 +msgid "Connections" +msgstr "Connecties" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:170 ../../include/widgets.php:315 +msgid "Search" +msgstr "Zoeken" -#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" -#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Connecties zoeken" -#: ../../Zotlabs/Module/Settings.php:687 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Vinden" -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 -msgid "Icon url" -msgstr "Pictogram-URL" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optioneel" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Omslagfoto's" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Application not found." -msgstr "Applicatie niet gevonden." +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." -#: ../../Zotlabs/Module/Settings.php:742 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" -#: ../../Zotlabs/Module/Settings.php:747 -msgid "No name" -msgstr "Geen naam" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." -#: ../../Zotlabs/Module/Settings.php:748 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4341 +msgid "female" +msgstr "vrouw" -#: ../../Zotlabs/Module/Settings.php:761 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen aanwezig" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4342 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s heeft haar %2$s bijgewerkt" -#: ../../Zotlabs/Module/Settings.php:768 -msgid "Feature/Addon Settings" -msgstr "Plugin-instellingen" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4343 +msgid "male" +msgstr "man" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4344 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s heeft zijn %2$s bijgewerkt" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "Current Password" -msgstr "Huidig wachtwoord" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4346 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "De %2$s van %1$s is bijgewerkt" -#: ../../Zotlabs/Module/Settings.php:793 -msgid "Enter New Password" -msgstr "Nieuw wachtwoord invoeren" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" +msgstr "omslagfoto" -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Confirm New Password" -msgstr "Nieuw wachtwoord bevestigen" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Bestand uploaden:" -#: ../../Zotlabs/Module/Settings.php:796 -#: ../../Zotlabs/Module/Settings.php:1236 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../Zotlabs/Module/Settings.php:797 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Account verwijderen" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Omslagfoto uploaden" -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Remove this account including all its channels" -msgstr "Dit account en al zijn kanalen verwijderen" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" +msgstr "of" -#: ../../Zotlabs/Module/Settings.php:832 -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." -msgstr "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "sla deze stap over" -#: ../../Zotlabs/Module/Settings.php:834 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" -#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Gasttoegang" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../Zotlabs/Module/Settings.php:876 -msgid "Login Name" -msgstr "Inlognaam" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." -#: ../../Zotlabs/Module/Settings.php:877 -msgid "Login Password" -msgstr "Wachtwoord:" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Klaar met bewerken" -#: ../../Zotlabs/Module/Settings.php:878 -msgid "Expires (yyyy-mm-dd)" -msgstr "Geldig t/m (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 -msgid "Their Settings" -msgstr "Hun instellingen" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." -#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 -msgid "My Settings" -msgstr "Mijn instellingen" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." -#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 -msgid "inherited" -msgstr "geërfd" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." -#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 -msgid "Individual Permissions" -msgstr "Individuele permissies" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "is nu verbonden met" -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "Off" -msgstr "Uit" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "On" -msgstr "Aan" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../Zotlabs/Module/Settings.php:910 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../Zotlabs/Module/Settings.php:934 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" -#: ../../Zotlabs/Module/Settings.php:981 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:953 +msgid "View Profile" +msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Settings.php:984 +#: ../../Zotlabs/Module/Connedit.php:557 #, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" -#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 -msgid "mobile" -msgstr "mobiel" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" -#: ../../Zotlabs/Module/Settings.php:1035 -msgid "Display Settings" -msgstr "Weergave-instellingen" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" -#: ../../Zotlabs/Module/Settings.php:1036 -msgid "Theme Settings" -msgstr "Thema-instellingen" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Recente activiteit/berichten" -#: ../../Zotlabs/Module/Settings.php:1037 -msgid "Custom Theme Settings" -msgstr "Handmatige thema-instellingen" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" -#: ../../Zotlabs/Module/Settings.php:1038 -msgid "Content Settings" -msgstr "Inhoudsinstellingen" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Display Theme:" -msgstr "Gebruik thema:" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Deze connectie is geblokkeerd!" -#: ../../Zotlabs/Module/Settings.php:1045 -msgid "Select scheme" -msgstr "Kies schema van thema" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Niet meer negeren" -#: ../../Zotlabs/Module/Settings.php:1047 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Preload images before rendering the page" -msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Deze connectie wordt genegeerd!" + +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Niet meer archiveren" + +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archiveren" -#: ../../Zotlabs/Module/Settings.php:1048 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Deze connectie is gearchiveerd!" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Niet meer verbergen" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Verbergen" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Deze connectie is verborgen!" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Show emoticons (smilies) as images" -msgstr "Toon emoticons (smilies) als afbeeldingen" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "Ik" -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "Familie" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Vrienden" -#: ../../Zotlabs/Module/Settings.php:1057 -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Use blog/list mode on grid page" -msgstr "Gebruik blog/lijst-modus op gridpagina" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../Zotlabs/Module/Settings.php:1059 -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Verwantschapsfilter instellen" -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Profiel instellen" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Verwantschapsfilter en profiel instellen" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "geen" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "Any connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3993 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" -#: ../../Zotlabs/Module/Settings.php:1095 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" -#: ../../Zotlabs/Module/Settings.php:1096 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Het primaire kanaaladres van deze connectie is" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Beschikbare locaties:" -#: ../../Zotlabs/Module/Settings.php:1171 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../Zotlabs/Module/Settings.php:1227 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" +#: ../../Zotlabs/Module/Connedit.php:762 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Beoordeling" -#: ../../Zotlabs/Module/Settings.php:1234 -msgid "Basic Settings" -msgstr "Basis-instellingen" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../Zotlabs/Module/Settings.php:1237 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Berichtenfilter" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importeer alleen berichten met deze tekst" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Importeer geen berichten met deze tekst" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Deze informatie is openbaar!" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Connectie moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "geërfd" -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "Hun instellingen" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "Mijn instellingen" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "Individuele permissies" -#: ../../Zotlabs/Module/Settings.php:1251 +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../Zotlabs/Module/Settings.php:1252 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" - -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Laatste wijziging:" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1260 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "0 or blank to use the website limit." -msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Naam lay-out" -#: ../../Zotlabs/Module/Settings.php:1260 -#, php-format -msgid "This website expires after %d days." -msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Lay-out-omschrijving (optioneel)" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "This website does not expire imported content." -msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Lay-out bewerken" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Paginalink" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Default Post and Publish Permissions" -msgstr "Standaard permissies voor nieuwe berichten en publicaties" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Use my default audience setting for the type of object published" -msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../Zotlabs/Module/Settings.php:1281 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een bericht wanneer:" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" +msgstr "Menu's" -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Verwijderen" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 +#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:251 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Aangemaakt" -#: ../../Zotlabs/Module/Settings.php:1285 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:252 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Bewerkt" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../Zotlabs/Module/Settings.php:1289 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../Zotlabs/Module/Settings.php:1291 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../Zotlabs/Module/Settings.php:1292 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../Zotlabs/Module/Settings.php:1293 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../Zotlabs/Module/Settings.php:1296 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../Zotlabs/Module/Settings.php:1298 -msgid "Unseen grid activity" -msgstr "Niet bekeken grid-activiteit" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../Zotlabs/Module/Settings.php:1299 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../Zotlabs/Module/Settings.php:1300 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../Zotlabs/Module/Settings.php:1300 -#: ../../Zotlabs/Module/Settings.php:1305 -#: ../../Zotlabs/Module/Settings.php:1306 -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "Recommended" -msgstr "Aanbevolen" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../Zotlabs/Module/Settings.php:1301 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." -#: ../../Zotlabs/Module/Settings.php:1302 -msgid "Events today" -msgstr "Gebeurtenissen van vandaag" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../Zotlabs/Module/Settings.php:1304 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bewerken" -#: ../../Zotlabs/Module/Settings.php:1305 -msgid "System info messages" -msgstr "Systeemmededelingen" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App maken" -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Naam van app" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "New connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:257 +msgid "Required" +msgstr "Vereist" -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../Zotlabs/Module/Settings.php:1309 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../Zotlabs/Module/Events.php:465 +msgid "Description" +msgstr "Omschrijving" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "Default photo upload folder" -msgstr "Standaard fotoalbum voor uploads" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" +msgstr "Openbare hubs" -#: ../../Zotlabs/Module/Settings.php:1319 -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "%Y - current year, %m - current month" -msgstr "%Y - dit jaar, %m - deze maand" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "Default file upload folder" -msgstr "Standaard bestandsmap voor uploads" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Toegangs-
     type" -#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Registratie-
     beleid" -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Remove this channel." -msgstr "Verwijder dit kanaal." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Stats" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-service voor Firefox Share" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Start calendar week on monday" -msgstr "Begin in de agenda de week op maandag" +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:958 +msgid "Ratings" +msgstr "Beoordelingen" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "netwerk" +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "Beoordeel" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Pubsites.php:51 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Locatie" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Privacygroep aangemaakt" +#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Webpages.php:246 +#: ../../Zotlabs/Module/Events.php:680 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Weergeven" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Kon privacygroep niet aanmaken" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Item is niet aanwezig." -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3931 -msgid "Privacy group not found." -msgstr "Privacygroep niet gevonden" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Privacygroep bijgewerkt" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Privacygroep met kanalen aanmaken" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Naam privacygroep: " +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Deel webpagina's vanuit Firefox met " -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Privacygroep verwijderd." +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activeer de $Projectname-service in Firefox" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Verwijderen privacygroep mislukt" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Privacygroep bewerken" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Functie uitgeschakeld." -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Kanalen" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Modulenaam:" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Lay-out-hulp" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profielfoto's" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album niet gevonden." +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Verwijder album" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Zichtbaar voor:" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Verwijder foto" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:658 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permissies" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Foto's uploaden" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Vul een albumnaam in" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Plaats een bericht voor deze upload." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Bijschrift (optioneel):" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Dit bestand delen" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Omschrijving (optioneel):" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Jouw connecties over dit bestand berichten" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Connectiefoto's" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Ga verder" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" -msgstr "Foto weergeven" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" -msgstr "Album bewerken" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto niet aanwezig" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Als omslagfoto gebruiken" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" -msgstr "Privéfoto" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" -msgstr "Vorige" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" + +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Nieuwe aanmaken" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Verwijderen" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Foto bewerken" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Bijschrift" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Tag toevoegen" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Privacygroep aangemaakt" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Kon privacygroep niet aanmaken" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3960 +msgid "Privacy group not found." +msgstr "Privacygroep niet gevonden" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Privacygroep bijgewerkt" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Privacygroep met kanalen aanmaken" -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1227 -msgid "Share" -msgstr "Delen" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Naam privacygroep: " -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Even wachten" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Privacygroep verwijderd." -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Reactie" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Verwijderen privacygroep mislukt" -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Privacygroep bewerken" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Kanalen" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "eens" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Ongeldig bericht" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "geen resultaten" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "kanaalsync verwerkt" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in wachtrij" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "verstuurd" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1756 -msgid "View all" -msgstr "Toon alles" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "geaccepteerd om afgeleverd te worden" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1780 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "geüpdatet" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "update genegeerd" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "toegang geweigerd" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "Op deze foto:" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Kaart" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "privébericht afgeleverd" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Sluiten" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Afleveringsrapport voor %1$s" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Album weergeven" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opties" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Recente foto's" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Opnieuw afleveren" #: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 msgid "webpage" @@ -3169,25 +3085,6 @@ msgstr "%s onderdeel geïnstalleerd" msgid "%s element installation failed" msgstr "Installatie %s-element mislukt" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" - -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" - -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" - -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Waarschuwing: database-versies lopen %1$d updates achter." - #: ../../Zotlabs/Module/Import_items.php:104 msgid "Import completed" msgstr "Importeren voltooid" @@ -3198,13 +3095,8 @@ msgstr "Importeer items" #: ../../Zotlabs/Module/Import_items.php:120 msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." - -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +"Use this form to import existing posts and content from an export file." +msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." #: ../../Zotlabs/Module/Invite.php:29 msgid "Total invitation limit exceeded." @@ -3247,10 +3139,6 @@ msgstr "Uitnodigingen verzenden" msgid "Enter email addresses, one per line:" msgstr "Voer e-mailadressen in, één per regel:" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Jouw bericht:" - #: ../../Zotlabs/Module/Invite.php:136 msgid "Please join my community on $Projectname." msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" @@ -3280,208 +3168,442 @@ msgstr "3. Klik op [+ Verbinden]" msgid "Location not found." msgstr "Locatie niet gevonden." -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" + +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." + +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" + +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." + +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" + +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" + +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." + +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." + +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." + +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Website:" + +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" + +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" + +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." + +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." + +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ongeldig verzoek" + +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "kanaal" + +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "ding" + +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." + +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" + +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1991 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "foto" + +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1997 ../../include/conversation.php:148 +msgid "status" +msgstr "bericht" + +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1994 +#: ../../include/conversation.php:123 ../../include/event.php:961 +msgid "event" +msgstr "gebeurtenis" + +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" + +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" + +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" + +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" + +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" + +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is aanwezig op %2$s's %3$s" + +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is niet aanwezig op %2$s's %3$s" + +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" + +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Actie voltooid" + +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Bedankt" + +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profiel niet gevonden." + +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profiel verwijderd." + +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profiel-" + +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." + +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" + +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" + +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" + +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Huwelijke status" + +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantische partner" + +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Houdt van" + +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Houdt niet van" + +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Werk/arbeid" + +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religie" + +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politieke overtuigingen" + +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geslacht" + +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" + +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Homepage" + +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesses" + +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" + +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." + +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" + +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Profiel weergeven" + +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" + +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Geen locaties gevonden." +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primair" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Nu synchroniseren" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1564 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relatie" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:55 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Jouw geslacht" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Burgerlijke staat" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Profielnaam" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "kanaal" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "ding" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Jouw volledige naam" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titel/omschrijving" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Straat en huisnummer" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Woonplaats" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "bericht" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Provincie/gewest/deelstaat" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" -msgstr "gebeurtenis" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Postcode" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Land" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Wie (wanneer van toepassing)" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s is het eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s is het niet eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Sinds (datum)" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Vertel ons iets over jezelf" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s is aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL homepagina" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s is niet aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Oorspronkelijk uit" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Religieuze overtuigingen" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Bedankt" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Trefwoorden voor in de kanalengids" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Nieuwe aanmaken" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisie" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Liefde/romantiek" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "School/opleiding" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Uitbesteed kanaal" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Profielfoto" + +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:91 +msgid "Edit Profiles" +msgstr "Bewerk profielen" #: ../../Zotlabs/Module/Mitem.php:52 msgid "Unable to create element." @@ -3499,6 +3621,11 @@ msgstr "Menu-onderdeel kan niet worden toegevoegd." msgid "Menu Item Permissions" msgstr "Permissies menu-item" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" + #: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 msgid "Link Name" msgstr "Linknaam" @@ -3595,1449 +3722,1607 @@ msgstr "Menu-element bewerken" msgid "Link text" msgstr "Linktekst" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Thema-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Hub - Setup" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# accounts" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr "Could not connect to database." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# geblokkeerde accounts" +#: ../../Zotlabs/Module/Setup.php:192 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# verlopen accounts" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# accounts die nog moeten verlopen" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# Kanalen" +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primair" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# klonen" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "System check" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Berichtenwachtrij" +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:949 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +msgid "Next" +msgstr "Volgende" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Jouw software moet worden bijgewerkt " +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Check again" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 -#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 -#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 -#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 -#: ../../Zotlabs/Module/Admin.php:1745 -msgid "Administration" -msgstr "Beheer" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Database connection" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Samenvatting" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "In order to install $Projectname we need to know how to connect to your database." -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Geregistreerde accounts" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 -msgid "Pending registrations" -msgstr "Accounts die op goedkeuring wachten" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Geregistreerde kanalen" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Database Server Name" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 -msgid "Active plugins" -msgstr "Ingeschakelde plugins" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Default is 127.0.0.1" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versie" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Database Port" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versie repository (master)" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versie repository (dev)" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Database Login Name" -#: ../../Zotlabs/Module/Admin.php:377 -msgid "Site settings updated." -msgstr "Hub-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Database Login Password" -#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 -msgid "Default" -msgstr "Standaard" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Database Name" -#: ../../Zotlabs/Module/Admin.php:416 -msgid "experimental" -msgstr "experimenteel" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Database Type" -#: ../../Zotlabs/Module/Admin.php:418 -msgid "unsupported" -msgstr "Niet ondersteund" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "Hub administrator email address" -#: ../../Zotlabs/Module/Admin.php:464 -msgid "Yes - with approval" -msgstr "Ja - met goedkeuring" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." -#: ../../Zotlabs/Module/Admin.php:470 -msgid "My site is not a public server" -msgstr "Mijn $Projectname-hub is niet openbaar" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "Hub URL" -#: ../../Zotlabs/Module/Admin.php:471 -msgid "My site has paid access only" -msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." -#: ../../Zotlabs/Module/Admin.php:472 -msgid "My site has free access only" -msgstr "Mijn $Projectname-hub kent alleen gratis toegang" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" -#: ../../Zotlabs/Module/Admin.php:473 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Hub settings" -#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 -msgid "Site" -msgstr "Hub-instellingen" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP version 5.5 or greater is required." -#: ../../Zotlabs/Module/Admin.php:504 -msgid "File upload" -msgstr "Bestand uploaden" +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "PHP version" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Policies" -msgstr "Beleid" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." -#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Geavanceerd" +#: ../../Zotlabs/Module/Setup.php:417 +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 "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." -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Site name" -msgstr "Naam van deze $Projectname-hub" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "PHP executable path" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Banner/Logo" -msgstr "Banner/logo" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Administrator Information" -msgstr "Informatie over de beheerder" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Setup.php:435 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: ../../Zotlabs/Module/Admin.php:516 -msgid "System language" -msgstr "Standaardtaal" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../Zotlabs/Module/Admin.php:517 -msgid "System theme" -msgstr "Standaardthema" +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" - -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Mobile system theme" -msgstr "Standaardthema voor mobiel" - -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" +"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 "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." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Allow Feeds as Connections" -msgstr "Sta feeds toe als connecties" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "You can adjust these settings in the servers php.ini." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "(Heavy system resource usage)" -msgstr "(sterk negatieve invloed op systeembronnen hub)" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "PHP upload limits" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Maximum image size" -msgstr "Maximale grootte van afbeeldingen" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Setup.php:488 msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Does this site allow new member registration?" -msgstr "Staat deze hub nieuwe accounts toe?" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Invitation only" -msgstr "Alleen op uitnodiging" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../Zotlabs/Module/Admin.php:524 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Register text" -msgstr "Tekst tijdens registratie" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Will be displayed prominently on the registration page." -msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../Zotlabs/Module/Admin.php:526 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "xml PHP module" + +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../Zotlabs/Module/Admin.php:526 +#: ../../Zotlabs/Module/Setup.php:512 msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Preserve site homepage URL" -msgstr "Behoudt de URL van de hub (/)" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Admin.php:527 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Accounts abandoned after x days" -msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Setup.php:530 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Allowed friend domains" -msgstr "Toegestane domeinen" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Setup.php:538 msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Allowed email domains" -msgstr "Toegestane e-maildomeinen" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: xml PHP module required for DAV but not installed." -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Not allowed email domains" -msgstr "Niet toegestane e-maildomeinen" +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "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." -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Setup.php:565 msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " +"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 "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." -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Verify Email Addresses" -msgstr "E-mailadres verifieren" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Setup.php:567 msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Force publish" -msgstr "Dwing kanaalvermelding af" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Setup.php:584 msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Import Public Streams" -msgstr "Openbare streams importeren" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." +"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 "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." -#: ../../Zotlabs/Module/Admin.php:535 -msgid "Login on Homepage" -msgstr "Inlogformulier op de homepagina" +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../Zotlabs/Module/Admin.php:535 +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Enable context help" -msgstr "Schakel contextuele hulp in" +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../Zotlabs/Module/Admin.php:536 +#: ../../Zotlabs/Module/Setup.php:606 msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt." +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Directory Server URL" -msgstr "Server-URL voor de kanalengids" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "store is writable" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Default directory server" -msgstr "Standaardserver voor de kanalengids" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../Zotlabs/Module/Admin.php:540 -msgid "Proxy user" -msgstr "Gebruikersnaam proxy" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "Proxy URL" -msgstr "Proxy-URL" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../Zotlabs/Module/Admin.php:542 -msgid "Network timeout" -msgstr "Netwerktimeout" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../Zotlabs/Module/Admin.php:542 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../Zotlabs/Module/Admin.php:543 -msgid "Delivery interval" -msgstr "Afleveringsinterval" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../Zotlabs/Module/Admin.php:543 +#: ../../Zotlabs/Module/Setup.php:650 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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." +"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 "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." -#: ../../Zotlabs/Module/Admin.php:544 -msgid "Deliveries per process" -msgstr "Leveringen per serverproces" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../Zotlabs/Module/Admin.php:544 +#: ../../Zotlabs/Module/Setup.php:659 msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../Zotlabs/Module/Admin.php:545 -msgid "Poll interval" -msgstr "Poll-interval" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../Zotlabs/Module/Admin.php:545 +#: ../../Zotlabs/Module/Setup.php:671 msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: ../../Zotlabs/Module/Admin.php:546 -msgid "Maximum Load Average" -msgstr "Maximaal gemiddelde systeembelasting" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." + +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    What next

    " -#: ../../Zotlabs/Module/Admin.php:546 +#: ../../Zotlabs/Module/Setup.php:733 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../Zotlabs/Module/Admin.php:547 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../Zotlabs/Module/Admin.php:547 -msgid "0 for no expiration of imported content" -msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." + +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../Zotlabs/Module/Admin.php:691 +#: ../../Zotlabs/Module/Lostpass.php:44 #, php-format -msgid "Lock feature %s" -msgstr " Vergrendel de functie '%s'" +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" -#: ../../Zotlabs/Module/Admin.php:699 -msgid "Manage Additional Features" -msgstr "Beheer - Extra functies" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../Zotlabs/Module/Admin.php:716 -msgid "No server found" -msgstr "Geen hub gevonden" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../Zotlabs/Module/Admin.php:723 -msgid "for channel" -msgstr "voor kanaal" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "on server" -msgstr "op hub" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../Zotlabs/Module/Admin.php:725 -msgid "Server" -msgstr "Hubbeheer" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../Zotlabs/Module/Admin.php:759 +#: ../../Zotlabs/Module/Lostpass.php:95 msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." -#: ../../Zotlabs/Module/Admin.php:762 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"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/
    " +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Admin.php:764 +#: ../../Zotlabs/Module/Lostpass.php:128 msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." - -#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 -msgid "Security" -msgstr "Beveiliging" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../Zotlabs/Module/Admin.php:771 -msgid "Block public" -msgstr "Openbare toegang blokkeren" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "Set \"Transport Security\" HTTP header" -msgstr "\"Transport Security\" HTTP-header inschakelen" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr " \"Content Security Policy\" HTTP-header inschakelen" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Stemming" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "Allow communications only from these sites" -msgstr "Alleen communicatie met deze hubs toestaan" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../Zotlabs/Module/Admin.php:774 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" - -#: ../../Zotlabs/Module/Admin.php:775 -msgid "Block communications from these sites" -msgstr "Communicatie met deze hubs blokkeren" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../Zotlabs/Module/Admin.php:776 -msgid "Allow communications only from these channels" -msgstr "Sta alleen communicatie toe met deze kanalen" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "WARNING: " +msgstr "WAARSCHUWING: " -#: ../../Zotlabs/Module/Admin.php:777 -msgid "Block communications from these channels" -msgstr "Communicatie met deze kanalen blokkeren" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Admin.php:778 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan." +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" +msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan" +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "One site per line. By default embedded content is filtered." -msgstr "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd." +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Admin.php:780 -msgid "Block embedded HTML from these domains" -msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Admin.php:798 -msgid "Update has been marked successful" -msgstr "Update is als succesvol gemarkeerd" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../Zotlabs/Module/Admin.php:808 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../Zotlabs/Module/Admin.php:811 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was geslaagd." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../Zotlabs/Module/Admin.php:815 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../Zotlabs/Module/Admin.php:818 -#, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../Zotlabs/Module/Admin.php:834 -msgid "No failed updates." -msgstr "Geen mislukte updates." +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" -#: ../../Zotlabs/Module/Admin.php:838 -msgid "Failed Updates" -msgstr "Mislukte updates" +#: ../../Zotlabs/Module/Match.php:68 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:955 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Verbinden" -#: ../../Zotlabs/Module/Admin.php:840 -msgid "Mark success (if update was manually applied)" -msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" -#: ../../Zotlabs/Module/Admin.php:841 -msgid "Attempt to execute this update step automatically" -msgstr "Poging om deze stap van de update automatisch uit te voeren." +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" -#: ../../Zotlabs/Module/Admin.php:872 -msgid "Queue Statistics" -msgstr "Wachtrij-statistieken" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../Zotlabs/Module/Admin.php:873 -msgid "Total Entries" -msgstr "Aantal vermeldingen" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../Zotlabs/Module/Admin.php:874 -msgid "Priority" -msgstr "Prioriteit" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." -#: ../../Zotlabs/Module/Admin.php:875 -msgid "Destination URL" -msgstr "Doel-URL" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:728 +msgid "Profile Photos" +msgstr "Profielfoto's" -#: ../../Zotlabs/Module/Admin.php:876 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markeren" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." +msgstr "Album niet gevonden." -#: ../../Zotlabs/Module/Admin.php:877 -msgid "Empty queue for this hub" -msgstr "Berichtenwachtrij voor deze hub legen" +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" +msgstr "Verwijder album" -#: ../../Zotlabs/Module/Admin.php:878 -msgid "Last known contact" -msgstr "Voor het laatst contact" +#: ../../Zotlabs/Module/Photos.php:133 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." -#: ../../Zotlabs/Module/Admin.php:914 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s account geblokkeerd/gedeblokkeerd" -msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Verwijder foto" -#: ../../Zotlabs/Module/Admin.php:921 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account verwijderd" -msgstr[1] "%s accounts verwijderd" +#: ../../Zotlabs/Module/Photos.php:509 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +#: ../../Zotlabs/Module/Directory.php:63 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." -#: ../../Zotlabs/Module/Admin.php:957 -msgid "Account not found" -msgstr "Account niet gevonden" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" -#: ../../Zotlabs/Module/Admin.php:968 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." -#: ../../Zotlabs/Module/Admin.php:976 +#: ../../Zotlabs/Module/Photos.php:608 #, php-format -msgid "Account '%s' blocked" -msgstr "Account '%s' geblokkeerd" +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Admin.php:984 +#: ../../Zotlabs/Module/Photos.php:611 #, php-format -msgid "Account '%s' unblocked" -msgstr "Account '%s' gedeblokkeerd" +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 -#: ../../include/widgets.php:1491 -msgid "Accounts" -msgstr "Accounts" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" +msgstr "Foto's uploaden" -#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 -msgid "select all" -msgstr "alles selecteren" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" +msgstr "Vul een albumnaam in" -#: ../../Zotlabs/Module/Admin.php:1047 -msgid "Registrations waiting for confirm" -msgstr "Accounts die op goedkeuring wachten" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "Request date" -msgstr "Tijd/datum verzoek" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" +msgstr "Plaats een bericht voor deze upload." -#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "E-mail" +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" +msgstr "Bijschrift (optioneel):" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "No registrations." -msgstr "Geen verzoeken." +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" +msgstr "Omschrijving (optioneel):" -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Deny" -msgstr "Afkeuren" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "Blokkeren" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" +msgstr "Connectiefoto's" -#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "Deblokkeren" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" -#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle kanalen" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" -#: ../../Zotlabs/Module/Admin.php:1062 -msgid "Register date" -msgstr "Geregistreerd" +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1677 +msgid "View Photo" +msgstr "Foto weergeven" -#: ../../Zotlabs/Module/Admin.php:1063 -msgid "Last login" -msgstr "Laatste keer ingelogd" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1694 +msgid "Edit Album" +msgstr "Album bewerken" -#: ../../Zotlabs/Module/Admin.php:1064 -msgid "Expires" -msgstr "Verloopt" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../Zotlabs/Module/Admin.php:1065 -msgid "Service Class" -msgstr "Abonnementen" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" +msgstr "Foto niet aanwezig" -#: ../../Zotlabs/Module/Admin.php:1067 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" -#: ../../Zotlabs/Module/Admin.php:1068 -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 "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" +msgstr "Als omslagfoto gebruiken" -#: ../../Zotlabs/Module/Admin.php:1104 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanaal gecensureerd/ongecensureerd" -msgstr[1] "%s kanalen gecensureerd/ongecensureerd" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" +msgstr "Privéfoto" -#: ../../Zotlabs/Module/Admin.php:1113 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" -msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" +#: ../../Zotlabs/Module/Photos.php:940 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 +msgid "Previous" +msgstr "Vorige" -#: ../../Zotlabs/Module/Admin.php:1119 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanaal verwijderd" -msgstr[1] "%s kanalen verwijderd" +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" -#: ../../Zotlabs/Module/Admin.php:1139 -msgid "Channel not found" -msgstr "Kanaal niet gevonden" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" +msgstr "Foto bewerken" -#: ../../Zotlabs/Module/Admin.php:1149 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanaal '%s' verwijderd" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanaal '%s' gecensureerd" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanaal '%s' ongecensureerd" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" +msgstr "Verplaatst foto naar album" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Scripts toegestaan voor kanaal '%s'" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Scripts niet toegestaan voor kanaal '%s'" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 -msgid "Channels" -msgstr "Kanalen" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Bijschrift" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "Censor" -msgstr "Censureren" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Tag toevoegen" -#: ../../Zotlabs/Module/Admin.php:1228 -msgid "Uncensor" -msgstr "Niet censureren" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../Zotlabs/Module/Admin.php:1229 -msgid "Allow Code" -msgstr "Scripts toestaan" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../Zotlabs/Module/Admin.php:1230 -msgid "Disallow Code" -msgstr "Scripts niet toestaan" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:268 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" -#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 -msgid "Channel" -msgstr "Kanaal" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:269 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" -#: ../../Zotlabs/Module/Admin.php:1235 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:241 +#: ../../include/conversation.php:1232 +msgid "Share" +msgstr "Delen" -#: ../../Zotlabs/Module/Admin.php:1239 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:405 +#: ../../include/conversation.php:741 +msgid "Please wait" +msgstr "Even wachten" -#: ../../Zotlabs/Module/Admin.php:1240 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:722 +msgid "This is you" +msgstr "Dit ben jij" -#: ../../Zotlabs/Module/Admin.php:1297 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s uitgeschakeld." +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:724 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Reactie" -#: ../../Zotlabs/Module/Admin.php:1301 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s ingeschakeld" +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:247 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:734 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1201 +msgid "Preview" +msgstr "Voorvertoning" -#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 -msgid "Disable" -msgstr "Uitschakelen" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 -msgid "Enable" -msgstr "Inschakelen" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 -#: ../../include/widgets.php:1495 -msgid "Plugins" -msgstr "Plugins" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "eens" -#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 -msgid "Toggle" -msgstr "Omschakelen" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 -#: ../../include/nav.php:212 -msgid "Settings" -msgstr "Instellingen" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" -#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 -msgid "Author: " -msgstr "Auteur: " +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" -#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 -msgid "Maintainer: " -msgstr "Beheerder: " +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" -#: ../../Zotlabs/Module/Admin.php:1354 -msgid "Minimum project version: " -msgstr "Minimum versie Hubzilla: " +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" -#: ../../Zotlabs/Module/Admin.php:1355 -msgid "Maximum project version: " -msgstr "Maximum versie Hubzilla:" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Lib/ThreadItem.php:198 +#: ../../include/conversation.php:1763 +msgid "View all" +msgstr "Toon alles" -#: ../../Zotlabs/Module/Admin.php:1356 -msgid "Minimum PHP version: " -msgstr "Minimum versie PHP: " +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/channel.php:1182 ../../include/conversation.php:1787 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" -#: ../../Zotlabs/Module/Admin.php:1357 -msgid "Compatible Server Roles: " -msgstr "Werkt met configuratietypes: " +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:195 +#: ../../include/conversation.php:1790 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" -#: ../../Zotlabs/Module/Admin.php:1358 -msgid "Requires: " -msgstr "Vereist: " +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 -msgid "Disabled - version incompatibility" -msgstr "Uitgeschakeld - versie is incompatibel" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "Op deze foto:" -#: ../../Zotlabs/Module/Admin.php:1408 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Vul de openbare Git-URL in van de plugin-repository." +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Kaart" -#: ../../Zotlabs/Module/Admin.php:1409 -msgid "Plugin repo git URL" -msgstr "Git-URL plugin-repository" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:394 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "Custom repo name" -msgstr "Handmatige repository-naam" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:395 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "(optional)" -msgstr "(optioneel)" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:400 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Sluiten" -#: ../../Zotlabs/Module/Admin.php:1411 -msgid "Download Plugin Repo" -msgstr "Plugin-repository downloaden" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Album weergeven" -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "Install new repo" -msgstr "Nieuwe repository installeren" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Recente foto's" -#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installeren" +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Name or caption" +msgstr "Naam" -#: ../../Zotlabs/Module/Admin.php:1441 -msgid "Manage Repos" -msgstr "Repositories beheren" +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" -#: ../../Zotlabs/Module/Admin.php:1442 -msgid "Installed Plugin Repositories" -msgstr "Toegevoegde plugin-repositories" +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" -#: ../../Zotlabs/Module/Admin.php:1443 -msgid "Install a New Plugin Repository" -msgstr "Nieuwe plugin-repository toevoegen" +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" -#: ../../Zotlabs/Module/Admin.php:1450 -msgid "Switch branch" -msgstr "Branch veranderen" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Channel role and privacy" +msgstr "Kanaaltype en privacy" -#: ../../Zotlabs/Module/Admin.php:1564 -msgid "No themes found." -msgstr "Geen thema's gevonden" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Select a channel role with your privacy requirements." +msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." -#: ../../Zotlabs/Module/Admin.php:1620 -msgid "Screenshot" -msgstr "Schermafdruk" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 -#: ../../include/widgets.php:1496 -msgid "Themes" -msgstr "Thema's" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" +msgstr "Kanaal aanmaken" -#: ../../Zotlabs/Module/Admin.php:1666 -msgid "[Experimental]" -msgstr "[Experimenteel]" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." -#: ../../Zotlabs/Module/Admin.php:1667 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or import an existing channel from another location." +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" -#: ../../Zotlabs/Module/Admin.php:1691 -msgid "Log settings updated." -msgstr "Logboek-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" -msgstr "Logboeken" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../Zotlabs/Module/Admin.php:1748 -msgid "Clear" -msgstr "Leegmaken" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../Zotlabs/Module/Admin.php:1754 -msgid "Debugging" -msgstr "Debuggen" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[vandaag]" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "Log file" -msgstr "Logbestand" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../Zotlabs/Module/Admin.php:1756 -msgid "Log level" -msgstr "Logniveau" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "New Profile Field" -msgstr "Nieuw profielveld" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "Field nickname" -msgstr "Bijnaam voor veld" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:959 +msgid "Poke" +msgstr "Aanstoten" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "System name of field" -msgstr "Systeemnaam voor veld" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" -#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 -msgid "Input type" -msgstr "Invoertype" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Field Name" -msgstr "Veldnaam" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Label on profile pages" -msgstr "Tekstlabel voor op profielpagina's" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Help text" -msgstr "Helptekst" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Additional info (optional)" -msgstr "Extra informatie (optioneel)" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" -#: ../../Zotlabs/Module/Admin.php:2056 -msgid "Field definition not found" -msgstr "Velddefinitie niet gevonden" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Apps" -#: ../../Zotlabs/Module/Admin.php:2062 -msgid "Edit Profile Field" -msgstr "Profielveld bewerken" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" -#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 -msgid "Profile Fields" -msgstr "Profielvelden" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." -#: ../../Zotlabs/Module/Admin.php:2121 -msgid "Basic Profile Fields" -msgstr "Standaard profielvelden" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "Advanced Profile Fields" -msgstr "Geavanceerde profielvelden" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "(In addition to basic fields)" -msgstr "(als toevoeging op de standaard velden)" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profiel" -#: ../../Zotlabs/Module/Admin.php:2124 -msgid "All available fields" -msgstr "Alle beschikbare velden" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../Zotlabs/Module/Admin.php:2125 -msgid "Custom Fields" -msgstr "Extra (handmatig toegevoegde) velden" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../Zotlabs/Module/Admin.php:2129 -msgid "Create Custom Field" -msgstr "Extra velden aanmaken" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +msgid "Version %s" +msgstr "Versie %s" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../Zotlabs/Module/Lostpass.php:95 +#: ../../Zotlabs/Module/Siteinfo.php:59 msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-issues" -#: ../../Zotlabs/Module/Lostpass.php:128 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-mailadres" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Hubbeheerders: " -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 +msgid "Blocks" +msgstr "Blokken" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Bloktitel" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Stemming" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 +msgid "Layouts" +msgstr "Lay-outs" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/help.php:47 ../../include/help.php:52 +#: ../../include/nav.php:164 +msgid "Help" +msgstr "Hulp" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profiel niet gevonden." +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Lay-out-omschrijving" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profiel-" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Download PDL-bestand" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "# accounts" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "# geblokkeerde accounts" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "# verlopen accounts" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "# accounts die nog moeten verlopen" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "# Kanalen" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "# primair" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Houdt van" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "# klonen" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "Berichtenwachtrij" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Jouw software moet worden bijgewerkt " -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religie" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "Samenvatting" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "Geregistreerde accounts" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geslacht" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "Accounts die op goedkeuring wachten" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "Geregistreerde kanalen" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Homepage" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "Ingeschakelde plugins" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesses" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "Versie" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "Versie repository (master)" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "Versie repository (dev)" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:597 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Omslagfoto wijzigen" +#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:646 +#: ../../include/text.php:1762 +msgid "Link to Source" +msgstr "Originele locatie" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:677 +msgid "Export" +msgstr "Exporteren" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" +msgstr "Importeren" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:686 +msgid "Today" +msgstr "Vandaag" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1559 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relatie" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" + +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." + +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Beoordeling: " -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Website: " -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Omschrijving: " -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Jouw geslacht" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Burgerlijke staat" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profielnaam" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Jouw volledige naam" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titel/omschrijving" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Straat en huisnummer" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Woonplaats" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registreer op een andere hub." -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Provincie/gewest/deelstaat" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postcode" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Land" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Wie (wanneer van toepassing)" +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Jouw e-mailadres" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Sinds (datum)" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Vertel ons iets over jezelf" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL homepagina" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Oorspronkelijk uit" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "Nee" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religieuze overtuigingen" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Trefwoorden voor in de kanalengids" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" +msgstr "Registreren" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder." -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "Zoek documentatie" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "$Projectname-documentatie" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisie" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Liefde/romantiek" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "School/opleiding" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contactinformatie en sociale netwerken" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mijn andere kanalen" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Profielfoto" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Authenticeren" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:90 -msgid "Edit Profiles" -msgstr "Bewerk profielen" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Inloggen." -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systeemnotificaties" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Verwijder dit account" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profielovereenkomst" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 +msgid "Remove Account" +msgstr "Account verwijderen" -#: ../../Zotlabs/Module/Webpages.php:53 +#: ../../Zotlabs/Module/Webpages.php:52 msgid "Import Webpage Elements" msgstr "Webpagina-elementen importeren" -#: ../../Zotlabs/Module/Webpages.php:54 +#: ../../Zotlabs/Module/Webpages.php:53 msgid "Import selected" msgstr "Importbestand geselecteerd" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1718 ../../include/nav.php:108 +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Webpagina-elementen exporteren" + +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Selectie exporteren" + +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1725 msgid "Webpages" msgstr "Webpagina's" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 msgid "Actions" msgstr "Acties" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 msgid "Page Link" msgstr "Paginalink" -#: ../../Zotlabs/Module/Webpages.php:227 +#: ../../Zotlabs/Module/Webpages.php:250 msgid "Page Title" msgstr "Paginatitel" -#: ../../Zotlabs/Module/Webpages.php:258 +#: ../../Zotlabs/Module/Webpages.php:280 msgid "Invalid file type." msgstr "Ongeldig bestandsformaat" -#: ../../Zotlabs/Module/Webpages.php:270 +#: ../../Zotlabs/Module/Webpages.php:292 msgid "Error opening zip file" msgstr "Fout met openen zipbestand" -#: ../../Zotlabs/Module/Webpages.php:281 +#: ../../Zotlabs/Module/Webpages.php:303 msgid "Invalid folder path." msgstr "Ongeldige maplocatie" -#: ../../Zotlabs/Module/Webpages.php:308 +#: ../../Zotlabs/Module/Webpages.php:330 msgid "No webpage elements detected." msgstr "Geen webpagina-elementen gedecteerd" -#: ../../Zotlabs/Module/Webpages.php:382 +#: ../../Zotlabs/Module/Webpages.php:405 msgid "Import complete." msgstr "Importeren voltooid." +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" + +#: ../../Zotlabs/Module/Uexport.php:57 +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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." + +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" + +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." + +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporteer jouw berichten uit een bepaald jaar." + +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." + +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." + +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" + +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Items getagd met %s" + +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Zoekresultaten voor %s" + #: ../../Zotlabs/Module/Events.php:25 msgid "Calendar entries imported." msgstr "Agenda-items geïmporteerd." @@ -5125,7 +5410,7 @@ msgstr "Locatie bewerken" msgid "Share this event" msgstr "Deel deze gebeurtenis" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1264 msgid "Permission settings" msgstr "Permissies" @@ -5133,10 +5418,6 @@ msgstr "Permissies" msgid "Advanced Options" msgstr "Geavanceerde opties" -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" - #: ../../Zotlabs/Module/Events.php:619 msgid "Edit event" msgstr "Gebeurtenis bewerken" @@ -5145,1366 +5426,1188 @@ msgstr "Gebeurtenis bewerken" msgid "Delete event" msgstr "Gebeurtenis verwijderen" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" -msgstr "Originele locatie" - #: ../../Zotlabs/Module/Events.php:655 msgid "calendar" msgstr "agenda" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Gebeurtenis bewerken" - -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Gebeurtenis aanmaken" - -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exporteren" - #: ../../Zotlabs/Module/Events.php:681 msgid "Month" msgstr "Maand" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Week" - -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Dag" - -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Vandaag" - -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" - -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" - -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." - -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." - -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import voltooid." - -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." - -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Kanaal importeren" - -#: ../../Zotlabs/Module/Import.php:548 -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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." - -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" - -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" - -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" - -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" - -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." - -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" - -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" - -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." - -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Kanaal aanmaken" - -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." - -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" - -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" - -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" - -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "G:i, l d F" - -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[vandaag]" - -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" - -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" - -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuleren" - -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" -msgstr "Aanstoten" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Iemand aanstoten" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Week" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Dag" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" -msgstr "Profiel" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Berichten en reacties" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Alleen berichten" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versie %s" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "URL voor foto van ding (optioneel)" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" +#: ../../Zotlabs/Module/Item.php:851 +msgid "Duplicate post suppressed." +msgstr "Dubbel bericht tegengehouden." -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" +#: ../../Zotlabs/Module/Item.php:986 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../Zotlabs/Module/Item.php:1107 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " +#: ../../Zotlabs/Module/Item.php:1114 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../Zotlabs/Module/Item.php:1121 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "$projectname-issues" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Bestanden: met mij gedeeld" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NIEUW" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Verwijder alle bestanden" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" -msgstr "Blokken" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Verwijder dit bestand" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Bloktitel" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Niet gevonden" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" -msgstr "Lay-outs" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/features.php:99 ../../include/nav.php:111 +#: ../../include/conversation.php:1735 ../../include/conversation.php:1738 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Hulp met de paginabeschrijvingstaal Comanche" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Zandbak" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Lay-out-omschrijving" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\"" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Download PDL-bestand" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Revisies vergelijken" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Geen beoordelingen" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Ongedaan maken" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Beoordeling: " +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Vul de naam in van jouw nieuwe wiki:" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Website: " +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Vul de naam in van de nieuwe pagina:" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Vul de nieuwe naam in:" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1153 +msgid "Embed image from photo albums" +msgstr "Afbeelding uit een fotoalbum invoegen" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1247 +msgid "Embed an image from your albums" +msgstr "Afbeelding uit jouw albums invoegen" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissies niet toegestaan" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1249 +#: ../../include/conversation.php:1296 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" -msgstr "Importeren" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1189 +msgid "Choose images to embed" +msgstr "Kies afbeeldingen om in te voegen" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1190 +msgid "Choose an album" +msgstr "Kies een album" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1191 +msgid "Choose a different album..." +msgstr "Kies een ander album..." -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1192 +msgid "Error getting album list" +msgstr "Fout met ophalen albumlijst" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1193 +msgid "Error getting photo link" +msgstr "Fout met ophalen fotolink" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1194 +msgid "Error getting album" +msgstr "Fout met ophalen album" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Bron aangemaakt." -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Berichten" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Bron aangemaakt." -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Bericht ingetrokken." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:195 +#: ../../include/widgets.php:672 +msgid "Channel Sources" +msgstr "Kanaalbronnen" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" -msgstr "Vul een URL in:" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nieuwe bron" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Privébericht versturen" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Aan:" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Onderwerp:" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Kanaalnaam" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1239 -msgid "Attach file" -msgstr "Bestand toevoegen" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Verzenden" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" +msgstr "Optioneel" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1284 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Bron niet gevonden" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 -#: ../../include/conversation.php:1289 -msgid "Encrypt text" -msgstr "Tekst versleutelen" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Bron bewerken" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Bericht verwijderen" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Bron verwijderen" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Afleveringsrapport" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Bron verwijderd" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Bericht intrekken" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s niet meer" -#: ../../Zotlabs/Module/Mail.php:355 +#: ../../Zotlabs/Module/Suggest.php:39 msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Antwoord versturen" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../Zotlabs/Module/Mail.php:364 +#: ../../Zotlabs/Module/Suggest.php:64 ../../Zotlabs/Module/Directory.php:392 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "bericht" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1999 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "reactie" + +#: ../../Zotlabs/Module/Tagger.php:100 #, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%s):" +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag verwijderd" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Verwijder item-tag" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Kies een tag om te verwijderen" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanaal toegevoegd." -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "is nu verbonden met" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Geen connecties." -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Connecties weergeven" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Bron van item" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:955 ../../include/nav.php:88 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../Zotlabs/Module/Connedit.php:557 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ik ben online" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" -msgstr "Recente activiteit/berichten" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Naam chatkanaal" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" -msgstr "Deze connectie is geblokkeerd!" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Aantal minuten voordat chatberichten worden verwijderd" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" -msgstr "Niet meer negeren" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Geen chatkanalen beschikbaar" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" -msgstr "Deze connectie wordt genegeerd!" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Verloopt na" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" -msgstr "Niet meer archiveren" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" -msgstr "Archiveren" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" -msgstr "Deze connectie is gearchiveerd!" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d beoordeling" +msgstr[1] "%d beoordelingen" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" -msgstr "Niet meer verbergen" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geslacht:" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" -msgstr "Verbergen" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status: " -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage: " -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" -msgstr "Deze connectie is verborgen!" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" +msgstr "Plaats:" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 -msgid "Me" -msgstr "Ik" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Omschrijving:" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familie" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Over:" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Openbaar forum:" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Trefwoorden: " -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" -msgstr "Verwantschapsfilter instellen" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Niet voorstellen" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" -msgstr "Profiel instellen" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Gemeenschappelijke connecties:" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" -msgstr "Verwantschapsfilter en profiel instellen" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Volledige kanalengids" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" -msgstr "geen" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Lokale kanalengids" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Gezocht naar:" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "volgende pagina" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "vorige pagina" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" -msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Sorteeropties" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" -msgstr "Het primaire kanaaladres van deze connectie is" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetisch" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" -msgstr "Beschikbare locaties:" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" -msgstr "Gebruik de schuif om je beoordeling te geven" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" -msgstr "Verklaar jouw beoordeling (niet verplicht)" +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" -msgstr "Berichtenfilter" +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" -msgstr "Importeer alleen berichten met deze tekst" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Technisch niveau bijgewerkt" -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Wachtwoordverificatie mislukt" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" -msgstr "Importeer geen berichten met deze tekst" +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" -msgstr "Deze informatie is openbaar!" +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" -msgstr "Connectie moet nog geaccepteerd worden" +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" +msgstr "Account-instellingen" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" +msgstr "Huidig wachtwoord" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:167 -msgid "Apps" -msgstr "Apps" +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" +msgstr "Nieuw wachtwoord invoeren" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Ga verder" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" +msgstr "Nieuw wachtwoord bevestigen" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" +msgstr "Jouw technisch niveau" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Wordt gebruikt om je een gebruikerservaring te bieden die met jouw technisch niveau overeenkomt" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" +msgstr "E-mailadres:" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" +msgstr "Dit account en al zijn kanalen verwijderen" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Inloggen." +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Verwijder dit account" +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" +msgstr "Basis-instellingen" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "WAARSCHUWING: " +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Settings/Channel.php:464 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanaal exporteren" +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Settings/Channel.php:474 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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." - -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Inhoud exporteren" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../Zotlabs/Module/Uexport.php:59 +#: ../../Zotlabs/Module/Settings/Channel.php:475 msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporteer jouw berichten uit een bepaald jaar." +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." +#: ../../Zotlabs/Module/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format +#: ../../Zotlabs/Module/Settings/Channel.php:479 msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" +msgstr "Geavanceerde permissies" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." +msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." -#: ../../Zotlabs/Module/Search.php:216 +#: ../../Zotlabs/Module/Settings/Channel.php:483 #, php-format -msgid "Items tagged with: %s" -msgstr "Items getagd met %s" +msgid "This website expires after %d days." +msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Zoekresultaten voor %s" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." +msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Geen abonnementsbeperkingen gevonden." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ding toegevoegd" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" +msgstr "Standaard permissies voor nieuwe berichten" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" +msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" -msgstr "Kies een profiel" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" -msgstr "Plaats een bericht" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een bericht wanneer:" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" -msgstr "URL voor foto van ding (optioneel)" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" -#: ../../Zotlabs/Module/Item.php:1119 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Bestanden: met mij gedeeld" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" +msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NIEUW" +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Verwijder alle bestanden" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Verwijder dit bestand" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" +msgstr "Aanbevolen" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Niet gevonden" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 -#: ../../include/features.php:57 ../../include/nav.php:110 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" +msgstr "Gebeurtenissen van vandaag" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" -msgstr "Zandbak" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Wiki.php:100 +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" + +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" + +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" +msgstr "Systeemmededelingen" + +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" + +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" +msgstr "Nieuwe connecties" + +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\"" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" -msgstr "Revisies vergelijken" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" -msgstr "Ongedaan maken" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" -msgstr "Vul de naam in van jouw nieuwe wiki:" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" -msgstr "Vul de naam in van de nieuwe pagina:" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "Vul de nieuwe naam in:" +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 -msgid "Embed image from photo albums" -msgstr "Afbeelding uit een fotoalbum invoegen" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" +msgstr "Standaard fotoalbum voor uploads" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 -msgid "Embed an image from your albums" -msgstr "Afbeelding uit jouw albums invoegen" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" +msgstr "%Y - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 -#: ../../include/conversation.php:1291 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" +msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 -msgid "Choose images to embed" -msgstr "Kies afbeeldingen om in te voegen" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 -msgid "Choose an album" -msgstr "Kies een album" +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." +msgstr "Verwijder dit kanaal." -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 -msgid "Choose a different album..." -msgstr "Kies een ander album..." +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-service voor Firefox Share" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" +msgstr "Begin in de agenda de week op maandag" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 -msgid "Error getting album list" -msgstr "Fout met ophalen albumlijst" +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 -msgid "Error getting photo link" -msgstr "Fout met ophalen fotolink" +#: ../../Zotlabs/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 -msgid "Error getting album" -msgstr "Fout met ophalen album" +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" +msgstr "Weergave-instellingen" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" +msgstr "Thema-instellingen" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Handmatige thema-instellingen" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Inhoudsinstellingen" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" +msgstr "Gebruik thema:" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" +msgstr "Kies schema van thema" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" +msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanaalnaam" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Bron niet gevonden" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Bron bewerken" +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" +msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s niet meer" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" +msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "bericht" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "reactie" +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen aanwezig" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" +msgstr "Plugin-instellingen" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag verwijderd" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Verwijder item-tag" +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Kies een tag om te verwijderen" +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanaal toegevoegd." +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" +msgstr "Applicatie toevoegen" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Geen connecties." +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "Naam van applicatie" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" +msgstr "Consumer key" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Connecties weergeven" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Bron van item" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" +msgstr "Consumer secret" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" +msgstr "Pictogram-URL" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." +msgstr "Applicatie niet gevonden." -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ik ben online" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" +msgstr "Verbonden applicaties" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" +msgstr "Client key begint met" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Functie uitgeschakeld." +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" +msgstr "Geen naam" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "Naam chatkanaal" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dit kanaal heeft een limiet van %d tokens" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "Aantal minuten voordat chatberichten worden verwijderd" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Naam en wachtwoord zijn vereist" -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token opgeslagen." -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "Geen chatkanalen beschikbaar" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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." +msgstr "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud." + +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:" -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "Verloopt na" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Gasttoegang" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Inlognaam" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan opzoeken" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Wachtwoord:" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Geldig t/m (yyyy-mm-dd)" #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" @@ -6526,211 +6629,450 @@ msgstr "Chatkanaal niet gevonden" msgid "Room is full" msgstr "Chatkanaal is vol" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1889 msgid "$Projectname Notification" msgstr "$Projectname-notificatie" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1890 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1892 msgid "Thank You," msgstr "Bedankt," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1894 #, php-format msgid "%s Administrator" msgstr "Beheerder %s" -#: ../../Zotlabs/Lib/Enotify.php:100 +#: ../../Zotlabs/Lib/Enotify.php:103 #, php-format msgid "%s " msgstr "%s " -#: ../../Zotlabs/Lib/Enotify.php:104 +#: ../../Zotlabs/Lib/Enotify.php:107 #, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Notificatie] Nieuw privébericht ontvangen op %s" -#: ../../Zotlabs/Lib/Enotify.php:106 +#: ../../Zotlabs/Lib/Enotify.php:109 #, php-format msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Lib/Enotify.php:110 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s zond jou %2$s." -#: ../../Zotlabs/Lib/Enotify.php:107 +#: ../../Zotlabs/Lib/Enotify.php:110 msgid "a private message" msgstr "een privébericht" -#: ../../Zotlabs/Lib/Enotify.php:108 +#: ../../Zotlabs/Lib/Enotify.php:111 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." -#: ../../Zotlabs/Lib/Enotify.php:164 +#: ../../Zotlabs/Lib/Enotify.php:170 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:172 +#: ../../Zotlabs/Lib/Enotify.php:178 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:181 +#: ../../Zotlabs/Lib/Enotify.php:187 #, php-format msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Lib/Enotify.php:198 #, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" +msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notificatie] Reactie op conversatie #%1$d door %2$s" -#: ../../Zotlabs/Lib/Enotify.php:193 +#: ../../Zotlabs/Lib/Enotify.php:199 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 +#: ../../Zotlabs/Lib/Enotify.php:202 ../../Zotlabs/Lib/Enotify.php:217 +#: ../../Zotlabs/Lib/Enotify.php:243 ../../Zotlabs/Lib/Enotify.php:261 +#: ../../Zotlabs/Lib/Enotify.php:275 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." -#: ../../Zotlabs/Lib/Enotify.php:202 +#: ../../Zotlabs/Lib/Enotify.php:208 #, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" -#: ../../Zotlabs/Lib/Enotify.php:204 +#: ../../Zotlabs/Lib/Enotify.php:210 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" -#: ../../Zotlabs/Lib/Enotify.php:206 +#: ../../Zotlabs/Lib/Enotify.php:212 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" -#: ../../Zotlabs/Lib/Enotify.php:230 +#: ../../Zotlabs/Lib/Enotify.php:236 #, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Notificatie] %s heeft jou genoemd" -#: ../../Zotlabs/Lib/Enotify.php:231 +#: ../../Zotlabs/Lib/Enotify.php:237 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "%1$s, %2$s noemde jou op %3$s" -#: ../../Zotlabs/Lib/Enotify.php:232 +#: ../../Zotlabs/Lib/Enotify.php:238 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:244 +#: ../../Zotlabs/Lib/Enotify.php:250 #, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Notificatie] %1$s heeft jou aangestoten" -#: ../../Zotlabs/Lib/Enotify.php:245 +#: ../../Zotlabs/Lib/Enotify.php:251 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s heeft je aangestoten op %3$s" -#: ../../Zotlabs/Lib/Enotify.php:246 +#: ../../Zotlabs/Lib/Enotify.php:252 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:262 +#: ../../Zotlabs/Lib/Enotify.php:268 #, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Notificatie] %s heeft jouw bericht getagd" -#: ../../Zotlabs/Lib/Enotify.php:263 +#: ../../Zotlabs/Lib/Enotify.php:269 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" -#: ../../Zotlabs/Lib/Enotify.php:264 +#: ../../Zotlabs/Lib/Enotify.php:270 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" +#: ../../Zotlabs/Lib/Enotify.php:282 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Notificatie] Connectieverzoek ontvangen" -#: ../../Zotlabs/Lib/Enotify.php:277 +#: ../../Zotlabs/Lib/Enotify.php:283 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" -#: ../../Zotlabs/Lib/Enotify.php:278 +#: ../../Zotlabs/Lib/Enotify.php:284 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#: ../../Zotlabs/Lib/Enotify.php:288 ../../Zotlabs/Lib/Enotify.php:307 #, php-format msgid "You may visit their profile at %s" msgstr "Je kan het profiel bekijken op %s" -#: ../../Zotlabs/Lib/Enotify.php:284 +#: ../../Zotlabs/Lib/Enotify.php:290 #, php-format msgid "Please visit %s to approve or reject the connection request." msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" +#: ../../Zotlabs/Lib/Enotify.php:297 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Notificatie] Kanaalvoorstel ontvangen" -#: ../../Zotlabs/Lib/Enotify.php:292 +#: ../../Zotlabs/Lib/Enotify.php:298 #, php-format msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " "%4$s." msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." -#: ../../Zotlabs/Lib/Enotify.php:299 +#: ../../Zotlabs/Lib/Enotify.php:305 msgid "Name:" msgstr "Naam:" -#: ../../Zotlabs/Lib/Enotify.php:300 +#: ../../Zotlabs/Lib/Enotify.php:306 msgid "Photo:" msgstr "Foto:" -#: ../../Zotlabs/Lib/Enotify.php:303 +#: ../../Zotlabs/Lib/Enotify.php:309 #, php-format msgid "Please visit %s to approve or reject the suggestion." msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notificatie]" +#: ../../Zotlabs/Lib/Enotify.php:527 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Notificatie]" -#: ../../Zotlabs/Lib/Enotify.php:667 +#: ../../Zotlabs/Lib/Enotify.php:687 msgid "created a new post" msgstr "maakte een nieuw bericht aan" -#: ../../Zotlabs/Lib/Enotify.php:668 +#: ../../Zotlabs/Lib/Enotify.php:688 #, php-format msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Niet voor iedereen zichtbaar" + +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "Kies" + +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "In map opslaan" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Aanwezig" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Niet aanwezig" + +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Mogelijk aanwezig" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Eens" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Oneens" + +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Onthouding" + +#: ../../Zotlabs/Lib/ThreadItem.php:223 +msgid "Add Star" +msgstr "Ster toevoegen" + +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "Remove Star" +msgstr "Ster verwijderen" + +#: ../../Zotlabs/Lib/ThreadItem.php:225 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" + +#: ../../Zotlabs/Lib/ThreadItem.php:229 +msgid "starred" +msgstr "met ster" + +#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:674 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" + +#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" + +#: ../../Zotlabs/Lib/ThreadItem.php:248 +msgid "Add Tag" +msgstr "Tag toevoegen" + +#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:316 +msgid "like" +msgstr "vind dit leuk" + +#: ../../Zotlabs/Lib/ThreadItem.php:269 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "vind dit niet leuk" + +#: ../../Zotlabs/Lib/ThreadItem.php:273 +msgid "Share This" +msgstr "Delen" + +#: ../../Zotlabs/Lib/ThreadItem.php:273 +msgid "share" +msgstr "delen" + +#: ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "Delivery Report" +msgstr "Afleveringsrapport" + +#: ../../Zotlabs/Lib/ThreadItem.php:300 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" + +#: ../../Zotlabs/Lib/ThreadItem.php:329 ../../Zotlabs/Lib/ThreadItem.php:330 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:333 +msgid "to" +msgstr "aan" + +#: ../../Zotlabs/Lib/ThreadItem.php:334 +msgid "via" +msgstr "via" + +#: ../../Zotlabs/Lib/ThreadItem.php:335 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" + +#: ../../Zotlabs/Lib/ThreadItem.php:336 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" + +#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:720 +#, php-format +msgid "from %s" +msgstr "van %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:723 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:724 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" + +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" + +#: ../../Zotlabs/Lib/ThreadItem.php:378 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" + +#: ../../Zotlabs/Lib/ThreadItem.php:387 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" + +#: ../../Zotlabs/Lib/ThreadItem.php:436 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s alle" + +#: ../../Zotlabs/Lib/ThreadItem.php:726 ../../include/conversation.php:1239 +msgid "Bold" +msgstr "Vet" + +#: ../../Zotlabs/Lib/ThreadItem.php:727 ../../include/conversation.php:1240 +msgid "Italic" +msgstr "Cursief" + +#: ../../Zotlabs/Lib/ThreadItem.php:728 ../../include/conversation.php:1241 +msgid "Underline" +msgstr "Onderstrepen" + +#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/conversation.php:1242 +msgid "Quote" +msgstr "Citeren" + +#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/conversation.php:1243 +msgid "Code" +msgstr "Broncode" + +#: ../../Zotlabs/Lib/ThreadItem.php:731 +msgid "Image" +msgstr "Afbeelding" + +#: ../../Zotlabs/Lib/ThreadItem.php:732 +msgid "Insert Link" +msgstr "Link invoegen" + +#: ../../Zotlabs/Lib/ThreadItem.php:733 +msgid "Video" +msgstr "Video" + +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Alleen ik" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Openbaar" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Iedereen in het $Projectname-netwerk" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Iedereen op %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Al mijn geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" + #: ../../Zotlabs/Lib/Apps.php:205 msgid "Site Admin" msgstr "Hubbeheerder" @@ -6755,37 +7097,37 @@ msgstr "Firefox Share" msgid "Remote Diagnostics" msgstr "Diagnose op afstand" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:319 msgid "Suggest Channels" msgstr "Kanalen voorstellen" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 -#: ../../boot.php:1738 +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 +#: ../../boot.php:1739 msgid "Login" msgstr "Inloggen" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 msgid "Grid" msgstr "Grid" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 msgid "Channel Home" msgstr "Jouw kanaal" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 -#: ../../include/conversation.php:1685 ../../include/nav.php:205 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1689 ../../include/conversation.php:1692 msgid "Events" msgstr "Agenda" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 msgid "Directory" msgstr "Kanalengids" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 msgid "Mail" msgstr "Privéberichten" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 msgid "Chat" msgstr "Chatten" @@ -6805,7 +7147,7 @@ msgstr "Willekeurig kanaal" msgid "Invite" msgstr "Uitnodigen " -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1564 msgid "Features" msgstr "Extra functies" @@ -6825,1047 +7167,1122 @@ msgstr "Profielfoto" msgid "Purchase" msgstr "Aanschaffen" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:124 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" - -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:165 -msgid "Only me" -msgstr "Alleen ik" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Openbaar" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Iedereen in het $Projectname-netwerk" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." + +#: ../../include/dba/dba_driver.php:173 #, php-format -msgid "Any account on %s" -msgstr "Iedereen op %s" +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Al mijn geaccepteerde connecties" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Niet voor iedereen zichtbaar" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Kies" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "In map opslaan" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Aanwezig" +#: ../../include/permissions.php:55 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Niet aanwezig" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Mogelijk aanwezig" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Eens" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Oneens" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "een nieuwe foto" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Onthouding" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Ster toevoegen" +#: ../../include/photos.php:506 ../../include/conversation.php:1675 +msgid "Photo Albums" +msgstr "Fotoalbums" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Ster verwijderen" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" +#: ../../include/features.php:58 +msgid "General Features" +msgstr "Algemene functies" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "met ster" +#: ../../include/features.php:63 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" +#: ../../include/features.php:64 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" +#: ../../include/features.php:72 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Tag toevoegen" +#: ../../include/features.php:73 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 -msgid "like" -msgstr "vind dit leuk" +#: ../../include/features.php:81 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" -#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "vind dit niet leuk" +#: ../../include/features.php:82 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "Share This" -msgstr "Delen" +#: ../../include/features.php:90 +msgid "Web Pages" +msgstr "Webpagina's" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "share" -msgstr "delen" +#: ../../include/features.php:91 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" -#: ../../Zotlabs/Lib/ThreadItem.php:276 -msgid "Delivery Report" -msgstr "Afleveringsrapport" +#: ../../include/features.php:100 +msgid "Provide a wiki for your channel" +msgstr "Voeg een wiki aan jouw kanaal toe" -#: ../../Zotlabs/Lib/ThreadItem.php:294 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" +#: ../../include/features.php:117 +msgid "Private Notes" +msgstr "Privé-aantekeningen" -#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" +#: ../../include/features.php:118 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "to" -msgstr "aan" +#: ../../include/features.php:126 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "via" -msgstr "via" +#: ../../include/features.php:127 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" +#: ../../include/features.php:135 +msgid "Photo Location" +msgstr "Fotolocatie" -#: ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" +#: ../../include/features.php:136 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." -#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "van %s" +#: ../../include/features.php:144 +msgid "Access Controlled Chatrooms" +msgstr "Chatkanalen met toegangscontrole " -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" +#: ../../include/features.php:145 +msgid "Provide chatrooms and chat services with access control." +msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." -#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" +#: ../../include/features.php:153 +msgid "Smart Birthdays" +msgstr "Slimme verjaardagen" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" +#: ../../include/features.php:154 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." -#: ../../Zotlabs/Lib/ThreadItem.php:372 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" +#: ../../include/features.php:162 +msgid "Advanced Directory Search" +msgstr "Geavanceerd in de kanalengids zoeken" -#: ../../Zotlabs/Lib/ThreadItem.php:381 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" +#: ../../include/features.php:163 +msgid "Allows creation of complex directory search queries" +msgstr "Gebruik complexe zoekopdrachten in de kanalengids" -#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s alle" +#: ../../include/features.php:171 +msgid "Advanced Theme and Layout Settings" +msgstr "Geavanceerde thema- en lay-out-instellingen" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 -msgid "Bold" -msgstr "Vet" +#: ../../include/features.php:172 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Maakt het mogelijk dat thema's en pagina-lay-outs preciezer ingesteld kunnen worden " -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 -msgid "Italic" -msgstr "Cursief" +#: ../../include/features.php:182 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 -msgid "Underline" -msgstr "Onderstrepen" +#: ../../include/features.php:186 +msgid "Large Photos" +msgstr "Grote foto's" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 -msgid "Quote" -msgstr "Citeren" +#: ../../include/features.php:187 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 -msgid "Code" -msgstr "Broncode" +#: ../../include/features.php:196 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Image" -msgstr "Afbeelding" +#: ../../include/features.php:204 +msgid "Even More Encryption" +msgstr "Extra encryptie" + +#: ../../include/features.php:205 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Insert Link" -msgstr "Link invoegen" +#: ../../include/features.php:213 +msgid "Enable Voting Tools" +msgstr "Peilingen inschakelen" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Video" -msgstr "Video" +#: ../../include/features.php:214 +msgid "Provide a class of post which others can vote on" +msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Geen gebruikersnaam in het importbestand gevonden." +#: ../../include/features.php:222 +msgid "Disable Comments" +msgstr "Reacties uitschakelen" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." +#: ../../include/features.php:223 +msgid "Provide the option to disable comments for a post" +msgstr "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld" -#: ../../include/dba/dba_driver.php:173 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" +#: ../../include/features.php:231 +msgid "Delayed Posting" +msgstr "Berichten uitstellen" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/features.php:232 +msgid "Allow posts to be published at a later date" +msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/network.php:1935 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Beheerder" +#: ../../include/features.php:240 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "Geen onderwerp" +#: ../../include/features.php:241 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/features.php:249 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/features.php:250 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/network.php:2206 -msgid "GNU-Social" -msgstr "GNU social" +#: ../../include/features.php:261 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/features.php:265 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/features.php:266 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/features.php:274 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Privacygroepen" -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "Zot" +#: ../../include/features.php:275 +msgid "Enable management and selection of privacy groups" +msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/features.php:283 ../../include/widgets.php:283 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/features.php:284 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/features.php:292 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../include/oembed.php:340 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" +#: ../../include/features.php:293 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/oembed.php:349 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" +#: ../../include/features.php:301 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../include/permissions.php:29 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/features.php:302 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/permissions.php:33 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/features.php:310 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" -#: ../../include/permissions.php:37 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/features.php:311 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../include/permissions.php:40 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/features.php:320 +msgid "Show friend and connection suggestions" +msgstr "Toon kanaalvoorstellen" -#: ../../include/permissions.php:40 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/features.php:328 +msgid "Connection Filtering" +msgstr "Berichtenfilters" -#: ../../include/permissions.php:42 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/features.php:329 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/permissions.php:42 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../include/features.php:341 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/permissions.php:43 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/features.php:345 +msgid "Community Tagging" +msgstr "Taggen door anderen" -#: ../../include/permissions.php:44 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/features.php:346 +msgid "Ability to tag existing posts" +msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/permissions.php:45 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/features.php:354 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../include/permissions.php:47 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../include/features.php:355 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/permissions.php:49 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/features.php:363 +msgid "Emoji Reactions" +msgstr "Emoji-reacties" -#: ../../include/permissions.php:49 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +#: ../../include/features.php:364 +msgid "Add emoji reaction ability to posts" +msgstr "Emoji-reacties in berichten toestaan" -#: ../../include/items.php:899 ../../include/items.php:944 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/features.php:372 ../../include/contact_widgets.php:53 +#: ../../include/widgets.php:346 +msgid "Saved Folders" +msgstr "Bewaarde mappen" -#: ../../include/items.php:1143 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/features.php:373 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/items.php:1145 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/features.php:381 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/items.php:1147 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/features.php:382 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/items.php:1149 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../include/features.php:390 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../include/items.php:1151 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +#: ../../include/features.php:391 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/items.php:1153 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../include/features.php:399 +msgid "Tag Cloud" +msgstr "Tagwolk" -#: ../../include/items.php:1155 -msgid "Visible to approved connections." -msgstr "Voor alle geaccepteerde connecties zichtbaar." +#: ../../include/features.php:400 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/items.php:1157 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../include/features.php:412 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../include/items.php:3947 -msgid "Privacy group is empty." -msgstr "Privacygroep is leeg" +#: ../../include/features.php:413 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/items.php:3954 -#, php-format -msgid "Privacy group: %s" -msgstr "Privacygroep: %s" +#: ../../include/help.php:25 +msgid "Help:" +msgstr "Hulp:" -#: ../../include/items.php:3966 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../include/security.php:109 +msgid "guest:" +msgstr "gast:" -#: ../../include/items.php:4319 -msgid "profile photo" -msgstr "profielfoto" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../include/text.php:404 +#: ../../include/text.php:450 msgid "prev" msgstr "vorige" -#: ../../include/text.php:406 +#: ../../include/text.php:452 msgid "first" msgstr "eerste" -#: ../../include/text.php:435 +#: ../../include/text.php:481 msgid "last" msgstr "laatste" -#: ../../include/text.php:438 +#: ../../include/text.php:484 msgid "next" msgstr "volgende" -#: ../../include/text.php:448 +#: ../../include/text.php:494 msgid "older" msgstr "ouder" -#: ../../include/text.php:450 +#: ../../include/text.php:496 msgid "newer" msgstr "nieuwer" -#: ../../include/text.php:843 +#: ../../include/text.php:889 msgid "No connections" msgstr "Geen connecties" -#: ../../include/text.php:868 +#: ../../include/text.php:914 #, php-format msgid "View all %s connections" msgstr "Toon alle %s connecties" -#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/text.php:1059 ../../include/text.php:1064 msgid "poke" msgstr "aanstoten" -#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/text.php:1059 ../../include/text.php:1064 #: ../../include/conversation.php:243 msgid "poked" msgstr "aangestoten" -#: ../../include/text.php:1019 +#: ../../include/text.php:1065 msgid "ping" msgstr "ping" -#: ../../include/text.php:1019 +#: ../../include/text.php:1065 msgid "pinged" msgstr "gepingd" -#: ../../include/text.php:1020 +#: ../../include/text.php:1066 msgid "prod" msgstr "por" -#: ../../include/text.php:1020 +#: ../../include/text.php:1066 msgid "prodded" msgstr "gepord" -#: ../../include/text.php:1021 +#: ../../include/text.php:1067 msgid "slap" msgstr "slaan" -#: ../../include/text.php:1021 +#: ../../include/text.php:1067 msgid "slapped" msgstr "sloeg" -#: ../../include/text.php:1022 +#: ../../include/text.php:1068 msgid "finger" msgstr "finger" -#: ../../include/text.php:1022 +#: ../../include/text.php:1068 msgid "fingered" msgstr "gefingerd" -#: ../../include/text.php:1023 +#: ../../include/text.php:1069 msgid "rebuff" msgstr "afpoeieren" -#: ../../include/text.php:1023 +#: ../../include/text.php:1069 msgid "rebuffed" msgstr "afgepoeierd" -#: ../../include/text.php:1035 +#: ../../include/text.php:1081 msgid "happy" msgstr "gelukkig" -#: ../../include/text.php:1036 +#: ../../include/text.php:1082 msgid "sad" msgstr "bedroefd" -#: ../../include/text.php:1037 +#: ../../include/text.php:1083 msgid "mellow" msgstr "mellow" -#: ../../include/text.php:1038 +#: ../../include/text.php:1084 msgid "tired" msgstr "moe" -#: ../../include/text.php:1039 +#: ../../include/text.php:1085 msgid "perky" msgstr "parmantig" -#: ../../include/text.php:1040 +#: ../../include/text.php:1086 msgid "angry" msgstr "boos" -#: ../../include/text.php:1041 +#: ../../include/text.php:1087 msgid "stupefied" msgstr "verbijsterd" -#: ../../include/text.php:1042 +#: ../../include/text.php:1088 msgid "puzzled" msgstr "verward" -#: ../../include/text.php:1043 +#: ../../include/text.php:1089 msgid "interested" msgstr "geïnteresseerd" -#: ../../include/text.php:1044 +#: ../../include/text.php:1090 msgid "bitter" msgstr "verbitterd" -#: ../../include/text.php:1045 +#: ../../include/text.php:1091 msgid "cheerful" msgstr "vrolijk" -#: ../../include/text.php:1046 +#: ../../include/text.php:1092 msgid "alive" msgstr "levendig" -#: ../../include/text.php:1047 +#: ../../include/text.php:1093 msgid "annoyed" msgstr "geërgerd" -#: ../../include/text.php:1048 +#: ../../include/text.php:1094 msgid "anxious" msgstr "bezorgd" -#: ../../include/text.php:1049 +#: ../../include/text.php:1095 msgid "cranky" msgstr "humeurig" -#: ../../include/text.php:1050 +#: ../../include/text.php:1096 msgid "disturbed" msgstr "verontrust" -#: ../../include/text.php:1051 +#: ../../include/text.php:1097 msgid "frustrated" msgstr "gefrustreerd " -#: ../../include/text.php:1052 +#: ../../include/text.php:1098 msgid "depressed" msgstr "gedeprimeerd" -#: ../../include/text.php:1053 +#: ../../include/text.php:1099 msgid "motivated" msgstr "gemotiveerd" -#: ../../include/text.php:1054 +#: ../../include/text.php:1100 msgid "relaxed" msgstr "ontspannen" -#: ../../include/text.php:1055 +#: ../../include/text.php:1101 msgid "surprised" msgstr "verrast" -#: ../../include/text.php:1239 ../../include/js_strings.php:70 +#: ../../include/text.php:1285 ../../include/js_strings.php:70 msgid "Monday" msgstr "maandag" -#: ../../include/text.php:1239 ../../include/js_strings.php:71 +#: ../../include/text.php:1285 ../../include/js_strings.php:71 msgid "Tuesday" msgstr "dinsdag" -#: ../../include/text.php:1239 ../../include/js_strings.php:72 +#: ../../include/text.php:1285 ../../include/js_strings.php:72 msgid "Wednesday" msgstr "woensdag" -#: ../../include/text.php:1239 ../../include/js_strings.php:73 +#: ../../include/text.php:1285 ../../include/js_strings.php:73 msgid "Thursday" msgstr "donderdag" -#: ../../include/text.php:1239 ../../include/js_strings.php:74 +#: ../../include/text.php:1285 ../../include/js_strings.php:74 msgid "Friday" msgstr "vrijdag" -#: ../../include/text.php:1239 ../../include/js_strings.php:75 +#: ../../include/text.php:1285 ../../include/js_strings.php:75 msgid "Saturday" msgstr "zaterdag" -#: ../../include/text.php:1239 ../../include/js_strings.php:69 +#: ../../include/text.php:1285 ../../include/js_strings.php:69 msgid "Sunday" msgstr "zondag" -#: ../../include/text.php:1243 ../../include/js_strings.php:45 +#: ../../include/text.php:1289 ../../include/js_strings.php:45 msgid "January" msgstr "januari" -#: ../../include/text.php:1243 ../../include/js_strings.php:46 +#: ../../include/text.php:1289 ../../include/js_strings.php:46 msgid "February" msgstr "februari" -#: ../../include/text.php:1243 ../../include/js_strings.php:47 +#: ../../include/text.php:1289 ../../include/js_strings.php:47 msgid "March" msgstr "maart" -#: ../../include/text.php:1243 ../../include/js_strings.php:48 +#: ../../include/text.php:1289 ../../include/js_strings.php:48 msgid "April" msgstr "april" -#: ../../include/text.php:1243 +#: ../../include/text.php:1289 msgid "May" msgstr "mei" -#: ../../include/text.php:1243 ../../include/js_strings.php:50 +#: ../../include/text.php:1289 ../../include/js_strings.php:50 msgid "June" msgstr "juni" -#: ../../include/text.php:1243 ../../include/js_strings.php:51 +#: ../../include/text.php:1289 ../../include/js_strings.php:51 msgid "July" msgstr "juli" -#: ../../include/text.php:1243 ../../include/js_strings.php:52 +#: ../../include/text.php:1289 ../../include/js_strings.php:52 msgid "August" msgstr "augustus" -#: ../../include/text.php:1243 ../../include/js_strings.php:53 +#: ../../include/text.php:1289 ../../include/js_strings.php:53 msgid "September" msgstr "september" -#: ../../include/text.php:1243 ../../include/js_strings.php:54 +#: ../../include/text.php:1289 ../../include/js_strings.php:54 msgid "October" msgstr "oktober" -#: ../../include/text.php:1243 ../../include/js_strings.php:55 +#: ../../include/text.php:1289 ../../include/js_strings.php:55 msgid "November" msgstr "november" -#: ../../include/text.php:1243 ../../include/js_strings.php:56 +#: ../../include/text.php:1289 ../../include/js_strings.php:56 msgid "December" msgstr "december" -#: ../../include/text.php:1320 ../../include/text.php:1324 +#: ../../include/text.php:1366 ../../include/text.php:1370 msgid "Unknown Attachment" msgstr "Onbekende bijlage" -#: ../../include/text.php:1326 +#: ../../include/text.php:1372 msgid "unknown" msgstr "onbekend" -#: ../../include/text.php:1362 +#: ../../include/text.php:1408 msgid "remove category" msgstr "categorie verwijderen" -#: ../../include/text.php:1439 +#: ../../include/text.php:1485 msgid "remove from file" msgstr "uit map verwijderen" -#: ../../include/text.php:1738 ../../include/text.php:1809 +#: ../../include/text.php:1784 ../../include/text.php:1855 msgid "default" msgstr "standaard" -#: ../../include/text.php:1746 +#: ../../include/text.php:1792 msgid "Page layout" msgstr "Pagina-lay-out" -#: ../../include/text.php:1746 +#: ../../include/text.php:1792 msgid "You can create your own with the layouts tool" msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" -#: ../../include/text.php:1788 +#: ../../include/text.php:1834 msgid "Page content type" msgstr "Opmaaktype pagina" -#: ../../include/text.php:1821 +#: ../../include/text.php:1867 msgid "Select an alternate language" msgstr "Kies een andere taal" -#: ../../include/text.php:1958 +#: ../../include/text.php:2004 msgid "activity" msgstr "activiteit" -#: ../../include/text.php:2259 +#: ../../include/text.php:2305 msgid "Design Tools" msgstr "Ontwerp-hulpmiddelen" -#: ../../include/text.php:2265 +#: ../../include/text.php:2311 msgid "Pages" msgstr "Pagina's" -#: ../../include/text.php:2287 +#: ../../include/text.php:2333 msgid "Import website..." msgstr "Website importeren..." -#: ../../include/text.php:2288 +#: ../../include/text.php:2334 msgid "Select folder to import" msgstr "Kies een map om te importeren" -#: ../../include/text.php:2289 +#: ../../include/text.php:2335 msgid "Import from a zipped folder:" msgstr "Vanuit een zipbestand importeren:" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" -msgstr "Vanuit de cloud importeren:" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "Vanuit de cloud importeren:" + +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/maplocatie" + +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "Voer de locatie in van de websitebestanden" + +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "Kies een map" + +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "Website exporteren..." + +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "Naar een zipbestand exporteren" + +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "website.zip" + +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "Vul een naam in voor het zipbestand." + +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "Naar de cloud exporteren" + +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "/locatie/van/export/map" + +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "Voer de locatie in van de cloudbestemming" + +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "Selecteer een map" + +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" + +#: ../../include/zot.php:3713 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" + +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" + +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" + +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." + +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/maplocatie" +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../include/text.php:2292 -msgid "Enter path to website files" -msgstr "Voer de locatie in van de websitebestanden" +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../include/text.php:2293 -msgid "Select folder" -msgstr "Kies een map" +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorieën" +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Systeem" +#: ../../include/account.php:326 ../../include/account.php:353 +#: ../../include/account.php:413 ../../include/network.php:1937 +msgid "Administrator" +msgstr "Beheerder" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nieuwe app" +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Meer..." +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../include/widgets.php:175 +#: ../../include/account.php:463 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Vul kanaaladres in" +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/widgets.php:281 ../../include/features.php:85 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "toevoegen" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/widgets.php:310 ../../include/features.php:99 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Bewaarde mappen" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Elk uur" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archieven" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Vernieuwen" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Dagelijks" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Account" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanaal" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Extra functies" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Man" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-instellingen" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Vrouw" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Weergave" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Locaties beheren" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanaal exporteren" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbonden applicaties" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Privéberichten" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Gecombineerd postvak" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transseksueel" -#: ../../include/widgets.php:667 ../../include/nav.php:200 -msgid "Inbox" -msgstr "Postvak IN" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" -#: ../../include/widgets.php:672 ../../include/nav.php:201 -msgid "Outbox" -msgstr "Postvak UIT" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Genderneutraal" -#: ../../include/widgets.php:677 ../../include/nav.php:202 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Niet gespecificeerd" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaties" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Nog niet beslist" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ontvangen berichten" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Mannen" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Verzonden berichten" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Vrouwen" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Geen berichten" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homoseksueel" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Verwijder conversatie" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Agenda-hulpmiddelen" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Geen voorkeur" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exporteren" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Biseksueel" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importeren" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autoseksueel" -#: ../../include/widgets.php:850 ../../include/conversation.php:1695 -#: ../../include/conversation.php:1698 -msgid "Chatrooms" -msgstr "Chatkanalen" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Seksuele onthouding" -#: ../../include/widgets.php:854 -msgid "Overview" -msgstr "Overzicht" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Maagd" -#: ../../include/widgets.php:861 -msgid "Chat Members" -msgstr "Chatleden" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Afwijkend" -#: ../../include/widgets.php:883 -msgid "Wiki List" -msgstr "Wiki's" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisj" -#: ../../include/widgets.php:921 -msgid "Wiki Pages" -msgstr "Wikipagina's" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Veel" -#: ../../include/widgets.php:956 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Aseksueel" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Alleen" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Eenzaam" -#: ../../include/widgets.php:979 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Beschikbaar" -#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 -msgid "photo/image" -msgstr "foto/afbeelding" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Niet beschikbaar" -#: ../../include/widgets.php:1180 -msgid "Click to show more" -msgstr "Klik voor meer" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" -#: ../../include/widgets.php:1331 -msgid "Rating Tools" -msgstr "Beoordelingen" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Smoorverliefd" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 -msgid "Rate Me" -msgstr "Beoordeel mij" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Aan het daten" -#: ../../include/widgets.php:1340 -msgid "View Ratings" -msgstr "Bekijk beoordelingen" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Ontrouw" -#: ../../include/widgets.php:1424 -msgid "Forums" -msgstr "Forums" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Seksverslaafd" -#: ../../include/widgets.php:1453 -msgid "Tasks" -msgstr "Taken" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" -#: ../../include/widgets.php:1462 -msgid "Documentation" -msgstr "Documentatie" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Ongebonden/vluchtig" -#: ../../include/widgets.php:1464 -msgid "Project/Site Information" -msgstr "Project- en hub-informatie" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verloofd" -#: ../../include/widgets.php:1465 -msgid "For Members" -msgstr "Voor leden" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Getrouwd" -#: ../../include/widgets.php:1466 -msgid "For Administrators" -msgstr "Voor beheerders" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" -#: ../../include/widgets.php:1467 -msgid "For Developers" -msgstr "Voor ontwikkelaars" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partners" -#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 -msgid "Member registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Samenwonend" -#: ../../include/widgets.php:1497 -msgid "Inspect queue" -msgstr "Inspecteer berichtenwachtrij" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Common-law-huwelijk" -#: ../../include/widgets.php:1499 -msgid "DB updates" -msgstr "Database-updates" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Gelukkig" -#: ../../include/widgets.php:1524 ../../include/nav.php:220 -msgid "Admin" -msgstr "Beheer" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Niet op zoek" -#: ../../include/widgets.php:1525 -msgid "Plugin Features" -msgstr "Plugin-opties" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Verraden" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Uit elkaar" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Onstabiel" -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Gescheiden" -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" -msgstr "Handmatige selectie" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" -#: ../../include/acl_selectors.php:172 -msgid "Show" -msgstr "Tonen" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Onzeker" -#: ../../include/acl_selectors.php:173 -msgid "Don't show" -msgstr "Niet tonen" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Het is ingewikkeld" -#: ../../include/acl_selectors.php:207 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien." +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Maakt mij niks uit" -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Vraag het me" #: ../../include/channel.php:33 msgid "Unable to obtain identity information from database" @@ -7912,7 +8329,7 @@ msgstr "Opgevraagd kanaal is niet beschikbaar." msgid "Create New Profile" msgstr "Nieuw profiel aanmaken" -#: ../../include/channel.php:963 ../../include/nav.php:92 +#: ../../include/channel.php:963 ../../include/nav.php:93 msgid "Edit Profile" msgstr "Profiel bewerken" @@ -8025,1093 +8442,1042 @@ msgstr "School/opleiding:" msgid "Like this thing" msgstr "Vind dit ding leuk" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2577 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Handmatige selectie" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Tonen" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Niet tonen" -#: ../../include/datetime.php:563 +#: ../../include/acl_selectors.php:207 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Regelmatig" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Elk uur" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Twee keer per dag" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Dagelijks" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wekelijks" +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien." -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" -msgstr "Man" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" -msgstr "Vrouw" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Voeg nieuwe connecties aan deze privacygroep toe" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momenteel man" +#: ../../include/group.php:289 +msgid "edit" +msgstr "bewerken" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momenteel vrouw" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Privacygroep bewerken" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Voornamelijk man" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Privacygroep toevoegen" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanalen die zich in geen enkele privacygroep bevinden" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "toevoegen" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Interseksueel" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nieuw venster" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transseksueel" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Genderneutraal" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Niet gespecificeerd" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Nog niet beslist" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Mannen" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Vrouwen" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homoseksueel" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "Home" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Geen voorkeur" +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Biseksueel" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autoseksueel" +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Seksuele onthouding" +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Maagd" +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Afwijkend" +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/nav.php:105 ../../include/conversation.php:1715 +msgid "Bookmarks" +msgstr "Bladwijzers" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Veel" +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Aseksueel" +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Alleen" +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "Jouw wiki" -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Eenzaam" +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Beschikbaar" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: ../../include/nav.php:135 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Smoorverliefd" +#: ../../include/nav.php:149 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Aan het daten" +#: ../../include/nav.php:152 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Ontrouw" +#: ../../include/nav.php:164 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Seksverslaafd" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Ongebonden/vluchtig" +#: ../../include/nav.php:172 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verloofd" +#: ../../include/nav.php:184 +msgid "Your grid" +msgstr "Jouw grid" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Getrouwd" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" +#: ../../include/nav.php:187 +msgid "Channel home" +msgstr "Jouw kanaal" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partners" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Samenwonend" +#: ../../include/nav.php:194 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Common-law-huwelijk" +#: ../../include/nav.php:194 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Gelukkig" +#: ../../include/nav.php:195 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Niet op zoek" +#: ../../include/nav.php:198 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/nav.php:199 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Verraden" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Uit elkaar" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Onstabiel" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Gescheiden" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" +msgstr "Nieuw bericht" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" +#: ../../include/nav.php:206 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" +#: ../../include/nav.php:207 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Onzeker" +#: ../../include/nav.php:208 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Het is ingewikkeld" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Maakt mij niks uit" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Vraag het me" +#: ../../include/nav.php:221 ../../include/widgets.php:1594 +msgid "Admin" +msgstr "Beheer" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../include/nav.php:252 ../../include/conversation.php:853 +msgid "Loading..." +msgstr "Aan het laden..." -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "een nieuwe foto" +#: ../../include/nav.php:258 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Bijlagen:" -#: ../../include/photos.php:506 ../../include/conversation.php:1668 -msgid "Photo Albums" -msgstr "Fotoalbums" +#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "gast:" +#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" +msgstr "Start:" -#: ../../include/security.php:527 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" +msgstr "Einde:" -#: ../../include/conversation.php:204 +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" + +#: ../../include/js_strings.php:8 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" +msgid "%s show less" +msgstr "%s minder reacties weergeven" -#: ../../include/conversation.php:239 +#: ../../include/js_strings.php:9 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" +msgid "%s expand" +msgstr "%s uitklappen" -#: ../../include/conversation.php:694 +#: ../../include/js_strings.php:10 #, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +msgid "%s collapse" +msgstr "%s inklappen" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorieën:" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "In context bekijken" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "iedereen" -#: ../../include/conversation.php:851 -msgid "remove" -msgstr "verwijderen" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../include/conversation.php:855 ../../include/nav.php:251 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../include/conversation.php:949 -msgid "View Source" -msgstr "Bron weergeven" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../include/conversation.php:950 -msgid "Follow Thread" -msgstr "Conversatie volgen" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Conversatie niet meer volgen" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Beoordeel dit kanaal (dit is openbaar)" -#: ../../include/conversation.php:956 -msgid "Activity/Posts" -msgstr "Activiteit/berichten connectie" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Omschrijving (optioneel)" -#: ../../include/conversation.php:958 -msgid "Edit Connection" -msgstr "Connectie bewerken" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vul een URL in:" -#: ../../include/conversation.php:959 -msgid "Message" -msgstr "Bericht" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "geleden" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "vanaf nu" -#: ../../include/conversation.php:1088 -msgid "and" -msgstr "en" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../include/conversation.php:1091 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../include/conversation.php:1092 +#: ../../include/js_strings.php:33 #, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." +msgid "%d minutes" +msgstr "%d minuten" -#: ../../include/conversation.php:1092 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "ongeveer een uur" + +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../include/conversation.php:1135 -msgid "Set your location" -msgstr "Locatie instellen" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "een dag" -#: ../../include/conversation.php:1136 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../include/conversation.php:1184 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../include/conversation.php:1185 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d maanden" -#: ../../include/conversation.php:1194 -msgid "Comments enabled" -msgstr "Reacties ingeschakeld" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../include/conversation.php:1195 -msgid "Comments disabled" -msgstr "Reacties uitgeschakeld" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d jaren" -#: ../../include/conversation.php:1229 -msgid "Page link name" -msgstr "Linknaam pagina" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/conversation.php:1232 -msgid "Post as" -msgstr "Bericht plaatsen als" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/conversation.php:1246 -msgid "Toggle voting" -msgstr "Peiling in- of uitschakelen" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mei" -#: ../../include/conversation.php:1249 -msgid "Disable comments" -msgstr "Reacties uitschakelen" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "jan" -#: ../../include/conversation.php:1250 -msgid "Toggle comments" -msgstr "Reacties in- of uitschakelen" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../include/conversation.php:1258 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mrt" -#: ../../include/conversation.php:1281 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "apr" -#: ../../include/conversation.php:1287 -msgid "Set publish date" -msgstr "Publicatiedatum instellen" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "mei" -#: ../../include/conversation.php:1536 -msgid "Discover" -msgstr "Ontdekken" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/conversation.php:1539 -msgid "Imported public streams" -msgstr "Openbare streams importeren" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/conversation.php:1544 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "aug" -#: ../../include/conversation.php:1547 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/conversation.php:1551 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "okt" -#: ../../include/conversation.php:1554 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/conversation.php:1562 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dec" -#: ../../include/conversation.php:1571 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "zo" -#: ../../include/conversation.php:1577 -msgid "Starred" -msgstr "Met ster" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "ma" -#: ../../include/conversation.php:1580 -msgid "Favourite Posts" -msgstr "Favoriete berichten" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "di" -#: ../../include/conversation.php:1587 -msgid "Spam" -msgstr "Spam" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "wo" -#: ../../include/conversation.php:1590 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "do" -#: ../../include/conversation.php:1647 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vr" -#: ../../include/conversation.php:1656 -msgid "About" -msgstr "Over" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "za" -#: ../../include/conversation.php:1659 -msgid "Profile Details" -msgstr "Profiel" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "vandaag" -#: ../../include/conversation.php:1675 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "maand" -#: ../../include/conversation.php:1708 ../../include/nav.php:104 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "week" -#: ../../include/conversation.php:1711 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "dag" -#: ../../include/conversation.php:1721 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "hele dag" -#: ../../include/conversation.php:1786 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "aanwezig" -msgstr[1] "aanwezig" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "niet aanwezig" -msgstr[1] "niet aanwezig" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/conversation.php:1792 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "nog niet beslist" -msgstr[1] "nog niet beslist" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/conversation.php:1795 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "eens" -msgstr[1] "eens" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/conversation.php:1798 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "oneens" -msgstr[1] "oneens" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../include/conversation.php:1801 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "onthouding" -msgstr[1] "onthoudingen" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "Afbeelding/foto" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Voeg nieuwe connecties aan deze privacygroep toe" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../include/group.php:289 -msgid "edit" -msgstr "bewerken" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " -#: ../../include/group.php:311 ../../include/features.php:84 -msgid "Privacy Groups" -msgstr "Privacygroepen" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Privacygroep bewerken" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Privacygroep toevoegen" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanalen die zich in geen enkele privacygroep bevinden" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titel" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Start:" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Categorieën:" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Bewaard onder:" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/conversation.php:739 +msgid "View in context" +msgstr "In context bekijken" -#: ../../include/event.php:1021 -msgid "Not specified" -msgstr "Niet aangegeven" +#: ../../include/conversation.php:849 +msgid "remove" +msgstr "verwijderen" -#: ../../include/event.php:1022 -msgid "Needs Action" -msgstr "Actie vereist" +#: ../../include/conversation.php:854 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" -#: ../../include/event.php:1023 -msgid "Completed" -msgstr "Voltooid" +#: ../../include/conversation.php:947 +msgid "View Source" +msgstr "Bron weergeven" -#: ../../include/event.php:1024 -msgid "In Process" -msgstr "In behandeling" +#: ../../include/conversation.php:948 +msgid "Follow Thread" +msgstr "Conversatie volgen" -#: ../../include/event.php:1025 -msgid "Cancelled" -msgstr "Geannuleerd" +#: ../../include/conversation.php:949 +msgid "Unfollow Thread" +msgstr "Conversatie niet meer volgen" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Bijlagen:" +#: ../../include/conversation.php:954 +msgid "Activity/Posts" +msgstr "Activiteit/berichten connectie" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" +#: ../../include/conversation.php:956 +msgid "Edit Connection" +msgstr "Connectie bewerken" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../include/conversation.php:957 +msgid "Message" +msgstr "Bericht" -#: ../../include/js_strings.php:8 +#: ../../include/conversation.php:1077 #, php-format -msgid "%s show less" -msgstr "%s minder reacties weergeven" +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../include/js_strings.php:9 +#: ../../include/conversation.php:1077 #, php-format -msgid "%s expand" -msgstr "%s uitklappen" +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../include/js_strings.php:10 +#: ../../include/conversation.php:1081 #, php-format -msgid "%s collapse" -msgstr "%s inklappen" - -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" - -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" - -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "iedereen" - -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../include/conversation.php:1083 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." +#: ../../include/conversation.php:1089 +msgid "and" +msgstr "en" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../include/conversation.php:1092 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/conversation.php:1093 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Beoordeel dit kanaal (dit is openbaar)" +#: ../../include/conversation.php:1093 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Omschrijving (optioneel)" +#: ../../include/conversation.php:1136 +msgid "Set your location" +msgstr "Locatie instellen" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vul een URL in:" +#: ../../include/conversation.php:1137 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" +#: ../../include/conversation.php:1185 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/conversation.php:1186 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/conversation.php:1195 +msgid "Comments enabled" +msgstr "Reacties ingeschakeld" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "geleden" +#: ../../include/conversation.php:1196 +msgid "Comments disabled" +msgstr "Reacties uitgeschakeld" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "vanaf nu" +#: ../../include/conversation.php:1234 +msgid "Page link name" +msgstr "Linknaam pagina" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../include/conversation.php:1237 +msgid "Post as" +msgstr "Bericht plaatsen als" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../include/conversation.php:1251 +msgid "Toggle voting" +msgstr "Peiling in- of uitschakelen" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" +#: ../../include/conversation.php:1254 +msgid "Disable comments" +msgstr "Reacties uitschakelen" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../include/conversation.php:1255 +msgid "Toggle comments" +msgstr "Reacties in- of uitschakelen" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +#: ../../include/conversation.php:1263 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "een dag" +#: ../../include/conversation.php:1286 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d dagen" +#: ../../include/conversation.php:1292 +msgid "Set publish date" +msgstr "Publicatiedatum instellen" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "ongeveer een maand" +#: ../../include/conversation.php:1541 +msgid "Discover" +msgstr "Ontdekken" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d maanden" +#: ../../include/conversation.php:1544 +msgid "Imported public streams" +msgstr "Openbare streams importeren" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../include/conversation.php:1549 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d jaren" +#: ../../include/conversation.php:1552 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/conversation.php:1556 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:1559 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mei" +#: ../../include/conversation.php:1567 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "jan" +#: ../../include/conversation.php:1576 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/conversation.php:1582 +msgid "Starred" +msgstr "Met ster" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mrt" +#: ../../include/conversation.php:1585 +msgid "Favourite Posts" +msgstr "Favoriete berichten" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "apr" +#: ../../include/conversation.php:1592 +msgid "Spam" +msgstr "Spam" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "mei" +#: ../../include/conversation.php:1595 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/conversation.php:1654 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/conversation.php:1663 +msgid "About" +msgstr "Over" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "aug" +#: ../../include/conversation.php:1666 +msgid "Profile Details" +msgstr "Profiel" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/conversation.php:1682 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "okt" +#: ../../include/conversation.php:1702 ../../include/conversation.php:1705 +#: ../../include/widgets.php:883 +msgid "Chatrooms" +msgstr "Chatkanalen" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/conversation.php:1718 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dec" +#: ../../include/conversation.php:1728 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "zo" +#: ../../include/conversation.php:1793 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "aanwezig" +msgstr[1] "aanwezig" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "ma" +#: ../../include/conversation.php:1796 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "niet aanwezig" +msgstr[1] "niet aanwezig" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "di" +#: ../../include/conversation.php:1799 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "nog niet beslist" +msgstr[1] "nog niet beslist" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "wo" +#: ../../include/conversation.php:1802 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "eens" +msgstr[1] "eens" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "do" +#: ../../include/conversation.php:1805 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "oneens" +msgstr[1] "oneens" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vr" +#: ../../include/conversation.php:1808 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "onthouding" +msgstr[1] "onthoudingen" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "za" +#: ../../include/datetime.php:147 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "vandaag" +#: ../../include/datetime.php:149 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "maand" +#: ../../include/datetime.php:151 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "week" +#: ../../include/datetime.php:284 ../../boot.php:2578 +msgid "never" +msgstr "nooit" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "dag" +#: ../../include/datetime.php:290 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "hele dag" +#: ../../include/datetime.php:308 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/datetime.php:328 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/datetime.php:331 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/datetime.php:334 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/datetime.php:337 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: ../../include/datetime.php:574 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Geen bronbestand." +#: ../../include/datetime.php:575 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opties kanalengids" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Alleen deze hub" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." +#: ../../include/event.php:824 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." +#: ../../include/event.php:1024 +msgid "Not specified" +msgstr "Niet aangegeven" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." -msgstr "Locatie niet beschikbaar." +#: ../../include/event.php:1025 +msgid "Needs Action" +msgstr "Actie vereist" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" -msgstr "Ontbrekende locatienaam" +#: ../../include/event.php:1026 +msgid "Completed" +msgstr "Voltooid" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of locatie" +#: ../../include/event.php:1027 +msgid "In Process" +msgstr "In behandeling" -#: ../../include/attach.php:1026 -msgid "Path not found." -msgstr "Locatie niet gevonden" +#: ../../include/event.php:1028 +msgid "Cancelled" +msgstr "Geannuleerd" -#: ../../include/attach.php:1084 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "opslag in database mislukt." +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "Ontbrekende locatie" +#: ../../include/import.php:1447 +msgid "Unable to import element \"" +msgstr "Niet in staat om dit element te importeren: \"" #: ../../include/auth.php:148 msgid "Logged out." @@ -9148,303 +9514,59 @@ msgstr "Bezoek het %2$s van %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" - -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " - -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" - -#: ../../include/zot.php:3706 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" - -#: ../../include/features.php:50 -msgid "General Features" -msgstr "Algemene functies" - -#: ../../include/features.php:52 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" - -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" - -#: ../../include/features.php:53 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" - -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" - -#: ../../include/features.php:54 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" - -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" - -#: ../../include/features.php:55 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" - -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." - -#: ../../include/features.php:56 -msgid "Web Pages" -msgstr "Webpagina's" - -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" - -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" -msgstr "Voeg een wiki aan jouw kanaal toe" - -#: ../../include/features.php:59 -msgid "Private Notes" -msgstr "Privé-aantekeningen" - -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" - -#: ../../include/features.php:60 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" - -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" - -#: ../../include/features.php:61 -msgid "Photo Location" -msgstr "Fotolocatie" - -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." - -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" -msgstr "Chatkanalen met toegangscontrole " - -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." -msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." - -#: ../../include/features.php:63 -msgid "Smart Birthdays" -msgstr "Slimme verjaardagen" - -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." - -#: ../../include/features.php:64 -msgid "Expert Mode" -msgstr "Expertmodus" - -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" - -#: ../../include/features.php:69 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" - -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Grote foto's" - -#: ../../include/features.php:70 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." - -#: ../../include/features.php:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." - -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "Extra encryptie" - -#: ../../include/features.php:72 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." - -#: ../../include/features.php:73 -msgid "Enable Voting Tools" -msgstr "Peilingen inschakelen" - -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." - -#: ../../include/features.php:74 -msgid "Disable Comments" -msgstr "Reacties uitschakelen" - -#: ../../include/features.php:74 -msgid "Provide the option to disable comments for a post" -msgstr "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld" - -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Berichten uitstellen" - -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." - -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Dubbele berichten/reacties tegenhouden" - -#: ../../include/features.php:76 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " - -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" - -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Zoek op datum" - -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " - -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Beheer en selectie van privacygroepen inschakelen" - -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" - -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" - -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" - -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Berichtenfilters" - -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" - -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" - -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" - -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Taggen door anderen" - -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" - -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorieën berichten" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" +#: ../../include/network.php:1953 +msgid "No Subject" +msgstr "Geen onderwerp" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoji-reacties" +#: ../../include/network.php:2207 ../../include/network.php:2208 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Emoji-reacties in berichten toestaan" +#: ../../include/network.php:2209 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" +#: ../../include/network.php:2210 +msgid "GNU-Social" +msgstr "GNU social" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" +#: ../../include/network.php:2211 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" +#: ../../include/network.php:2213 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Geef berichten een ster" +#: ../../include/network.php:2214 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" +#: ../../include/network.php:2215 +msgid "Zot" +msgstr "Zot" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Tagwolk" +#: ../../include/network.php:2216 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" +#: ../../include/network.php:2217 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/features.php:111 -msgid "Premium Channel" -msgstr "Premiumkanaal" +#: ../../include/network.php:2218 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/features.php:112 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "Categorieën" #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" @@ -9478,117 +9600,6 @@ msgstr "vindt dit leuk" msgid "dislikes" msgstr "vindt dit niet leuk" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." - -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " - -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." - -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 schreef:" - #: ../../include/contact_widgets.php:11 #, php-format msgid "%d invitation available" @@ -9624,224 +9635,356 @@ msgstr "Vrienden uitnodigen" msgid "Advanced example: name=fred and country=iceland" msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "Alles" + +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" + +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "meer connecties weergeven" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Systeem" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nieuwe app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Meer..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Vul kanaaladres in" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Aantekeningen" + +#: ../../include/widgets.php:275 +msgid "Remove term" +msgstr "Verwijder zoekterm" + +#: ../../include/widgets.php:390 +msgid "Archives" +msgstr "Archieven" + +#: ../../include/widgets.php:552 +msgid "Refresh" +msgstr "Vernieuwen" + +#: ../../include/widgets.php:592 +msgid "Account settings" +msgstr "Account" + +#: ../../include/widgets.php:598 +msgid "Channel settings" +msgstr "Kanaal" + +#: ../../include/widgets.php:607 +msgid "Additional features" +msgstr "Extra functies" + +#: ../../include/widgets.php:614 +msgid "Feature/Addon settings" +msgstr "Plugin-instellingen" + +#: ../../include/widgets.php:620 +msgid "Display settings" +msgstr "Weergave" + +#: ../../include/widgets.php:627 +msgid "Manage locations" +msgstr "Locaties beheren" + +#: ../../include/widgets.php:634 +msgid "Export channel" +msgstr "Kanaal exporteren" + +#: ../../include/widgets.php:640 +msgid "Connected apps" +msgstr "Verbonden applicaties" + +#: ../../include/widgets.php:664 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" + +#: ../../include/widgets.php:693 +msgid "Private Mail Menu" +msgstr "Privéberichten" + +#: ../../include/widgets.php:695 +msgid "Combined View" +msgstr "Gecombineerd postvak" + +#: ../../include/widgets.php:727 ../../include/widgets.php:739 +msgid "Conversations" +msgstr "Conversaties" + +#: ../../include/widgets.php:731 +msgid "Received Messages" +msgstr "Ontvangen berichten" + +#: ../../include/widgets.php:735 +msgid "Sent Messages" +msgstr "Verzonden berichten" + +#: ../../include/widgets.php:749 +msgid "No messages." +msgstr "Geen berichten" + +#: ../../include/widgets.php:767 +msgid "Delete conversation" +msgstr "Verwijder conversatie" + +#: ../../include/widgets.php:793 +msgid "Events Tools" +msgstr "Agenda-hulpmiddelen" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/widgets.php:794 +msgid "Export Calendar" +msgstr "Exporteren" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opties kanalengids" +#: ../../include/widgets.php:795 +msgid "Import Calendar" +msgstr "Importeren" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/widgets.php:887 +msgid "Overview" +msgstr "Overzicht" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" +#: ../../include/widgets.php:894 +msgid "Chat Members" +msgstr "Chatleden" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Alleen deze hub" +#: ../../include/widgets.php:916 +msgid "Wiki List" +msgstr "Wiki's" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../include/widgets.php:954 +msgid "Wiki Pages" +msgstr "Wikipagina's" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../include/widgets.php:1020 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 +msgid "photo/image" +msgstr "foto/afbeelding" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +#: ../../include/widgets.php:1221 +msgid "Click to show more" +msgstr "Klik voor meer" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../include/widgets.php:1372 +msgid "Rating Tools" +msgstr "Beoordelingen" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 -msgid "Logout" -msgstr "Uitloggen" +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 +msgid "Rate Me" +msgstr "Beoordeel mij" -#: ../../include/nav.php:84 ../../include/nav.php:117 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../include/widgets.php:1381 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" -#: ../../include/nav.php:87 ../../include/nav.php:148 -msgid "Home" -msgstr "Home" +#: ../../include/widgets.php:1465 +msgid "Forums" +msgstr "Forums" -#: ../../include/nav.php:87 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" +#: ../../include/widgets.php:1494 +msgid "Tasks" +msgstr "Taken" -#: ../../include/nav.php:88 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../include/widgets.php:1505 +msgid "Documentation" +msgstr "Documentatie" -#: ../../include/nav.php:90 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../include/widgets.php:1561 ../../include/widgets.php:1599 +msgid "Member registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" -#: ../../include/nav.php:92 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../include/widgets.php:1567 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" -#: ../../include/nav.php:94 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../include/widgets.php:1569 +msgid "DB updates" +msgstr "Database-updates" -#: ../../include/nav.php:95 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../include/widgets.php:1595 +msgid "Plugin Features" +msgstr "Plugin-opties" -#: ../../include/nav.php:98 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../include/nav.php:104 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../include/oembed.php:322 +msgid " by " +msgstr " door " -#: ../../include/nav.php:108 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../include/oembed.php:323 +msgid " on " +msgstr " op " -#: ../../include/nav.php:110 -msgid "Your wiki" -msgstr "Jouw wiki" +#: ../../include/oembed.php:352 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" -#: ../../include/nav.php:114 -msgid "Sign in" -msgstr "Inloggen" +#: ../../include/oembed.php:361 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" -#: ../../include/nav.php:131 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../include/nav.php:134 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../include/nav.php:134 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" +#: ../../include/items.php:1164 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../include/nav.php:148 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../include/nav.php:151 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/nav.php:163 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/nav.php:167 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../include/nav.php:169 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Voor alle geaccepteerde connecties zichtbaar." -#: ../../include/nav.php:171 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/nav.php:183 -msgid "Your grid" -msgstr "Jouw grid" +#: ../../include/items.php:3976 +msgid "Privacy group is empty." +msgstr "Privacygroep is leeg" -#: ../../include/nav.php:184 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" +#: ../../include/items.php:3983 +#, php-format +msgid "Privacy group: %s" +msgstr "Privacygroep: %s" -#: ../../include/nav.php:186 -msgid "Channel home" -msgstr "Jouw kanaal" +#: ../../include/items.php:3995 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../include/nav.php:187 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../include/items.php:4348 +msgid "profile photo" +msgstr "profielfoto" -#: ../../include/nav.php:193 -msgid "Notices" -msgstr "Notificaties" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Item niet gevonden" -#: ../../include/nav.php:193 -msgid "Notifications" -msgstr "Notificaties" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Geen bronbestand." -#: ../../include/nav.php:194 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" -#: ../../include/nav.php:197 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../include/nav.php:198 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/nav.php:199 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/nav.php:205 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../include/attach.php:854 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/nav.php:206 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../include/attach.php:867 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/nav.php:207 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../include/attach.php:923 ../../include/attach.php:939 +msgid "Path not available." +msgstr "Locatie niet beschikbaar." -#: ../../include/nav.php:210 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../include/attach.php:985 ../../include/attach.php:1137 +msgid "Empty pathname" +msgstr "Ontbrekende locatienaam" -#: ../../include/nav.php:212 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../include/attach.php:1011 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of locatie" -#: ../../include/nav.php:220 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../include/attach.php:1033 +msgid "Path not found." +msgstr "Locatie niet gevonden" -#: ../../include/nav.php:256 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" +#: ../../include/attach.php:1091 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." -#: ../../include/nav.php:257 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/attach.php:1095 +msgid "database storage failed." +msgstr "opslag in database mislukt." -#: ../../view/theme/redbasic/php/config.php:6 +#: ../../include/attach.php:1143 +msgid "Empty path" +msgstr "Ontbrekende locatie" + +#: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla-standaard)" @@ -9973,66 +10116,66 @@ msgstr "Grootte profielfoto's van berichten instellen" msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1194 +#: ../../boot.php:1195 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %1$s (%2$s)" -#: ../../boot.php:1194 +#: ../../boot.php:1195 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1512 +#: ../../boot.php:1513 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1515 +#: ../../boot.php:1516 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1719 +#: ../../boot.php:1720 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" -#: ../../boot.php:1740 +#: ../../boot.php:1741 msgid "Login/Email" msgstr "E-mailadres of inlognaam" -#: ../../boot.php:1741 +#: ../../boot.php:1742 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1742 +#: ../../boot.php:1743 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1745 +#: ../../boot.php:1746 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2314 +#: ../../boot.php:2315 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2469 +#: ../../boot.php:2470 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2472 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2576 +#: ../../boot.php:2577 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2580 +#: ../../boot.php:2581 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 5313cefbe..54d121f36 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -72,89 +72,6 @@ App::$strings["Requested profile is not available."] = "Opgevraagd profiel is ni App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; App::$strings["Away"] = "Afwezig"; App::$strings["Online"] = "Online"; -App::$strings["Invalid message"] = "Ongeldig bericht"; -App::$strings["no results"] = "geen resultaten"; -App::$strings["channel sync processed"] = "kanaalsync verwerkt"; -App::$strings["queued"] = "in wachtrij"; -App::$strings["posted"] = "verstuurd"; -App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; -App::$strings["updated"] = "geüpdatet"; -App::$strings["update ignored"] = "update genegeerd"; -App::$strings["permission denied"] = "toegang geweigerd"; -App::$strings["recipient not found"] = "ontvanger niet gevonden"; -App::$strings["mail recalled"] = "Privébericht ingetrokken"; -App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; -App::$strings["mail delivered"] = "privébericht afgeleverd"; -App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; -App::$strings["Options"] = "Opties"; -App::$strings["Redeliver"] = "Opnieuw afleveren"; -App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -App::$strings["Return to your app and insert this Security Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -App::$strings["Yes"] = "Ja"; -App::$strings["No"] = "Nee"; -App::$strings["Rating"] = "Beoordeling"; -App::$strings["Website:"] = "Website:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -App::$strings["Submit"] = "Opslaan"; -App::$strings["Public Hubs"] = "Openbare hubs"; -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."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Toegangs-
     type"; -App::$strings["Registration Policy"] = "Registratie-
     beleid"; -App::$strings["Stats"] = "Stats"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Beoordelingen"; -App::$strings["Rate"] = "Beoordeel"; -App::$strings["Location"] = "Locatie"; -App::$strings["View"] = "Weergeven"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; -App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; -App::$strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; -App::$strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; -App::$strings["Registration on this hub is disabled."] = "Registreren van nieuwe accounts is op deze hub uitgeschakeld."; -App::$strings["Registration on this hub is by approval only."] = "Registraties op deze hub moeten eerst worden goedgekeurd."; -App::$strings["Register at another affiliated hub."] = "Registreer op een andere hub."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; -App::$strings["Terms of Service"] = "Gebruiksvoorwaarden"; -App::$strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ik ben 13 jaar of ouder en accepteer de %s van deze \$Projectname-hub"; -App::$strings["Your email address"] = "Jouw e-mailadres"; -App::$strings["Choose a password"] = "Geef een wachtwoord op"; -App::$strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; -App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; -App::$strings["Name or caption"] = "Naam"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; -App::$strings["Choose a short nickname"] = "Korte bijnaam"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; -App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; -App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; -App::$strings["no"] = "Nee"; -App::$strings["yes"] = "Ja"; -App::$strings["Registration"] = "Registratie"; -App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; -App::$strings["Register"] = "Registreren"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder."; -App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; -App::$strings["My Bookmarks"] = "Mijn bladwijzers"; -App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -App::$strings["Public access denied."] = "Openbare toegang geweigerd."; -App::$strings["Item not found."] = "Item niet gevonden."; -App::$strings["Photos"] = "Foto's"; -App::$strings["Cancel"] = "Annuleren"; -App::$strings["Invalid item."] = "Ongeldig item."; -App::$strings["Channel not found."] = "Kanaal niet gevonden."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Bewaar in map: "; -App::$strings["- select -"] = "- kies map -"; -App::$strings["Save"] = "Opslaan"; App::$strings["No such group"] = "Collectie niet gevonden"; App::$strings["No such channel"] = "Niet zo'n kanaal"; App::$strings["forum"] = "forum"; @@ -162,655 +79,226 @@ App::$strings["Search Results For:"] = "Zoekresultaten voor:"; App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; App::$strings["Privacy group: "] = "Privacygroep: "; App::$strings["Invalid connection."] = "Ongeldige connectie."; -App::$strings["Blocked"] = "Geblokkeerd"; -App::$strings["Ignored"] = "Genegeerd"; -App::$strings["Hidden"] = "Verborgen"; -App::$strings["Archived"] = "Gearchiveerd"; -App::$strings["New"] = "Nieuw"; -App::$strings["All"] = "Alles"; -App::$strings["New Connections"] = "Nieuwe connecties"; -App::$strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; -App::$strings["All Connections"] = "Alle connecties"; -App::$strings["Show all connections"] = "Toon alle connecties"; -App::$strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; -App::$strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; -App::$strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; -App::$strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; -App::$strings["Pending approval"] = "Moet nog geaccepteerd worden"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Connectie bewerken"; -App::$strings["Delete connection"] = "Connectie verwijderen"; -App::$strings["Channel address"] = "Kanaaladres"; -App::$strings["Network"] = "Netwerk"; -App::$strings["Status"] = "Status"; -App::$strings["Connected"] = "Verbonden"; -App::$strings["Approve connection"] = "Connectie accepteren"; +App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +App::$strings["network"] = "netwerk"; +App::$strings["RSS"] = "RSS"; +App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +App::$strings["Posts and comments"] = "Berichten en reacties"; +App::$strings["Only posts"] = "Alleen berichten"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; +App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; +App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; +App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; +App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; +App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; +App::$strings["Import completed."] = "Import voltooid."; +App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; +App::$strings["Import Channel"] = "Kanaal importeren"; +App::$strings["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."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; +App::$strings["File to Upload"] = "Bestand om te uploaden"; +App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; +App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; +App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; +App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; +App::$strings["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."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; +App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; +App::$strings["Submit"] = "Opslaan"; +App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; +App::$strings["My Bookmarks"] = "Mijn bladwijzers"; +App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s account geblokkeerd/gedeblokkeerd", + 1 => "%s accounts geblokkeerd/gedeblokkeerd", +); +App::$strings["%s account deleted"] = array( + 0 => "%s account verwijderd", + 1 => "%s accounts verwijderd", +); +App::$strings["Account not found"] = "Account niet gevonden"; +App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; +App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; +App::$strings["Administration"] = "Beheer"; +App::$strings["Accounts"] = "Accounts"; +App::$strings["select all"] = "alles selecteren"; +App::$strings["Registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; +App::$strings["Request date"] = "Tijd/datum verzoek"; +App::$strings["Email"] = "E-mail"; +App::$strings["No registrations."] = "Geen verzoeken."; App::$strings["Approve"] = "Goedkeuren"; -App::$strings["Ignore connection"] = "Connectie negeren"; -App::$strings["Ignore"] = "Negeren"; -App::$strings["Recent activity"] = "Recente activiteit"; -App::$strings["Connections"] = "Connecties"; -App::$strings["Search"] = "Zoeken"; -App::$strings["Search your connections"] = "Doorzoek jouw connecties"; -App::$strings["Connections search"] = "Connecties zoeken"; -App::$strings["Find"] = "Vinden"; -App::$strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; -App::$strings["Cover Photos"] = "Omslagfoto's"; -App::$strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; -App::$strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; -App::$strings["Image upload failed."] = "Uploaden afbeelding mislukt"; -App::$strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; -App::$strings["female"] = "vrouw"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s heeft haar %2\$s bijgewerkt"; -App::$strings["male"] = "man"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s heeft zijn %2\$s bijgewerkt"; -App::$strings["%1\$s updated their %2\$s"] = "De %2\$s van %1\$s is bijgewerkt"; -App::$strings["cover photo"] = "omslagfoto"; -App::$strings["Photo not available."] = "Foto niet beschikbaar."; -App::$strings["Upload File:"] = "Bestand uploaden:"; -App::$strings["Select a profile:"] = "Kies een profiel:"; -App::$strings["Upload Cover Photo"] = "Omslagfoto uploaden"; -App::$strings["or"] = "of"; -App::$strings["skip this step"] = "sla deze stap over"; -App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; -App::$strings["Crop Image"] = "Afbeelding bijsnijden"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; -App::$strings["Done Editing"] = "Klaar met bewerken"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup"; -App::$strings["Could not connect to database."] = "Could not connect to database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -App::$strings["Could not create table."] = "Could not create table."; -App::$strings["Your site database has been installed."] = "Your hub database has been installed."; -App::$strings["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."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -App::$strings["System check"] = "System check"; -App::$strings["Next"] = "Volgende"; -App::$strings["Check again"] = "Check again"; -App::$strings["Database connection"] = "Database connection"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings."; -App::$strings["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."; -App::$strings["Database Server Name"] = "Database Server Name"; -App::$strings["Default is 127.0.0.1"] = "Default is 127.0.0.1"; -App::$strings["Database Port"] = "Database Port"; -App::$strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -App::$strings["Database Login Name"] = "Database Login Name"; -App::$strings["Database Login Password"] = "Database Login Password"; -App::$strings["Database Name"] = "Database Name"; -App::$strings["Database Type"] = "Database Type"; -App::$strings["Site administrator email address"] = "Hub administrator email address"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -App::$strings["Website URL"] = "Hub URL"; -App::$strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -App::$strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -App::$strings["Basic/Minimal Social Networking"] = "Basic/eenvoudig sociaal netwerk"; -App::$strings["Standard Configuration (default)"] = "Standaard (standaard)"; -App::$strings["Professional"] = "Professioneel "; -App::$strings["Site settings"] = "Hub settings"; -App::$strings["Server Configuration/Role"] = "Configuratietype hub"; -App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 or greater is required."; -App::$strings["PHP version"] = "PHP version"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -App::$strings["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."; -App::$strings["PHP executable path"] = "PHP executable path"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -App::$strings["Command line PHP"] = "Command line PHP"; -App::$strings["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."; -App::$strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["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."; -App::$strings["You can adjust these settings in the servers php.ini."] = "You can adjust these settings in the servers php.ini."; -App::$strings["PHP upload limits"] = "PHP upload limits"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generate encryption keys"; -App::$strings["libCurl PHP module"] = "libCurl PHP module"; -App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; -App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; -App::$strings["mb_string PHP module"] = "mb_string PHP module"; -App::$strings["xml PHP module"] = "xml PHP module"; -App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; -App::$strings["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."; -App::$strings["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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -App::$strings["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."; -App::$strings["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."; -App::$strings["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."; -App::$strings["%s is writable"] = "%s is writable"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; -App::$strings["store is writable"] = "store is writable"; -App::$strings["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 hub."; -App::$strings["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 hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -App::$strings["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."; -App::$strings["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 hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -App::$strings["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 hub) so we must insist on this requirement."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -App::$strings["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."; -App::$strings["SSL certificate validation"] = "SSL certificate validation"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; -App::$strings["Url rewrite is working"] = "Url rewrite is working"; -App::$strings["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."; -App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -App::$strings["

    What next

    "] = "

    What next

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -App::$strings["%d rating"] = array( - 0 => "%d beoordeling", - 1 => "%d beoordelingen", +App::$strings["Deny"] = "Afkeuren"; +App::$strings["Block"] = "Blokkeren"; +App::$strings["Unblock"] = "Deblokkeren"; +App::$strings["ID"] = "ID"; +App::$strings["All Channels"] = "Alle kanalen"; +App::$strings["Register date"] = "Geregistreerd"; +App::$strings["Last login"] = "Laatste keer ingelogd"; +App::$strings["Expires"] = "Verloopt"; +App::$strings["Service Class"] = "Abonnementen"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; +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?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s kanaal gecensureerd/ongecensureerd", + 1 => "%s kanalen gecensureerd/ongecensureerd", ); -App::$strings["Gender: "] = "Geslacht:"; -App::$strings["Status: "] = "Status: "; -App::$strings["Homepage: "] = "Homepage: "; -App::$strings["Age:"] = "Leeftijd:"; -App::$strings["Location:"] = "Plaats:"; -App::$strings["Description:"] = "Omschrijving:"; -App::$strings["Hometown:"] = "Oorspronkelijk uit:"; -App::$strings["About:"] = "Over:"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Public Forum:"] = "Openbaar forum:"; -App::$strings["Keywords: "] = "Trefwoorden: "; -App::$strings["Don't suggest"] = "Niet voorstellen"; -App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; -App::$strings["Global Directory"] = "Volledige kanalengids"; -App::$strings["Local Directory"] = "Lokale kanalengids"; -App::$strings["Finding:"] = "Gezocht naar:"; -App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; -App::$strings["next page"] = "volgende pagina"; -App::$strings["previous page"] = "vorige pagina"; -App::$strings["Sort options"] = "Sorteeropties"; -App::$strings["Alphabetic"] = "Alfabetisch"; -App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -App::$strings["Newest to Oldest"] = "Nieuw naar oud"; -App::$strings["Oldest to Newest"] = "Oud naar nieuw"; -App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; -App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; -App::$strings["Item not found"] = "Item niet gevonden"; -App::$strings["Block Name"] = "Bloknaam"; -App::$strings["Insert web link"] = "Weblink invoegen"; -App::$strings["Title (optional)"] = "Titel (optioneel)"; -App::$strings["Edit Block"] = "Blok bewerken"; -App::$strings["Layout Name"] = "Naam lay-out"; -App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; -App::$strings["Edit Layout"] = "Lay-out bewerken"; -App::$strings["Page link"] = "Paginalink"; -App::$strings["Edit Webpage"] = "Webpagina bewerken"; -App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -App::$strings["Menu Name"] = "Menunaam"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; -App::$strings["Menu Title"] = "Menutitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; -App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; -App::$strings["Menus"] = "Menu's"; -App::$strings["Drop"] = "Verwijderen"; -App::$strings["Created"] = "Aangemaakt"; -App::$strings["Edited"] = "Bewerkt"; -App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -App::$strings["Delete this menu"] = "Menu verwijderen"; -App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -App::$strings["Edit this menu"] = "Dit menu bewerken"; -App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; -App::$strings["Menu not found."] = "Menu niet gevonden."; -App::$strings["Edit Menu"] = "Menu bewerken"; -App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -App::$strings["Menu name"] = "Naam van menu"; -App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -App::$strings["Menu title"] = "Titel van menu"; -App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Not found."] = "Niet gevonden."; -App::$strings["App installed."] = "App geïnstalleerd"; -App::$strings["Malformed app."] = "Misvormde app."; -App::$strings["Embed code"] = "Insluitcode"; -App::$strings["Edit App"] = "App bewerken"; -App::$strings["Create App"] = "App maken"; -App::$strings["Name of app"] = "Naam van app"; -App::$strings["Required"] = "Vereist"; -App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; -App::$strings["Description"] = "Omschrijving"; -App::$strings["Photo icon URL"] = "URL van pictogram"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Version ID"] = "Versie-ID"; -App::$strings["Price of app"] = "Prijs van de app"; -App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; -App::$strings["Documentation Search"] = "Zoek documentatie"; -App::$strings["Help:"] = "Hulp:"; -App::$strings["Help"] = "Hulp"; -App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; -App::$strings["Item not available."] = "Item is niet aanwezig."; -App::$strings["Layout updated."] = "Lay-out bijgewerkt."; -App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; -App::$strings["Layout not found."] = "Lay-out niet gevonden."; -App::$strings["Module Name:"] = "Modulenaam:"; -App::$strings["Layout Help"] = "Lay-out-hulp"; -App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Welkom op %s"; -App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -App::$strings["Visible to:"] = "Zichtbaar voor:"; -App::$strings["Permission Denied."] = "Toegang geweigerd"; -App::$strings["File not found."] = "Bestand niet gevonden."; -App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; -App::$strings["Permissions"] = "Permissies"; -App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; -App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; -App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; -App::$strings["Share this file"] = "Dit bestand delen"; -App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; -App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; -App::$strings["Name is required"] = "Naam is vereist"; -App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; -App::$strings["Update"] = "Bijwerken"; -App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens"; -App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist"; -App::$strings["Token saved."] = "Token opgeslagen."; -App::$strings["Not valid email."] = "Geen geldig e-mailadres."; -App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; -App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; -App::$strings["Password verification failed."] = "Wachtwoordverificatie mislukt"; -App::$strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; -App::$strings["Password changed."] = "Wachtwoord veranderd."; -App::$strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; -App::$strings["Friends"] = "Vrienden"; -App::$strings["Settings updated."] = "Instellingen bijgewerkt."; -App::$strings["Add application"] = "Applicatie toevoegen"; -App::$strings["Name of application"] = "Naam van applicatie"; -App::$strings["Consumer Key"] = "Consumer key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; -App::$strings["Consumer Secret"] = "Consumer secret"; -App::$strings["Redirect"] = "Redirect/doorverwijzing"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; -App::$strings["Icon url"] = "Pictogram-URL"; -App::$strings["Optional"] = "Optioneel"; -App::$strings["Application not found."] = "Applicatie niet gevonden."; -App::$strings["Connected Apps"] = "Verbonden applicaties"; -App::$strings["Client key starts with"] = "Client key begint met"; -App::$strings["No name"] = "Geen naam"; -App::$strings["Remove authorization"] = "Autorisatie verwijderen"; -App::$strings["No feature settings configured"] = "Geen plugin-instellingen aanwezig"; -App::$strings["Feature/Addon Settings"] = "Plugin-instellingen"; -App::$strings["Account Settings"] = "Account-instellingen"; -App::$strings["Current Password"] = "Huidig wachtwoord"; -App::$strings["Enter New Password"] = "Nieuw wachtwoord invoeren"; -App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; -App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; -App::$strings["Email Address:"] = "E-mailadres:"; -App::$strings["Remove Account"] = "Account verwijderen"; -App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; -App::$strings["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."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud."; -App::$strings["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:"] = "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:"; -App::$strings["Guest Access Tokens"] = "Gasttoegang"; -App::$strings["Login Name"] = "Inlognaam"; -App::$strings["Login Password"] = "Wachtwoord:"; -App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)"; -App::$strings["Their Settings"] = "Hun instellingen"; -App::$strings["My Settings"] = "Mijn instellingen"; -App::$strings["inherited"] = "geërfd"; -App::$strings["Individual Permissions"] = "Individuele permissies"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", + 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s kanaal verwijderd", + 1 => "%s kanalen verwijderd", +); +App::$strings["Channel not found"] = "Kanaal niet gevonden"; +App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; +App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; +App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; +App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; +App::$strings["Channels"] = "Kanalen"; +App::$strings["Censor"] = "Censureren"; +App::$strings["Uncensor"] = "Niet censureren"; +App::$strings["Allow Code"] = "Scripts toestaan"; +App::$strings["Disallow Code"] = "Scripts niet toestaan"; +App::$strings["Channel"] = "Kanaal"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Kanaaladres"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["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?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; +App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; +App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; +App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; +App::$strings["No failed updates."] = "Geen mislukte updates."; +App::$strings["Failed Updates"] = "Mislukte updates"; +App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; +App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; App::$strings["Off"] = "Uit"; App::$strings["On"] = "Aan"; -App::$strings["Additional Features"] = "Extra functies"; -App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; -App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -App::$strings["%s - (Experimental)"] = "%s - (experimenteel)"; -App::$strings["mobile"] = "mobiel"; -App::$strings["Display Settings"] = "Weergave-instellingen"; -App::$strings["Theme Settings"] = "Thema-instellingen"; -App::$strings["Custom Theme Settings"] = "Handmatige thema-instellingen"; -App::$strings["Content Settings"] = "Inhoudsinstellingen"; -App::$strings["Display Theme:"] = "Gebruik thema:"; -App::$strings["Select scheme"] = "Kies schema van thema"; -App::$strings["Mobile Theme:"] = "Mobiel thema:"; -App::$strings["Preload images before rendering the page"] = "Afbeeldingen laden voordat de pagina wordt weergegeven"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven"; -App::$strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; -App::$strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; -App::$strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; -App::$strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; -App::$strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; -App::$strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; -App::$strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; -App::$strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; -App::$strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op gridpagina"; -App::$strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; -App::$strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; -App::$strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; -App::$strings["Nobody except yourself"] = "Niemand, behalve jezelf"; -App::$strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; -App::$strings["Approved connections"] = "Geaccepteerde connecties"; -App::$strings["Any connections"] = "Alle connecties"; -App::$strings["Anybody on this website"] = "Iedereen op deze hub"; -App::$strings["Anybody in this network"] = "Iedereen in dit netwerk"; -App::$strings["Anybody authenticated"] = "Geauthenticeerd"; -App::$strings["Anybody on the internet"] = "Iedereen op het internet"; -App::$strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; -App::$strings["Your channel address is"] = "Jouw kanaaladres is"; -App::$strings["Channel Settings"] = "Kanaal-instellingen"; -App::$strings["Basic Settings"] = "Basis-instellingen"; -App::$strings["Full Name:"] = "Volledige naam:"; -App::$strings["Your Timezone:"] = "Jouw tijdzone:"; -App::$strings["Default Post Location:"] = "Standaardlocatie bericht:"; -App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; -App::$strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; -App::$strings["Adult Content"] = "Inhoud voor volwassenen"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; -App::$strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; -App::$strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; -App::$strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; -App::$strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; -App::$strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; -App::$strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; -App::$strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; -App::$strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; -App::$strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; -App::$strings["0 or blank to use the website limit."] = "0 of leeg om het standaard aantal dagen van deze hub te gebruiken."; -App::$strings["This website expires after %d days."] = "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen."; -App::$strings["This website does not expire imported content."] = "Deze hub laat de inhoud van andere kanalen niet verlopen."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang."; -App::$strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; -App::$strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; -App::$strings["Default Post and Publish Permissions"] = "Standaard permissies voor nieuwe berichten en publicaties"; -App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -App::$strings["Use my default audience setting for the type of object published"] = "Gebruik mijn standaard privacy-instelling voor dit type publicatie"; -App::$strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -App::$strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; -App::$strings["Notification Settings"] = "Notificatie-instellingen"; -App::$strings["By default post a status message when:"] = "Plaats automatisch een bericht wanneer:"; -App::$strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; -App::$strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; -App::$strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; -App::$strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; -App::$strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; -App::$strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; -App::$strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; -App::$strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; -App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; -App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; -App::$strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; -App::$strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; -App::$strings["Unseen private messages"] = "Niet bekeken privéberichten"; -App::$strings["Recommended"] = "Aanbevolen"; -App::$strings["Upcoming events"] = "Aankomende gebeurtenissen"; -App::$strings["Events today"] = "Gebeurtenissen van vandaag"; -App::$strings["Upcoming birthdays"] = "Aankomende verjaardagen"; -App::$strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; -App::$strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; -App::$strings["System info messages"] = "Systeemmededelingen"; -App::$strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; -App::$strings["New connections"] = "Nieuwe connecties"; -App::$strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; -App::$strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; -App::$strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; -App::$strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; -App::$strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; -App::$strings["Miscellaneous Settings"] = "Diverse instellingen"; -App::$strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads"; -App::$strings["%Y - current year, %m - current month"] = "%Y - dit jaar, %m - deze maand"; -App::$strings["Default file upload folder"] = "Standaard bestandsmap voor uploads"; -App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; -App::$strings["Remove Channel"] = "Kanaal verwijderen"; -App::$strings["Remove this channel."] = "Verwijder dit kanaal."; -App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share"; -App::$strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag"; -App::$strings["network"] = "netwerk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; -App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; -App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; -App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; -App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; -App::$strings["Privacy group name: "] = "Naam privacygroep: "; -App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; -App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; -App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; -App::$strings["Privacy group editor"] = "Privacygroep bewerken"; -App::$strings["Members"] = "Kanalen"; -App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; -App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; -App::$strings["Profile Photos"] = "Profielfoto's"; -App::$strings["Album not found."] = "Album niet gevonden."; -App::$strings["Delete Album"] = "Verwijder album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; -App::$strings["Delete Photo"] = "Verwijder foto"; -App::$strings["No photos selected"] = "Geen foto's geselecteerd"; -App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -App::$strings["Upload Photos"] = "Foto's uploaden"; -App::$strings["Enter an album name"] = "Vul een albumnaam in"; -App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; -App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; -App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; -App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -App::$strings["Contact Photos"] = "Connectiefoto's"; -App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; -App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; -App::$strings["View Photo"] = "Foto weergeven"; -App::$strings["Edit Album"] = "Album bewerken"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -App::$strings["Photo not available"] = "Foto niet aanwezig"; -App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; -App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; -App::$strings["Private Photo"] = "Privéfoto"; -App::$strings["Previous"] = "Vorige"; -App::$strings["View Full Size"] = "Volledige grootte weergeven"; +App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; +App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; +App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; +App::$strings["Logs"] = "Logboeken"; +App::$strings["Clear"] = "Leegmaken"; +App::$strings["Debugging"] = "Debuggen"; +App::$strings["Log file"] = "Logbestand"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; +App::$strings["Log level"] = "Logniveau"; +App::$strings["Item not found."] = "Item niet gevonden."; +App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; +App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; +App::$strings["Disable"] = "Uitschakelen"; +App::$strings["Enable"] = "Inschakelen"; +App::$strings["Plugins"] = "Plugins"; +App::$strings["Toggle"] = "Omschakelen"; +App::$strings["Settings"] = "Instellingen"; +App::$strings["Author: "] = "Auteur: "; +App::$strings["Maintainer: "] = "Beheerder: "; +App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; +App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; +App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; +App::$strings["Compatible Server Roles: "] = "Werkt met configuratietypes: "; +App::$strings["Requires: "] = "Vereist: "; +App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Vul de openbare Git-URL in van de plugin-repository."; +App::$strings["Plugin repo git URL"] = "Git-URL plugin-repository"; +App::$strings["Custom repo name"] = "Handmatige repository-naam"; +App::$strings["(optional)"] = "(optioneel)"; +App::$strings["Download Plugin Repo"] = "Plugin-repository downloaden"; +App::$strings["Install new repo"] = "Nieuwe repository installeren"; +App::$strings["Install"] = "Installeren"; +App::$strings["Cancel"] = "Annuleren"; +App::$strings["Manage Repos"] = "Repositories beheren"; +App::$strings["Installed Plugin Repositories"] = "Toegevoegde plugin-repositories"; +App::$strings["Install a New Plugin Repository"] = "Nieuwe plugin-repository toevoegen"; +App::$strings["Update"] = "Bijwerken"; +App::$strings["Switch branch"] = "Branch veranderen"; App::$strings["Remove"] = "Verwijderen"; -App::$strings["Edit photo"] = "Foto bewerken"; -App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; -App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; -App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Caption"] = "Bijschrift"; -App::$strings["Add a Tag"] = "Tag toevoegen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -App::$strings["I like this (toggle)"] = "Vind ik leuk"; -App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -App::$strings["Share"] = "Delen"; -App::$strings["Please wait"] = "Even wachten"; -App::$strings["This is you"] = "Dit ben jij"; -App::$strings["Comment"] = "Reactie"; -App::$strings["Preview"] = "Voorvertoning"; -App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["__ctx:title__ Agree"] = "eens"; -App::$strings["__ctx:title__ Disagree"] = "oneens"; -App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; -App::$strings["__ctx:title__ Attending"] = "aanwezig"; -App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; -App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; -App::$strings["View all"] = "Toon alles"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -App::$strings["Photo Tools"] = "Hulpmiddelen"; -App::$strings["In This Photo:"] = "Op deze foto:"; -App::$strings["Map"] = "Kaart"; -App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["Close"] = "Sluiten"; -App::$strings["View Album"] = "Album weergeven"; -App::$strings["Recent Photos"] = "Recente foto's"; -App::$strings["webpage"] = "Webpagina"; -App::$strings["block"] = "blok"; -App::$strings["layout"] = "lay-out"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; -App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; -App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; -App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; -App::$strings["Import completed"] = "Importeren voltooid"; -App::$strings["Import Items"] = "Importeer items"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; -App::$strings["File to Upload"] = "Bestand om te uploaden"; -App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -App::$strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -App::$strings["Send invitations"] = "Uitnodigingen verzenden"; -App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -App::$strings["Your message:"] = "Jouw bericht:"; -App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; -App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; -App::$strings["or visit"] = "of bezoek"; -App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -App::$strings["Location not found."] = "Locatie niet gevonden."; -App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; -App::$strings["Syncing locations"] = "Locaties synchronizeren"; -App::$strings["No locations found."] = "Geen locaties gevonden."; -App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -App::$strings["Address"] = "Kanaaladres"; -App::$strings["Primary"] = "Primair"; -App::$strings["Sync Now"] = "Nu synchroniseren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -App::$strings["Hub not found."] = "Hub niet gevonden."; -App::$strings["Like/Dislike"] = "Leuk/niet leuk"; -App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; -App::$strings["Invalid request."] = "Ongeldig verzoek"; -App::$strings["channel"] = "kanaal"; -App::$strings["thing"] = "ding"; -App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "bericht"; -App::$strings["event"] = "gebeurtenis"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; -App::$strings["Action completed."] = "Actie voltooid"; -App::$strings["Thank you."] = "Bedankt"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -App::$strings["Create New"] = "Nieuwe aanmaken"; -App::$strings["Channel Manager"] = "Kanaalbeheer"; -App::$strings["Current Channel"] = "Huidig kanaal"; -App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -App::$strings["Default Channel"] = "Standaardkanaal"; -App::$strings["Make Default"] = "Als standaard instellen"; -App::$strings["%d new messages"] = "%d nieuwe berichten"; -App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; -App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; -App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -App::$strings["Menu Item Permissions"] = "Permissies menu-item"; -App::$strings["Link Name"] = "Linknaam"; -App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; -App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; -App::$strings["Open link in new window"] = "Open link in nieuw venster"; -App::$strings["Order in list"] = "Volgorde in lijst"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -App::$strings["Submit and finish"] = "Opslaan en afsluiten"; -App::$strings["Submit and continue"] = "Opslaan en doorgaan"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Linkdoel"; -App::$strings["Edit menu"] = "Menu bewerken"; -App::$strings["Edit element"] = "Onderdeel bewerken"; -App::$strings["Drop element"] = "Onderdeel verwijderen"; -App::$strings["New element"] = "Nieuw element"; -App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; -App::$strings["Add menu element"] = "Menu-element toevoegen"; -App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; -App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; -App::$strings["Menu item not found."] = "Menu-item niet gevonden."; -App::$strings["Menu item deleted."] = "Menu-item verwijderd."; -App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -App::$strings["Edit Menu Element"] = "Menu-element bewerken"; -App::$strings["Link text"] = "Linktekst"; -App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; -App::$strings["# Accounts"] = "# accounts"; -App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; -App::$strings["# expired accounts"] = "# verlopen accounts"; -App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; -App::$strings["# Channels"] = "# Kanalen"; -App::$strings["# primary"] = "# primair"; -App::$strings["# clones"] = "# klonen"; -App::$strings["Message queues"] = "Berichtenwachtrij"; -App::$strings["Your software should be updated"] = "Jouw software moet worden bijgewerkt "; -App::$strings["Administration"] = "Beheer"; -App::$strings["Summary"] = "Samenvatting"; -App::$strings["Registered accounts"] = "Geregistreerde accounts"; -App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; -App::$strings["Registered channels"] = "Geregistreerde kanalen"; -App::$strings["Active plugins"] = "Ingeschakelde plugins"; -App::$strings["Version"] = "Versie"; -App::$strings["Repository version (master)"] = "Versie repository (master)"; -App::$strings["Repository version (dev)"] = "Versie repository (dev)"; +App::$strings["New Profile Field"] = "Nieuw profielveld"; +App::$strings["Field nickname"] = "Bijnaam voor veld"; +App::$strings["System name of field"] = "Systeemnaam voor veld"; +App::$strings["Input type"] = "Invoertype"; +App::$strings["Field Name"] = "Veldnaam"; +App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; +App::$strings["Help text"] = "Helptekst"; +App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; +App::$strings["Save"] = "Opslaan"; +App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; +App::$strings["Edit Profile Field"] = "Profielveld bewerken"; +App::$strings["Profile Fields"] = "Profielvelden"; +App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; +App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; +App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; +App::$strings["All available fields"] = "Alle beschikbare velden"; +App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; +App::$strings["Create Custom Field"] = "Extra velden aanmaken"; +App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; +App::$strings["Total Entries"] = "Aantal vermeldingen"; +App::$strings["Priority"] = "Prioriteit"; +App::$strings["Destination URL"] = "Doel-URL"; +App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; +App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; +App::$strings["Last known contact"] = "Voor het laatst contact"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:"; +App::$strings["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/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd."; +App::$strings["Security"] = "Beveiliging"; +App::$strings["Block public"] = "Openbare toegang blokkeren"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; +App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security\" HTTP-header inschakelen"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = " \"Content Security Policy\" HTTP-header inschakelen"; +App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; +App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; +App::$strings["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."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; +App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; +App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; +App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; +App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan"; +App::$strings["One site per line. By default embedded content is filtered."] = "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd."; +App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren"; App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; App::$strings["Default"] = "Standaard"; +App::$strings["mobile"] = "mobiel"; App::$strings["experimental"] = "experimenteel"; App::$strings["unsupported"] = "Niet ondersteund"; +App::$strings["No"] = "Nee"; App::$strings["Yes - with approval"] = "Ja - met goedkeuring"; +App::$strings["Yes"] = "Ja"; App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar"; App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; +App::$strings["Basic/Minimal Social Networking"] = "Basic/eenvoudig sociaal netwerk"; +App::$strings["Standard Configuration (default)"] = "Standaard (standaard)"; +App::$strings["Professional"] = "Professioneel "; +App::$strings["Beginner/Basic"] = "Beginner/basic"; +App::$strings["Novice - not skilled but willing to learn"] = "Onervaren - niet bekwaam, maar wil graag leren"; +App::$strings["Intermediate - somewhat comfortable"] = "Ervaren - voelt zich enigszins comfortabel"; +App::$strings["Advanced - very comfortable"] = "Gevorderd - voelt zich comfortabel"; +App::$strings["Expert - I can write computer code"] = "Expert - kan programmeren"; +App::$strings["Wizard - I probably know more than you do"] = "Tovenaar - ik weet waarschijnlijk meer dan jij"; App::$strings["Site"] = "Hub-instellingen"; +App::$strings["Registration"] = "Registratie"; App::$strings["File upload"] = "Bestand uploaden"; App::$strings["Policies"] = "Beleid"; App::$strings["Advanced"] = "Geavanceerd"; App::$strings["Site name"] = "Naam van deze \$Projectname-hub"; +App::$strings["Server Configuration/Role"] = "Configuratietype hub"; +App::$strings["Site default technical skill level"] = "Standaard technisch niveau voor deze hub"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Wordt gebruikt om leden een gebruikerservaring te bieden die met hun technisch niveau overeenkomt"; +App::$strings["Lock the technical skill level setting"] = "Vergrendel de functie 'Standaard technisch niveau voor deze hub'"; +App::$strings["Members can set their own technical comfort level by default"] = "Leden kunnen hun eigen technisch niveau standaard instellen"; App::$strings["Banner/Logo"] = "Banner/logo"; App::$strings["Administrator Information"] = "Informatie over de beheerder"; App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; @@ -837,10 +325,6 @@ App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten bescho App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; App::$strings["Allowed friend domains"] = "Toegestane domeinen"; App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; -App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; -App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; -App::$strings["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."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; App::$strings["Verify Email Addresses"] = "E-mailadres verifieren"; App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; App::$strings["Force publish"] = "Dwing kanaalvermelding af"; @@ -867,177 +351,367 @@ App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; -App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; -App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; -App::$strings["No server found"] = "Geen hub gevonden"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "voor kanaal"; -App::$strings["on server"] = "op hub"; -App::$strings["Server"] = "Hubbeheer"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:"; -App::$strings["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/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd."; -App::$strings["Security"] = "Beveiliging"; -App::$strings["Block public"] = "Openbare toegang blokkeren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; -App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security\" HTTP-header inschakelen"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = " \"Content Security Policy\" HTTP-header inschakelen"; -App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; -App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; -App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; -App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan"; -App::$strings["One site per line. By default embedded content is filtered."] = "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd."; -App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren"; -App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; -App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; -App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; -App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; -App::$strings["No failed updates."] = "Geen mislukte updates."; -App::$strings["Failed Updates"] = "Mislukte updates"; -App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; -App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; -App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; -App::$strings["Total Entries"] = "Aantal vermeldingen"; -App::$strings["Priority"] = "Prioriteit"; -App::$strings["Destination URL"] = "Doel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; -App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; -App::$strings["Last known contact"] = "Voor het laatst contact"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s account geblokkeerd/gedeblokkeerd", - 1 => "%s accounts geblokkeerd/gedeblokkeerd", -); -App::$strings["%s account deleted"] = array( - 0 => "%s account verwijderd", - 1 => "%s accounts verwijderd", -); -App::$strings["Account not found"] = "Account niet gevonden"; -App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; -App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; -App::$strings["Accounts"] = "Accounts"; -App::$strings["select all"] = "alles selecteren"; -App::$strings["Registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; -App::$strings["Request date"] = "Tijd/datum verzoek"; -App::$strings["Email"] = "E-mail"; -App::$strings["No registrations."] = "Geen verzoeken."; -App::$strings["Deny"] = "Afkeuren"; -App::$strings["Block"] = "Blokkeren"; -App::$strings["Unblock"] = "Deblokkeren"; -App::$strings["All Channels"] = "Alle kanalen"; -App::$strings["Register date"] = "Geregistreerd"; -App::$strings["Last login"] = "Laatste keer ingelogd"; -App::$strings["Expires"] = "Verloopt"; -App::$strings["Service Class"] = "Abonnementen"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; -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?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanaal gecensureerd/ongecensureerd", - 1 => "%s kanalen gecensureerd/ongecensureerd", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", - 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanaal verwijderd", - 1 => "%s kanalen verwijderd", -); -App::$strings["Channel not found"] = "Kanaal niet gevonden"; -App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; -App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; -App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; -App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; -App::$strings["Channels"] = "Kanalen"; -App::$strings["Censor"] = "Censureren"; -App::$strings["Uncensor"] = "Niet censureren"; -App::$strings["Allow Code"] = "Scripts toestaan"; -App::$strings["Disallow Code"] = "Scripts niet toestaan"; -App::$strings["Channel"] = "Kanaal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["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?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; -App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; -App::$strings["Disable"] = "Uitschakelen"; -App::$strings["Enable"] = "Inschakelen"; -App::$strings["Plugins"] = "Plugins"; -App::$strings["Toggle"] = "Omschakelen"; -App::$strings["Settings"] = "Instellingen"; -App::$strings["Author: "] = "Auteur: "; -App::$strings["Maintainer: "] = "Beheerder: "; -App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; -App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; -App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; -App::$strings["Compatible Server Roles: "] = "Werkt met configuratietypes: "; -App::$strings["Requires: "] = "Vereist: "; -App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Vul de openbare Git-URL in van de plugin-repository."; -App::$strings["Plugin repo git URL"] = "Git-URL plugin-repository"; -App::$strings["Custom repo name"] = "Handmatige repository-naam"; -App::$strings["(optional)"] = "(optioneel)"; -App::$strings["Download Plugin Repo"] = "Plugin-repository downloaden"; -App::$strings["Install new repo"] = "Nieuwe repository installeren"; -App::$strings["Install"] = "Installeren"; -App::$strings["Manage Repos"] = "Repositories beheren"; -App::$strings["Installed Plugin Repositories"] = "Toegevoegde plugin-repositories"; -App::$strings["Install a New Plugin Repository"] = "Nieuwe plugin-repository toevoegen"; -App::$strings["Switch branch"] = "Branch veranderen"; +App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; App::$strings["No themes found."] = "Geen thema's gevonden"; App::$strings["Screenshot"] = "Schermafdruk"; App::$strings["Themes"] = "Thema's"; App::$strings["[Experimental]"] = "[Experimenteel]"; App::$strings["[Unsupported]"] = "[Niet ondersteund]"; -App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; -App::$strings["Logs"] = "Logboeken"; -App::$strings["Clear"] = "Leegmaken"; -App::$strings["Debugging"] = "Debuggen"; -App::$strings["Log file"] = "Logbestand"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; -App::$strings["Log level"] = "Logniveau"; -App::$strings["New Profile Field"] = "Nieuw profielveld"; -App::$strings["Field nickname"] = "Bijnaam voor veld"; -App::$strings["System name of field"] = "Systeemnaam voor veld"; -App::$strings["Input type"] = "Invoertype"; -App::$strings["Field Name"] = "Veldnaam"; -App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; -App::$strings["Help text"] = "Helptekst"; -App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; -App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; -App::$strings["Edit Profile Field"] = "Profielveld bewerken"; -App::$strings["Profile Fields"] = "Profielvelden"; -App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; -App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; -App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; -App::$strings["All available fields"] = "Alle beschikbare velden"; -App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; -App::$strings["Create Custom Field"] = "Extra velden aanmaken"; -App::$strings["No valid account found."] = "Geen geldige account gevonden."; -App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; -App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -App::$strings["Password Reset"] = "Wachtwoord vergeten?"; -App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -App::$strings["click here to login"] = "klik dan hier om in te loggen"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -App::$strings["Email Address"] = "E-mailadres"; -App::$strings["Reset"] = "Opnieuw instellen"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -App::$strings["Mood"] = "Stemming"; -App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["Photos"] = "Foto's"; +App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Bewaar in map: "; +App::$strings["- select -"] = "- kies map -"; +App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +App::$strings["Messages"] = "Berichten"; +App::$strings["Message recalled."] = "Bericht ingetrokken."; +App::$strings["Conversation removed."] = "Conversatie verwijderd"; +App::$strings["Please enter a link URL:"] = "Vul een URL in:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +App::$strings["Send Private Message"] = "Privébericht versturen"; +App::$strings["To:"] = "Aan:"; +App::$strings["Subject:"] = "Onderwerp:"; +App::$strings["Your message:"] = "Jouw bericht:"; +App::$strings["Attach file"] = "Bestand toevoegen"; +App::$strings["Insert web link"] = "Weblink invoegen"; +App::$strings["Send"] = "Verzenden"; +App::$strings["Set expiration date"] = "Verloopdatum instellen"; +App::$strings["Encrypt text"] = "Tekst versleutelen"; +App::$strings["Delete message"] = "Bericht verwijderen"; +App::$strings["Delivery report"] = "Afleveringsrapport"; +App::$strings["Recall message"] = "Bericht intrekken"; +App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; +App::$strings["Delete Conversation"] = "Verwijder conversatie"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +App::$strings["Send Reply"] = "Antwoord versturen"; +App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; +App::$strings["Blocked"] = "Geblokkeerd"; +App::$strings["Ignored"] = "Genegeerd"; +App::$strings["Hidden"] = "Verborgen"; +App::$strings["Archived"] = "Gearchiveerd"; +App::$strings["New"] = "Nieuw"; +App::$strings["All"] = "Alles"; +App::$strings["New Connections"] = "Nieuwe connecties"; +App::$strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; +App::$strings["All Connections"] = "Alle connecties"; +App::$strings["Show all connections"] = "Toon alle connecties"; +App::$strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; +App::$strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; +App::$strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; +App::$strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; +App::$strings["Pending approval"] = "Moet nog geaccepteerd worden"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Connectie bewerken"; +App::$strings["Delete connection"] = "Connectie verwijderen"; +App::$strings["Channel address"] = "Kanaaladres"; +App::$strings["Network"] = "Netwerk"; +App::$strings["Status"] = "Status"; +App::$strings["Connected"] = "Verbonden"; +App::$strings["Approve connection"] = "Connectie accepteren"; +App::$strings["Ignore connection"] = "Connectie negeren"; +App::$strings["Ignore"] = "Negeren"; +App::$strings["Recent activity"] = "Recente activiteit"; +App::$strings["Connections"] = "Connecties"; +App::$strings["Search"] = "Zoeken"; +App::$strings["Search your connections"] = "Doorzoek jouw connecties"; +App::$strings["Connections search"] = "Connecties zoeken"; +App::$strings["Find"] = "Vinden"; +App::$strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; +App::$strings["Cover Photos"] = "Omslagfoto's"; +App::$strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; +App::$strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; +App::$strings["Image upload failed."] = "Uploaden afbeelding mislukt"; +App::$strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; +App::$strings["female"] = "vrouw"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s heeft haar %2\$s bijgewerkt"; +App::$strings["male"] = "man"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s heeft zijn %2\$s bijgewerkt"; +App::$strings["%1\$s updated their %2\$s"] = "De %2\$s van %1\$s is bijgewerkt"; +App::$strings["cover photo"] = "omslagfoto"; +App::$strings["Photo not available."] = "Foto niet beschikbaar."; +App::$strings["Upload File:"] = "Bestand uploaden:"; +App::$strings["Select a profile:"] = "Kies een profiel:"; +App::$strings["Upload Cover Photo"] = "Omslagfoto uploaden"; +App::$strings["or"] = "of"; +App::$strings["skip this step"] = "sla deze stap over"; +App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; +App::$strings["Crop Image"] = "Afbeelding bijsnijden"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; +App::$strings["Done Editing"] = "Klaar met bewerken"; +App::$strings["Edit post"] = "Bericht bewerken"; +App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +App::$strings["Connection updated."] = "Connectie bijgewerkt."; +App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +App::$strings["is now connected to"] = "is nu verbonden met"; +App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; +App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +App::$strings["Connection has been removed."] = "Connectie is verwijderd"; +App::$strings["View Profile"] = "Profiel weergeven"; +App::$strings["View %s's profile"] = "Profiel van %s weergeven"; +App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; +App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; +App::$strings["Recent Activity"] = "Recente activiteit/berichten"; +App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; +App::$strings["Unignore"] = "Niet meer negeren"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; +App::$strings["Unarchive"] = "Niet meer archiveren"; +App::$strings["Archive"] = "Archiveren"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; +App::$strings["Unhide"] = "Niet meer verbergen"; +App::$strings["Hide"] = "Verbergen"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; +App::$strings["Delete this connection"] = "Deze connectie verwijderen"; +App::$strings["Me"] = "Ik"; +App::$strings["Family"] = "Familie"; +App::$strings["Friends"] = "Vrienden"; +App::$strings["Acquaintances"] = "Kennissen"; +App::$strings["Approve this connection"] = "Deze connectie accepteren"; +App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; +App::$strings["Set Profile"] = "Profiel instellen"; +App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; +App::$strings["none"] = "geen"; +App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +App::$strings["Connection: %s"] = "Connectie: %s"; +App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; +App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; +App::$strings["Available locations:"] = "Beschikbare locaties:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; +App::$strings["Connection Tools"] = "Hulpmiddelen"; +App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; +App::$strings["Rating"] = "Beoordeling"; +App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; +App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; +App::$strings["Custom Filter"] = "Berichtenfilter"; +App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; +App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; +App::$strings["This information is public!"] = "Deze informatie is openbaar!"; +App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; +App::$strings["inherited"] = "geërfd"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +App::$strings["Their Settings"] = "Hun instellingen"; +App::$strings["My Settings"] = "Mijn instellingen"; +App::$strings["Individual Permissions"] = "Individuele permissies"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; +App::$strings["Last update:"] = "Laatste wijziging:"; +App::$strings["Item not found"] = "Item niet gevonden"; +App::$strings["Block Name"] = "Bloknaam"; +App::$strings["Title (optional)"] = "Titel (optioneel)"; +App::$strings["Edit Block"] = "Blok bewerken"; +App::$strings["Layout Name"] = "Naam lay-out"; +App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; +App::$strings["Edit Layout"] = "Lay-out bewerken"; +App::$strings["Page link"] = "Paginalink"; +App::$strings["Edit Webpage"] = "Webpagina bewerken"; +App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +App::$strings["Menu Name"] = "Menunaam"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; +App::$strings["Menu Title"] = "Menutitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; +App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; +App::$strings["Menus"] = "Menu's"; +App::$strings["Drop"] = "Verwijderen"; +App::$strings["Created"] = "Aangemaakt"; +App::$strings["Edited"] = "Bewerkt"; +App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +App::$strings["Delete this menu"] = "Menu verwijderen"; +App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +App::$strings["Edit this menu"] = "Dit menu bewerken"; +App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; +App::$strings["Menu not found."] = "Menu niet gevonden."; +App::$strings["Edit Menu"] = "Menu bewerken"; +App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +App::$strings["Menu name"] = "Naam van menu"; +App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +App::$strings["Menu title"] = "Titel van menu"; +App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Not found."] = "Niet gevonden."; +App::$strings["App installed."] = "App geïnstalleerd"; +App::$strings["Malformed app."] = "Misvormde app."; +App::$strings["Embed code"] = "Insluitcode"; +App::$strings["Edit App"] = "App bewerken"; +App::$strings["Create App"] = "App maken"; +App::$strings["Name of app"] = "Naam van app"; +App::$strings["Required"] = "Vereist"; +App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; +App::$strings["Description"] = "Omschrijving"; +App::$strings["Photo icon URL"] = "URL van pictogram"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Version ID"] = "Versie-ID"; +App::$strings["Price of app"] = "Prijs van de app"; +App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +App::$strings["Public Hubs"] = "Openbare hubs"; +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."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Toegangs-
     type"; +App::$strings["Registration Policy"] = "Registratie-
     beleid"; +App::$strings["Stats"] = "Stats"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Beoordelingen"; +App::$strings["Rate"] = "Beoordeel"; +App::$strings["Location"] = "Locatie"; +App::$strings["View"] = "Weergeven"; +App::$strings["Item not available."] = "Item is niet aanwezig."; +App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +App::$strings["Return to your app and insert this Security Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; +App::$strings["Layout updated."] = "Lay-out bijgewerkt."; +App::$strings["Feature disabled."] = "Functie uitgeschakeld."; +App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; +App::$strings["Layout not found."] = "Lay-out niet gevonden."; +App::$strings["Module Name:"] = "Modulenaam:"; +App::$strings["Layout Help"] = "Lay-out-hulp"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Welkom op %s"; +App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +App::$strings["Visible to:"] = "Zichtbaar voor:"; +App::$strings["Permission Denied."] = "Toegang geweigerd"; +App::$strings["File not found."] = "Bestand niet gevonden."; +App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; +App::$strings["Permissions"] = "Permissies"; +App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; +App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; +App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; +App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; +App::$strings["Share this file"] = "Dit bestand delen"; +App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; +App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; +App::$strings["Continue"] = "Ga verder"; +App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +App::$strings["Create New"] = "Nieuwe aanmaken"; +App::$strings["Channel Manager"] = "Kanaalbeheer"; +App::$strings["Current Channel"] = "Huidig kanaal"; +App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +App::$strings["Default Channel"] = "Standaardkanaal"; +App::$strings["Make Default"] = "Als standaard instellen"; +App::$strings["%d new messages"] = "%d nieuwe berichten"; +App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; +App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; +App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; +App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; +App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; +App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; +App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; +App::$strings["Privacy group name: "] = "Naam privacygroep: "; +App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; +App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; +App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; +App::$strings["Privacy group editor"] = "Privacygroep bewerken"; +App::$strings["Members"] = "Kanalen"; +App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; +App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; +App::$strings["Invalid message"] = "Ongeldig bericht"; +App::$strings["no results"] = "geen resultaten"; +App::$strings["channel sync processed"] = "kanaalsync verwerkt"; +App::$strings["queued"] = "in wachtrij"; +App::$strings["posted"] = "verstuurd"; +App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; +App::$strings["updated"] = "geüpdatet"; +App::$strings["update ignored"] = "update genegeerd"; +App::$strings["permission denied"] = "toegang geweigerd"; +App::$strings["recipient not found"] = "ontvanger niet gevonden"; +App::$strings["mail recalled"] = "Privébericht ingetrokken"; +App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; +App::$strings["mail delivered"] = "privébericht afgeleverd"; +App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; +App::$strings["Options"] = "Opties"; +App::$strings["Redeliver"] = "Opnieuw afleveren"; +App::$strings["webpage"] = "Webpagina"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "lay-out"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; +App::$strings["Import completed"] = "Importeren voltooid"; +App::$strings["Import Items"] = "Importeer items"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; +App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +App::$strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +App::$strings["Send invitations"] = "Uitnodigingen verzenden"; +App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; +App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; +App::$strings["or visit"] = "of bezoek"; +App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +App::$strings["Location not found."] = "Locatie niet gevonden."; +App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; +App::$strings["Syncing locations"] = "Locaties synchronizeren"; +App::$strings["No locations found."] = "Geen locaties gevonden."; +App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Primary"] = "Primair"; +App::$strings["Sync Now"] = "Nu synchroniseren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; +App::$strings["Website:"] = "Website:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +App::$strings["Like/Dislike"] = "Leuk/niet leuk"; +App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; +App::$strings["Invalid request."] = "Ongeldig verzoek"; +App::$strings["channel"] = "kanaal"; +App::$strings["thing"] = "ding"; +App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "bericht"; +App::$strings["event"] = "gebeurtenis"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +App::$strings["Action completed."] = "Actie voltooid"; +App::$strings["Thank you."] = "Bedankt"; App::$strings["Profile not found."] = "Profiel niet gevonden."; App::$strings["Profile deleted."] = "Profiel verwijderd."; App::$strings["Profile-"] = "Profiel-"; @@ -1106,230 +780,345 @@ App::$strings["Contact information and social networks"] = "Contactinformatie en App::$strings["My other channels"] = "Mijn andere kanalen"; App::$strings["Profile Image"] = "Profielfoto"; App::$strings["Edit Profiles"] = "Bewerk profielen"; -App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; -App::$strings["System Notifications"] = "Systeemnotificaties"; -App::$strings["Profile Match"] = "Profielovereenkomst"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -App::$strings["is interested in:"] = "is geïnteresseerd in:"; -App::$strings["No matches"] = "Geen overeenkomsten"; -App::$strings["Import Webpage Elements"] = "Webpagina-elementen importeren"; -App::$strings["Import selected"] = "Importbestand geselecteerd"; -App::$strings["Webpages"] = "Webpagina's"; -App::$strings["Actions"] = "Acties"; -App::$strings["Page Link"] = "Paginalink"; -App::$strings["Page Title"] = "Paginatitel"; -App::$strings["Invalid file type."] = "Ongeldig bestandsformaat"; -App::$strings["Error opening zip file"] = "Fout met openen zipbestand"; -App::$strings["Invalid folder path."] = "Ongeldige maplocatie"; -App::$strings["No webpage elements detected."] = "Geen webpagina-elementen gedecteerd"; -App::$strings["Import complete."] = "Importeren voltooid."; -App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; -App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; -App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; -App::$strings["Edit event title"] = "Titel bewerken"; -App::$strings["Event title"] = "Titel"; -App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -App::$strings["Edit Category"] = "Categorie"; -App::$strings["Category"] = "Categorie"; -App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; -App::$strings["Start date and time"] = "Begindatum en -tijd"; -App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; -App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; -App::$strings["Finish date and time"] = "Einddatum en -tijd"; -App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -App::$strings["Edit Description"] = "Omschrijving bewerken"; -App::$strings["Edit Location"] = "Locatie bewerken"; -App::$strings["Share this event"] = "Deel deze gebeurtenis"; -App::$strings["Permission settings"] = "Permissies"; -App::$strings["Advanced Options"] = "Geavanceerde opties"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Gebeurtenis bewerken"; -App::$strings["Delete event"] = "Gebeurtenis verwijderen"; -App::$strings["Link to Source"] = "Originele locatie"; -App::$strings["calendar"] = "agenda"; -App::$strings["Edit Event"] = "Gebeurtenis bewerken"; -App::$strings["Create Event"] = "Gebeurtenis aanmaken"; -App::$strings["Export"] = "Exporteren"; -App::$strings["Month"] = "Maand"; -App::$strings["Week"] = "Week"; -App::$strings["Day"] = "Dag"; -App::$strings["Today"] = "Vandaag"; -App::$strings["Event removed"] = "Gebeurtenis verwijderd"; -App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; -App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; -App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; -App::$strings["Import completed."] = "Import voltooid."; -App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; -App::$strings["Import Channel"] = "Kanaal importeren"; -App::$strings["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."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; -App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; -App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; -App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; -App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; -App::$strings["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."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; -App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; +App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; +App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +App::$strings["Menu Item Permissions"] = "Permissies menu-item"; +App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +App::$strings["Link Name"] = "Linknaam"; +App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +App::$strings["Open link in new window"] = "Open link in nieuw venster"; +App::$strings["Order in list"] = "Volgorde in lijst"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +App::$strings["Submit and finish"] = "Opslaan en afsluiten"; +App::$strings["Submit and continue"] = "Opslaan en doorgaan"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Linkdoel"; +App::$strings["Edit menu"] = "Menu bewerken"; +App::$strings["Edit element"] = "Onderdeel bewerken"; +App::$strings["Drop element"] = "Onderdeel verwijderen"; +App::$strings["New element"] = "Nieuw element"; +App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; +App::$strings["Add menu element"] = "Menu-element toevoegen"; +App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; +App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; +App::$strings["Menu item not found."] = "Menu-item niet gevonden."; +App::$strings["Menu item deleted."] = "Menu-item verwijderd."; +App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +App::$strings["Edit Menu Element"] = "Menu-element bewerken"; +App::$strings["Link text"] = "Linktekst"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup"; +App::$strings["Could not connect to database."] = "Could not connect to database."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +App::$strings["Could not create table."] = "Could not create table."; +App::$strings["Your site database has been installed."] = "Your hub database has been installed."; +App::$strings["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."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +App::$strings["System check"] = "System check"; +App::$strings["Next"] = "Volgende"; +App::$strings["Check again"] = "Check again"; +App::$strings["Database connection"] = "Database connection"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings."; +App::$strings["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."; +App::$strings["Database Server Name"] = "Database Server Name"; +App::$strings["Default is 127.0.0.1"] = "Default is 127.0.0.1"; +App::$strings["Database Port"] = "Database Port"; +App::$strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +App::$strings["Database Login Name"] = "Database Login Name"; +App::$strings["Database Login Password"] = "Database Login Password"; +App::$strings["Database Name"] = "Database Name"; +App::$strings["Database Type"] = "Database Type"; +App::$strings["Site administrator email address"] = "Hub administrator email address"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +App::$strings["Website URL"] = "Hub URL"; +App::$strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +App::$strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +App::$strings["Site settings"] = "Hub settings"; +App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 or greater is required."; +App::$strings["PHP version"] = "PHP version"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +App::$strings["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."; +App::$strings["PHP executable path"] = "PHP executable path"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +App::$strings["Command line PHP"] = "Command line PHP"; +App::$strings["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."; +App::$strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["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."; +App::$strings["You can adjust these settings in the servers php.ini."] = "You can adjust these settings in the servers php.ini."; +App::$strings["PHP upload limits"] = "PHP upload limits"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generate encryption keys"; +App::$strings["libCurl PHP module"] = "libCurl PHP module"; +App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; +App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; +App::$strings["mb_string PHP module"] = "mb_string PHP module"; +App::$strings["xml PHP module"] = "xml PHP module"; +App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; +App::$strings["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."; +App::$strings["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."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +App::$strings["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."; +App::$strings["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."; +App::$strings["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."; +App::$strings["%s is writable"] = "%s is writable"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; +App::$strings["store is writable"] = "store is writable"; +App::$strings["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 hub."; +App::$strings["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 hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +App::$strings["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."; +App::$strings["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 hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +App::$strings["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 hub) so we must insist on this requirement."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +App::$strings["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."; +App::$strings["SSL certificate validation"] = "SSL certificate validation"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +App::$strings["Url rewrite is working"] = "Url rewrite is working"; +App::$strings["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."; +App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +App::$strings["

    What next

    "] = "

    What next

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +App::$strings["No valid account found."] = "Geen geldige account gevonden."; +App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; +App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +App::$strings["Password Reset"] = "Wachtwoord vergeten?"; +App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +App::$strings["click here to login"] = "klik dan hier om in te loggen"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +App::$strings["Email Address"] = "E-mailadres"; +App::$strings["Reset"] = "Opnieuw instellen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +App::$strings["Mood"] = "Stemming"; +App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; +App::$strings["Remove This Channel"] = "Verwijder dit kanaal"; +App::$strings["WARNING: "] = "WAARSCHUWING: "; +App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; +App::$strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; +App::$strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; +App::$strings["Remove Channel"] = "Kanaal verwijderen"; +App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; +App::$strings["System Notifications"] = "Systeemnotificaties"; +App::$strings["Profile Match"] = "Profielovereenkomst"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +App::$strings["is interested in:"] = "is geïnteresseerd in:"; +App::$strings["Connect"] = "Verbinden"; +App::$strings["No matches"] = "Geen overeenkomsten"; +App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; +App::$strings["Hub not found."] = "Hub niet gevonden."; +App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +App::$strings["Profile Photos"] = "Profielfoto's"; +App::$strings["Album not found."] = "Album niet gevonden."; +App::$strings["Delete Album"] = "Verwijder album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; +App::$strings["Delete Photo"] = "Verwijder foto"; +App::$strings["Public access denied."] = "Openbare toegang geweigerd."; +App::$strings["No photos selected"] = "Geen foto's geselecteerd"; +App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +App::$strings["Upload Photos"] = "Foto's uploaden"; +App::$strings["Enter an album name"] = "Vul een albumnaam in"; +App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; +App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; +App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; +App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +App::$strings["Contact Photos"] = "Connectiefoto's"; +App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; +App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; +App::$strings["View Photo"] = "Foto weergeven"; +App::$strings["Edit Album"] = "Album bewerken"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +App::$strings["Photo not available"] = "Foto niet aanwezig"; +App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; +App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; +App::$strings["Private Photo"] = "Privéfoto"; +App::$strings["Previous"] = "Vorige"; +App::$strings["View Full Size"] = "Volledige grootte weergeven"; +App::$strings["Edit photo"] = "Foto bewerken"; +App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; +App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; +App::$strings["Move photo to album"] = "Verplaatst foto naar album"; +App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Caption"] = "Bijschrift"; +App::$strings["Add a Tag"] = "Tag toevoegen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +App::$strings["I like this (toggle)"] = "Vind ik leuk"; +App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +App::$strings["Share"] = "Delen"; +App::$strings["Please wait"] = "Even wachten"; +App::$strings["This is you"] = "Dit ben jij"; +App::$strings["Comment"] = "Reactie"; +App::$strings["Preview"] = "Voorvertoning"; +App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["__ctx:title__ Agree"] = "eens"; +App::$strings["__ctx:title__ Disagree"] = "oneens"; +App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; +App::$strings["__ctx:title__ Attending"] = "aanwezig"; +App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; +App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; +App::$strings["View all"] = "Toon alles"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +App::$strings["Photo Tools"] = "Hulpmiddelen"; +App::$strings["In This Photo:"] = "Op deze foto:"; +App::$strings["Map"] = "Kaart"; +App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["Close"] = "Sluiten"; +App::$strings["View Album"] = "Album weergeven"; +App::$strings["Recent Photos"] = "Recente foto's"; +App::$strings["Name or caption"] = "Naam"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; +App::$strings["Choose a short nickname"] = "Korte bijnaam"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; +App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; +App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; App::$strings["Create Channel"] = "Kanaal aanmaken"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; -App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; -App::$strings["sent you a private message"] = "stuurde jou een privébericht"; -App::$strings["added your channel"] = "voegde jouw kanaal toe"; -App::$strings["g A l F d"] = "G:i, l d F"; -App::$strings["[today]"] = "[vandaag]"; -App::$strings["posted an event"] = "plaatste een gebeurtenis"; -App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -App::$strings["Discard"] = "Annuleren"; -App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -App::$strings["Poke"] = "Aanstoten"; -App::$strings["Poke somebody"] = "Iemand aanstoten"; -App::$strings["Poke/Prod"] = "Aanstoten/porren"; -App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; -App::$strings["Recipient"] = "Ontvanger"; -App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -App::$strings["Make this post private"] = "Maak dit bericht privé"; -App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -App::$strings["Post successful."] = "Verzenden bericht geslaagd."; -App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -App::$strings["Profile"] = "Profiel"; -App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -App::$strings["Visible To"] = "Zichtbaar voor"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; -App::$strings["Configuration Editor"] = "Configuratiebewerker"; -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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; -App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -App::$strings["Posts and comments"] = "Berichten en reacties"; -App::$strings["Only posts"] = "Alleen berichten"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -App::$strings["Version %s"] = "Versie %s"; -App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; -App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; -App::$strings["Running at web location"] = "Draaiend op weblocatie"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; -App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -App::$strings["\$projectname issues"] = "\$projectname-issues"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Hubbeheerders: "; -App::$strings["Blocks"] = "Blokken"; -App::$strings["Block Title"] = "Bloktitel"; -App::$strings["Layouts"] = "Lay-outs"; -App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; -App::$strings["Layout Description"] = "Lay-out-omschrijving"; -App::$strings["Download PDL file"] = "Download PDL-bestand"; -App::$strings["No ratings"] = "Geen beoordelingen"; -App::$strings["Rating: "] = "Beoordeling: "; -App::$strings["Website: "] = "Website: "; -App::$strings["Description: "] = "Omschrijving: "; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; -App::$strings["Permissions denied."] = "Permissies niet toegestaan"; -App::$strings["Import"] = "Importeren"; -App::$strings["No channel."] = "Geen kanaal."; -App::$strings["Common connections"] = "Veel voorkomende connecties"; -App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -App::$strings["Messages"] = "Berichten"; -App::$strings["Message recalled."] = "Bericht ingetrokken."; -App::$strings["Conversation removed."] = "Conversatie verwijderd"; -App::$strings["Please enter a link URL:"] = "Vul een URL in:"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; -App::$strings["Send Private Message"] = "Privébericht versturen"; -App::$strings["To:"] = "Aan:"; -App::$strings["Subject:"] = "Onderwerp:"; -App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["Send"] = "Verzenden"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; -App::$strings["Encrypt text"] = "Tekst versleutelen"; -App::$strings["Delete message"] = "Bericht verwijderen"; -App::$strings["Delivery report"] = "Afleveringsrapport"; -App::$strings["Recall message"] = "Bericht intrekken"; -App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; -App::$strings["Delete Conversation"] = "Verwijder conversatie"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -App::$strings["Send Reply"] = "Antwoord versturen"; -App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; -App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -App::$strings["Connection updated."] = "Connectie bijgewerkt."; -App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -App::$strings["is now connected to"] = "is nu verbonden met"; -App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -App::$strings["Connection has been removed."] = "Connectie is verwijderd"; -App::$strings["View Profile"] = "Profiel weergeven"; -App::$strings["View %s's profile"] = "Profiel van %s weergeven"; -App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; -App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; -App::$strings["Recent Activity"] = "Recente activiteit/berichten"; -App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; -App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; -App::$strings["Unignore"] = "Niet meer negeren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; -App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; -App::$strings["Unarchive"] = "Niet meer archiveren"; -App::$strings["Archive"] = "Archiveren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; -App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; -App::$strings["Unhide"] = "Niet meer verbergen"; -App::$strings["Hide"] = "Verbergen"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; -App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; -App::$strings["Delete this connection"] = "Deze connectie verwijderen"; -App::$strings["Me"] = "Ik"; -App::$strings["Family"] = "Familie"; -App::$strings["Acquaintances"] = "Kennissen"; -App::$strings["Approve this connection"] = "Deze connectie accepteren"; -App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; -App::$strings["Set Profile"] = "Profiel instellen"; -App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; -App::$strings["none"] = "geen"; -App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; -App::$strings["Connection: %s"] = "Connectie: %s"; -App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; -App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; -App::$strings["Available locations:"] = "Beschikbare locaties:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; -App::$strings["Connection Tools"] = "Hulpmiddelen"; -App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; -App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; -App::$strings["Custom Filter"] = "Berichtenfilter"; -App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; -App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; -App::$strings["This information is public!"] = "Deze informatie is openbaar!"; -App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; -App::$strings["Last update:"] = "Laatste wijziging:"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; +App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; +App::$strings["sent you a private message"] = "stuurde jou een privébericht"; +App::$strings["added your channel"] = "voegde jouw kanaal toe"; +App::$strings["g A l F d"] = "G:i, l d F"; +App::$strings["[today]"] = "[vandaag]"; +App::$strings["posted an event"] = "plaatste een gebeurtenis"; +App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +App::$strings["Discard"] = "Annuleren"; +App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +App::$strings["Poke"] = "Aanstoten"; +App::$strings["Poke somebody"] = "Iemand aanstoten"; +App::$strings["Poke/Prod"] = "Aanstoten/porren"; +App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; +App::$strings["Recipient"] = "Ontvanger"; +App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +App::$strings["Make this post private"] = "Maak dit bericht privé"; App::$strings["Apps"] = "Apps"; -App::$strings["Continue"] = "Ga verder"; -App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +App::$strings["Post successful."] = "Verzenden bericht geslaagd."; +App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +App::$strings["Profile"] = "Profiel"; +App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +App::$strings["Visible To"] = "Zichtbaar voor"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; +App::$strings["Configuration Editor"] = "Configuratiebewerker"; +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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["Version %s"] = "Versie %s"; +App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; +App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; +App::$strings["Running at web location"] = "Draaiend op weblocatie"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; +App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +App::$strings["\$projectname issues"] = "\$projectname-issues"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Hubbeheerders: "; +App::$strings["Blocks"] = "Blokken"; +App::$strings["Block Title"] = "Bloktitel"; +App::$strings["Layouts"] = "Lay-outs"; +App::$strings["Help"] = "Hulp"; +App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; +App::$strings["Layout Description"] = "Lay-out-omschrijving"; +App::$strings["Download PDL file"] = "Download PDL-bestand"; +App::$strings["# Accounts"] = "# accounts"; +App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; +App::$strings["# expired accounts"] = "# verlopen accounts"; +App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; +App::$strings["# Channels"] = "# Kanalen"; +App::$strings["# primary"] = "# primair"; +App::$strings["# clones"] = "# klonen"; +App::$strings["Message queues"] = "Berichtenwachtrij"; +App::$strings["Your software should be updated"] = "Jouw software moet worden bijgewerkt "; +App::$strings["Summary"] = "Samenvatting"; +App::$strings["Registered accounts"] = "Geregistreerde accounts"; +App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; +App::$strings["Registered channels"] = "Geregistreerde kanalen"; +App::$strings["Active plugins"] = "Ingeschakelde plugins"; +App::$strings["Version"] = "Versie"; +App::$strings["Repository version (master)"] = "Versie repository (master)"; +App::$strings["Repository version (dev)"] = "Versie repository (dev)"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; +App::$strings["Permissions denied."] = "Permissies niet toegestaan"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Originele locatie"; +App::$strings["Edit Event"] = "Gebeurtenis bewerken"; +App::$strings["Create Event"] = "Gebeurtenis aanmaken"; +App::$strings["Export"] = "Exporteren"; +App::$strings["Import"] = "Importeren"; +App::$strings["Today"] = "Vandaag"; +App::$strings["No channel."] = "Geen kanaal."; +App::$strings["Common connections"] = "Veel voorkomende connecties"; +App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +App::$strings["No ratings"] = "Geen beoordelingen"; +App::$strings["Rating: "] = "Beoordeling: "; +App::$strings["Website: "] = "Website: "; +App::$strings["Description: "] = "Omschrijving: "; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; +App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; +App::$strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; +App::$strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; +App::$strings["Registration on this hub is disabled."] = "Registreren van nieuwe accounts is op deze hub uitgeschakeld."; +App::$strings["Registration on this hub is by approval only."] = "Registraties op deze hub moeten eerst worden goedgekeurd."; +App::$strings["Register at another affiliated hub."] = "Registreer op een andere hub."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; +App::$strings["Terms of Service"] = "Gebruiksvoorwaarden"; +App::$strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ik ben 13 jaar of ouder en accepteer de %s van deze \$Projectname-hub"; +App::$strings["Your email address"] = "Jouw e-mailadres"; +App::$strings["Choose a password"] = "Geef een wachtwoord op"; +App::$strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; +App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; +App::$strings["no"] = "Nee"; +App::$strings["yes"] = "Ja"; +App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; +App::$strings["Register"] = "Registreren"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder."; +App::$strings["Documentation Search"] = "Zoek documentatie"; +App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; App::$strings["URL of bookmark"] = "URL van bladwijzer"; @@ -1341,17 +1130,23 @@ App::$strings["Authenticate"] = "Authenticeren"; App::$strings["Please login."] = "Inloggen."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; App::$strings["Remove This Account"] = "Verwijder dit account"; -App::$strings["WARNING: "] = "WAARSCHUWING: "; App::$strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd."; -App::$strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; -App::$strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; -App::$strings["Remove This Channel"] = "Verwijder dit kanaal"; -App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; -App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; +App::$strings["Remove Account"] = "Account verwijderen"; +App::$strings["Import Webpage Elements"] = "Webpagina-elementen importeren"; +App::$strings["Import selected"] = "Importbestand geselecteerd"; +App::$strings["Export Webpage Elements"] = "Webpagina-elementen exporteren"; +App::$strings["Export selected"] = "Selectie exporteren"; +App::$strings["Webpages"] = "Webpagina's"; +App::$strings["Actions"] = "Acties"; +App::$strings["Page Link"] = "Paginalink"; +App::$strings["Page Title"] = "Paginatitel"; +App::$strings["Invalid file type."] = "Ongeldig bestandsformaat"; +App::$strings["Error opening zip file"] = "Fout met openen zipbestand"; +App::$strings["Invalid folder path."] = "Ongeldige maplocatie"; +App::$strings["No webpage elements detected."] = "Geen webpagina-elementen gedecteerd"; +App::$strings["Import complete."] = "Importeren voltooid."; App::$strings["Export Channel"] = "Kanaal exporteren"; App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; App::$strings["Export Content"] = "Inhoud exporteren"; @@ -1362,9 +1157,39 @@ App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; App::$strings["Item is not editable"] = "Item is niet te bewerken"; -App::$strings["Edit post"] = "Bericht bewerken"; App::$strings["Items tagged with: %s"] = "Items getagd met %s"; App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; +App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; +App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; +App::$strings["Edit event title"] = "Titel bewerken"; +App::$strings["Event title"] = "Titel"; +App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +App::$strings["Edit Category"] = "Categorie"; +App::$strings["Category"] = "Categorie"; +App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; +App::$strings["Start date and time"] = "Begindatum en -tijd"; +App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; +App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; +App::$strings["Finish date and time"] = "Einddatum en -tijd"; +App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +App::$strings["Edit Description"] = "Omschrijving bewerken"; +App::$strings["Edit Location"] = "Locatie bewerken"; +App::$strings["Share this event"] = "Deel deze gebeurtenis"; +App::$strings["Permission settings"] = "Permissies"; +App::$strings["Advanced Options"] = "Geavanceerde opties"; +App::$strings["Edit event"] = "Gebeurtenis bewerken"; +App::$strings["Delete event"] = "Gebeurtenis verwijderen"; +App::$strings["calendar"] = "agenda"; +App::$strings["Month"] = "Maand"; +App::$strings["Week"] = "Week"; +App::$strings["Day"] = "Dag"; +App::$strings["Event removed"] = "Gebeurtenis verwijderd"; +App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; App::$strings["Thing updated"] = "Ding bijgewerkt"; App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; @@ -1422,6 +1247,7 @@ App::$strings["Only import content with these words (one per line)"] = "Importee App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; App::$strings["Channel Name"] = "Kanaalnaam"; App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)"; +App::$strings["Optional"] = "Optioneel"; App::$strings["Source not found."] = "Bron niet gevonden"; App::$strings["Edit Source"] = "Bron bewerken"; App::$strings["Delete Source"] = "Bron verwijderen"; @@ -1431,6 +1257,7 @@ App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van % App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer"; App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; App::$strings["Ignore/Hide"] = "Negeren/Verbergen"; +App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; App::$strings["post"] = "bericht"; App::$strings["comment"] = "reactie"; App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; @@ -1448,7 +1275,6 @@ App::$strings["Delete Room"] = "Chatkanaal verwijderen"; App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; App::$strings["I am online"] = "Ik ben online"; App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -App::$strings["Feature disabled."] = "Functie uitgeschakeld."; App::$strings["New Chatroom"] = "Nieuw chatkanaal"; App::$strings["Chatroom name"] = "Naam chatkanaal"; App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; @@ -1458,6 +1284,189 @@ App::$strings["Expiration"] = "Verloopt na"; App::$strings["min"] = "min"; App::$strings["Xchan Lookup"] = "Xchan opzoeken"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +App::$strings["%d rating"] = array( + 0 => "%d beoordeling", + 1 => "%d beoordelingen", +); +App::$strings["Gender: "] = "Geslacht:"; +App::$strings["Status: "] = "Status: "; +App::$strings["Homepage: "] = "Homepage: "; +App::$strings["Age:"] = "Leeftijd:"; +App::$strings["Location:"] = "Plaats:"; +App::$strings["Description:"] = "Omschrijving:"; +App::$strings["Hometown:"] = "Oorspronkelijk uit:"; +App::$strings["About:"] = "Over:"; +App::$strings["Public Forum:"] = "Openbaar forum:"; +App::$strings["Keywords: "] = "Trefwoorden: "; +App::$strings["Don't suggest"] = "Niet voorstellen"; +App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; +App::$strings["Global Directory"] = "Volledige kanalengids"; +App::$strings["Local Directory"] = "Lokale kanalengids"; +App::$strings["Finding:"] = "Gezocht naar:"; +App::$strings["next page"] = "volgende pagina"; +App::$strings["previous page"] = "vorige pagina"; +App::$strings["Sort options"] = "Sorteeropties"; +App::$strings["Alphabetic"] = "Alfabetisch"; +App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +App::$strings["Newest to Oldest"] = "Nieuw naar oud"; +App::$strings["Oldest to Newest"] = "Oud naar nieuw"; +App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; +App::$strings["Not valid email."] = "Geen geldig e-mailadres."; +App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; +App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; +App::$strings["Technical skill level updated"] = "Technisch niveau bijgewerkt"; +App::$strings["Password verification failed."] = "Wachtwoordverificatie mislukt"; +App::$strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; +App::$strings["Password changed."] = "Wachtwoord veranderd."; +App::$strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; +App::$strings["Account Settings"] = "Account-instellingen"; +App::$strings["Current Password"] = "Huidig wachtwoord"; +App::$strings["Enter New Password"] = "Nieuw wachtwoord invoeren"; +App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; +App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; +App::$strings["Your technical skill level"] = "Jouw technisch niveau"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Wordt gebruikt om je een gebruikerservaring te bieden die met jouw technisch niveau overeenkomt"; +App::$strings["Email Address:"] = "E-mailadres:"; +App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; +App::$strings["Settings updated."] = "Instellingen bijgewerkt."; +App::$strings["Nobody except yourself"] = "Niemand, behalve jezelf"; +App::$strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; +App::$strings["Approved connections"] = "Geaccepteerde connecties"; +App::$strings["Any connections"] = "Alle connecties"; +App::$strings["Anybody on this website"] = "Iedereen op deze hub"; +App::$strings["Anybody in this network"] = "Iedereen in dit netwerk"; +App::$strings["Anybody authenticated"] = "Geauthenticeerd"; +App::$strings["Anybody on the internet"] = "Iedereen op het internet"; +App::$strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; +App::$strings["Your channel address is"] = "Jouw kanaaladres is"; +App::$strings["Channel Settings"] = "Kanaal-instellingen"; +App::$strings["Basic Settings"] = "Basis-instellingen"; +App::$strings["Full Name:"] = "Volledige naam:"; +App::$strings["Your Timezone:"] = "Jouw tijdzone:"; +App::$strings["Default Post Location:"] = "Standaardlocatie bericht:"; +App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; +App::$strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; +App::$strings["Adult Content"] = "Inhoud voor volwassenen"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; +App::$strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; +App::$strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; +App::$strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; +App::$strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; +App::$strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; +App::$strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; +App::$strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; +App::$strings["Channel Permission Limits"] = "Geavanceerde permissies"; +App::$strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; +App::$strings["0 or blank to use the website limit."] = "0 of leeg om het standaard aantal dagen van deze hub te gebruiken."; +App::$strings["This website expires after %d days."] = "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen."; +App::$strings["This website does not expire imported content."] = "Deze hub laat de inhoud van andere kanalen niet verlopen."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang."; +App::$strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; +App::$strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; +App::$strings["Default Access Control List (ACL)"] = "Standaard permissies voor nieuwe berichten"; +App::$strings["Use my default audience setting for the type of object published"] = "Gebruik mijn standaard privacy-instelling voor dit type publicatie"; +App::$strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +App::$strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; +App::$strings["Notification Settings"] = "Notificatie-instellingen"; +App::$strings["By default post a status message when:"] = "Plaats automatisch een bericht wanneer:"; +App::$strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; +App::$strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; +App::$strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; +App::$strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; +App::$strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; +App::$strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; +App::$strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; +App::$strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; +App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; +App::$strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; +App::$strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; +App::$strings["Unseen private messages"] = "Niet bekeken privéberichten"; +App::$strings["Recommended"] = "Aanbevolen"; +App::$strings["Upcoming events"] = "Aankomende gebeurtenissen"; +App::$strings["Events today"] = "Gebeurtenissen van vandaag"; +App::$strings["Upcoming birthdays"] = "Aankomende verjaardagen"; +App::$strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; +App::$strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; +App::$strings["System info messages"] = "Systeemmededelingen"; +App::$strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; +App::$strings["New connections"] = "Nieuwe connecties"; +App::$strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; +App::$strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; +App::$strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; +App::$strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; +App::$strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; +App::$strings["Miscellaneous Settings"] = "Diverse instellingen"; +App::$strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads"; +App::$strings["%Y - current year, %m - current month"] = "%Y - dit jaar, %m - deze maand"; +App::$strings["Default file upload folder"] = "Standaard bestandsmap voor uploads"; +App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; +App::$strings["Remove this channel."] = "Verwijder dit kanaal."; +App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share"; +App::$strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag"; +App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; +App::$strings["%s - (Experimental)"] = "%s - (experimenteel)"; +App::$strings["Display Settings"] = "Weergave-instellingen"; +App::$strings["Theme Settings"] = "Thema-instellingen"; +App::$strings["Custom Theme Settings"] = "Handmatige thema-instellingen"; +App::$strings["Content Settings"] = "Inhoudsinstellingen"; +App::$strings["Display Theme:"] = "Gebruik thema:"; +App::$strings["Select scheme"] = "Kies schema van thema"; +App::$strings["Mobile Theme:"] = "Mobiel thema:"; +App::$strings["Preload images before rendering the page"] = "Afbeeldingen laden voordat de pagina wordt weergegeven"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven"; +App::$strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; +App::$strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; +App::$strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; +App::$strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; +App::$strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; +App::$strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; +App::$strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; +App::$strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; +App::$strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op gridpagina"; +App::$strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; +App::$strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; +App::$strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; +App::$strings["No feature settings configured"] = "Geen plugin-instellingen aanwezig"; +App::$strings["Feature/Addon Settings"] = "Plugin-instellingen"; +App::$strings["Additional Features"] = "Extra functies"; +App::$strings["Name is required"] = "Naam is vereist"; +App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; +App::$strings["Add application"] = "Applicatie toevoegen"; +App::$strings["Name of application"] = "Naam van applicatie"; +App::$strings["Consumer Key"] = "Consumer key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; +App::$strings["Consumer Secret"] = "Consumer secret"; +App::$strings["Redirect"] = "Redirect/doorverwijzing"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; +App::$strings["Icon url"] = "Pictogram-URL"; +App::$strings["Application not found."] = "Applicatie niet gevonden."; +App::$strings["Connected Apps"] = "Verbonden applicaties"; +App::$strings["Client key starts with"] = "Client key begint met"; +App::$strings["No name"] = "Geen naam"; +App::$strings["Remove authorization"] = "Autorisatie verwijderen"; +App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens"; +App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist"; +App::$strings["Token saved."] = "Token opgeslagen."; +App::$strings["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."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud."; +App::$strings["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:"] = "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:"; +App::$strings["Guest Access Tokens"] = "Gasttoegang"; +App::$strings["Login Name"] = "Inlognaam"; +App::$strings["Login Password"] = "Wachtwoord:"; +App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)"; App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; @@ -1468,7 +1477,7 @@ App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Bedankt,"; App::$strings["%s Administrator"] = "Beheerder %s"; App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; +App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notificatie] Nieuw privébericht ontvangen op %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; App::$strings["a private message"] = "een privébericht"; @@ -1476,72 +1485,35 @@ App::$strings["Please visit %s to view and/or reply to your private messages."] App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[\$Projectname:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; +App::$strings["[\$Projectname:Notify] %s tagged you"] = "[\$Projectname:Notificatie] %s heeft jou genoemd"; App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; +App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[\$Projectname:Notificatie] %1\$s heeft jou aangestoten"; App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; +App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[\$Projectname:Notificatie] %s heeft jouw bericht getagd"; App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; +App::$strings["[\$Projectname:Notify] Introduction received"] = "[\$Projectname:Notificatie] Connectieverzoek ontvangen"; App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; +App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[\$Projectname:Notificatie] Kanaalvoorstel ontvangen"; App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; App::$strings["Name:"] = "Naam:"; App::$strings["Photo:"] = "Foto:"; App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; +App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Notificatie]"; App::$strings["created a new post"] = "maakte een nieuw bericht aan"; App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Bug Report"] = "Bugrapport"; -App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; -App::$strings["My Chatrooms"] = "Mijn chatkanalen"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Language"] = "Taal"; -App::$strings["Post"] = "Bericht"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Purchase"] = "Aanschaffen"; -App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -App::$strings["Only me"] = "Alleen ik"; -App::$strings["Public"] = "Openbaar"; -App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; -App::$strings["Any account on %s"] = "Iedereen op %s"; -App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; -App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; -App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; -App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; App::$strings["Select"] = "Kies"; App::$strings["Save to Folder"] = "In map opslaan"; @@ -1587,24 +1559,46 @@ App::$strings["Code"] = "Broncode"; App::$strings["Image"] = "Afbeelding"; App::$strings["Insert Link"] = "Link invoegen"; App::$strings["Video"] = "Video"; +App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +App::$strings["Only me"] = "Alleen ik"; +App::$strings["Public"] = "Openbaar"; +App::$strings["Anybody in the \$Projectname network"] = "Iedereen in het \$Projectname-netwerk"; +App::$strings["Any account on %s"] = "Iedereen op %s"; +App::$strings["Any of my connections"] = "Al mijn geaccepteerde connecties"; +App::$strings["Only connections I specifically allow"] = "Alleen connecties die uitdrukkelijk door jou zijn toegestaan"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Al mijn geaccepteerde en nog niet geaccepteerde connecties"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken"; +App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; +App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Bug Report"] = "Bugrapport"; +App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; +App::$strings["My Chatrooms"] = "Mijn chatkanalen"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Language"] = "Taal"; +App::$strings["Post"] = "Bericht"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Purchase"] = "Aanschaffen"; App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["Administrator"] = "Beheerder"; -App::$strings["No Subject"] = "Geen onderwerp"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; @@ -1618,19 +1612,89 @@ App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -App::$strings["(Unknown)"] = "(Onbekend)"; -App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; -App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; -App::$strings["Privacy group: %s"] = "Privacygroep: %s"; -App::$strings["Connection not found."] = "Connectie niet gevonden."; -App::$strings["profile photo"] = "profielfoto"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +App::$strings["a new photo"] = "een nieuwe foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; +App::$strings["Photo Albums"] = "Fotoalbums"; +App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +App::$strings["General Features"] = "Algemene functies"; +App::$strings["Multiple Profiles"] = "Meerdere profielen"; +App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; +App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; +App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +App::$strings["Web Pages"] = "Webpagina's"; +App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe"; +App::$strings["Private Notes"] = "Privé-aantekeningen"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; +App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +App::$strings["Photo Location"] = "Fotolocatie"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; +App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; +App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; +App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; +App::$strings["Advanced Directory Search"] = "Geavanceerd in de kanalengids zoeken"; +App::$strings["Allows creation of complex directory search queries"] = "Gebruik complexe zoekopdrachten in de kanalengids"; +App::$strings["Advanced Theme and Layout Settings"] = "Geavanceerde thema- en lay-out-instellingen"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Maakt het mogelijk dat thema's en pagina-lay-outs preciezer ingesteld kunnen worden "; +App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +App::$strings["Large Photos"] = "Grote foto's"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; +App::$strings["Even More Encryption"] = "Extra encryptie"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; +App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; +App::$strings["Disable Comments"] = "Reacties uitschakelen"; +App::$strings["Provide the option to disable comments for a post"] = "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld"; +App::$strings["Delayed Posting"] = "Berichten uitstellen"; +App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; +App::$strings["Content Expiration"] = "Inhoud laten verlopen"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; +App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +App::$strings["Search by Date"] = "Zoek op datum"; +App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +App::$strings["Privacy Groups"] = "Privacygroepen"; +App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; +App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +App::$strings["Network New Tab"] = "Nieuwe netwerktab"; +App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +App::$strings["Affinity Tool"] = "Verwantschapsfilter"; +App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; +App::$strings["Show friend and connection suggestions"] = "Toon kanaalvoorstellen"; +App::$strings["Connection Filtering"] = "Berichtenfilters"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; +App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +App::$strings["Community Tagging"] = "Taggen door anderen"; +App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; +App::$strings["Post Categories"] = "Categorieën berichten"; +App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +App::$strings["Emoji Reactions"] = "Emoji-reacties"; +App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; +App::$strings["Saved Folders"] = "Bewaarde mappen"; +App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; +App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +App::$strings["Star Posts"] = "Geef berichten een ster"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +App::$strings["Tag Cloud"] = "Tagwolk"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +App::$strings["Premium Channel"] = "Premiumkanaal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +App::$strings["Help:"] = "Hulp:"; +App::$strings["guest:"] = "gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; App::$strings["prev"] = "vorige"; App::$strings["first"] = "eerste"; App::$strings["last"] = "laatste"; @@ -1710,154 +1774,39 @@ App::$strings["Import from cloud files:"] = "Vanuit de cloud importeren:"; App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/maplocatie"; App::$strings["Enter path to website files"] = "Voer de locatie in van de websitebestanden"; App::$strings["Select folder"] = "Kies een map"; -App::$strings["Categories"] = "Categorieën"; -App::$strings["System"] = "Systeem"; -App::$strings["New App"] = "Nieuwe app"; -App::$strings["Suggestions"] = "Voorgestelde kanalen"; -App::$strings["See more..."] = "Meer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -App::$strings["Enter channel address"] = "Vul kanaaladres in"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Aantekeningen"; -App::$strings["Remove term"] = "Verwijder zoekterm"; -App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -App::$strings["add"] = "toevoegen"; -App::$strings["Saved Folders"] = "Bewaarde mappen"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archieven"; -App::$strings["Refresh"] = "Vernieuwen"; -App::$strings["Account settings"] = "Account"; -App::$strings["Channel settings"] = "Kanaal"; -App::$strings["Additional features"] = "Extra functies"; -App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; -App::$strings["Display settings"] = "Weergave"; -App::$strings["Manage locations"] = "Locaties beheren"; -App::$strings["Export channel"] = "Kanaal exporteren"; -App::$strings["Connected apps"] = "Verbonden applicaties"; -App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -App::$strings["Private Mail Menu"] = "Privéberichten"; -App::$strings["Combined View"] = "Gecombineerd postvak"; -App::$strings["Inbox"] = "Postvak IN"; -App::$strings["Outbox"] = "Postvak UIT"; -App::$strings["New Message"] = "Nieuw bericht"; -App::$strings["Conversations"] = "Conversaties"; -App::$strings["Received Messages"] = "Ontvangen berichten"; -App::$strings["Sent Messages"] = "Verzonden berichten"; -App::$strings["No messages."] = "Geen berichten"; -App::$strings["Delete conversation"] = "Verwijder conversatie"; -App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; -App::$strings["Export Calendar"] = "Exporteren"; -App::$strings["Import Calendar"] = "Importeren"; -App::$strings["Chatrooms"] = "Chatkanalen"; -App::$strings["Overview"] = "Overzicht"; -App::$strings["Chat Members"] = "Chatleden"; -App::$strings["Wiki List"] = "Wiki's"; -App::$strings["Wiki Pages"] = "Wikipagina's"; -App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -App::$strings["photo/image"] = "foto/afbeelding"; -App::$strings["Click to show more"] = "Klik voor meer"; -App::$strings["Rating Tools"] = "Beoordelingen"; -App::$strings["Rate Me"] = "Beoordeel mij"; -App::$strings["View Ratings"] = "Bekijk beoordelingen"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; -App::$strings["Project/Site Information"] = "Project- en hub-informatie"; -App::$strings["For Members"] = "Voor leden"; -App::$strings["For Administrators"] = "Voor beheerders"; -App::$strings["For Developers"] = "Voor ontwikkelaars"; -App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; -App::$strings["DB updates"] = "Database-updates"; -App::$strings["Admin"] = "Beheer"; -App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings["New window"] = "Nieuw venster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["Who can see this?"] = "Wie kan dit zien?"; -App::$strings["Custom selection"] = "Handmatige selectie"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien."; -App::$strings["Public Timeline"] = "Openbare tijdlijn"; -App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -App::$strings["Empty name"] = "Ontbrekende naam"; -App::$strings["Name too long"] = "Naam te lang"; -App::$strings["No account identifier"] = "Geen account-identificator"; -App::$strings["Nickname is required."] = "Bijnaam is verplicht"; -App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -App::$strings["Default Profile"] = "Standaardprofiel"; -App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; -App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; -App::$strings["Edit Profile"] = "Profiel bewerken"; -App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -App::$strings["Gender:"] = "Geslacht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepagina:"; -App::$strings["Online Now"] = "Nu online"; -App::$strings["Like this channel"] = "Vind dit kanaal leuk"; -App::$strings["j F, Y"] = "F j Y"; -App::$strings["j F"] = "F j"; -App::$strings["Birthday:"] = "Geboortedatum:"; -App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; -App::$strings["Tags:"] = "Tags:"; -App::$strings["Political Views:"] = "Politieke overtuigingen:"; -App::$strings["Religion:"] = "Religie:"; -App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -App::$strings["Likes:"] = "Houdt van:"; -App::$strings["Dislikes:"] = "Houdt niet van:"; -App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -App::$strings["My other channels:"] = "Mijn andere kanalen"; -App::$strings["Musical interests:"] = "Muzikale interesses:"; -App::$strings["Books, literature:"] = "Boeken, literatuur:"; -App::$strings["Television:"] = "Televisie:"; -App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -App::$strings["Love/Romance:"] = "Liefde/romantiek:"; -App::$strings["Work/employment:"] = "Werk/beroep:"; -App::$strings["School/education:"] = "School/opleiding:"; -App::$strings["Like this thing"] = "Vind dit ding leuk"; -App::$strings["Birthday"] = "Verjaardag of geboortedatum"; -App::$strings["Age: "] = "Leeftijd:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; -App::$strings["never"] = "nooit"; -App::$strings["less than a second ago"] = "minder dan een seconde geleden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "jaar", - 1 => "jaren", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "maand", - 1 => "maanden", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "week", - 1 => "weken", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dagen", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "uur", - 1 => "uren", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuut", - 1 => "minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "seconde", - 1 => "seconden", -); -App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +App::$strings["Export website..."] = "Website exporteren..."; +App::$strings["Export to a zip file"] = "Naar een zipbestand exporteren"; +App::$strings["website.zip"] = "website.zip"; +App::$strings["Enter a name for the zip file."] = "Vul een naam in voor het zipbestand."; +App::$strings["Export to cloud files"] = "Naar de cloud exporteren"; +App::$strings["/path/to/export/folder"] = "/locatie/van/export/map"; +App::$strings["Enter a path to a cloud files destination."] = "Voer de locatie in van de cloudbestemming"; +App::$strings["Specify folder"] = "Selecteer een map"; +App::$strings["Invalid data packet"] = "Datapakket ongeldig"; +App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; +App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; +App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; +App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; +App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["Administrator"] = "Beheerder"; +App::$strings["your registration password"] = "jouw registratiewachtwoord"; +App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; +App::$strings["Account approved."] = "Account goedgekeurd"; +App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; +App::$strings["[no subject]"] = "[geen onderwerp]"; +App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; App::$strings["Frequently"] = "Regelmatig"; App::$strings["Hourly"] = "Elk uur"; App::$strings["Twice daily"] = "Twee keer per dag"; @@ -1920,15 +1869,190 @@ App::$strings["Uncertain"] = "Onzeker"; App::$strings["It's complicated"] = "Het is ingewikkeld"; App::$strings["Don't care"] = "Maakt mij niks uit"; App::$strings["Ask me"] = "Vraag het me"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -App::$strings["a new photo"] = "een nieuwe foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; -App::$strings["Photo Albums"] = "Fotoalbums"; -App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -App::$strings["guest:"] = "gast:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +App::$strings["Empty name"] = "Ontbrekende naam"; +App::$strings["Name too long"] = "Naam te lang"; +App::$strings["No account identifier"] = "Geen account-identificator"; +App::$strings["Nickname is required."] = "Bijnaam is verplicht"; +App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +App::$strings["Default Profile"] = "Standaardprofiel"; +App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; +App::$strings["Edit Profile"] = "Profiel bewerken"; +App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +App::$strings["Gender:"] = "Geslacht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepagina:"; +App::$strings["Online Now"] = "Nu online"; +App::$strings["Like this channel"] = "Vind dit kanaal leuk"; +App::$strings["j F, Y"] = "F j Y"; +App::$strings["j F"] = "F j"; +App::$strings["Birthday:"] = "Geboortedatum:"; +App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; +App::$strings["Tags:"] = "Tags:"; +App::$strings["Political Views:"] = "Politieke overtuigingen:"; +App::$strings["Religion:"] = "Religie:"; +App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +App::$strings["Likes:"] = "Houdt van:"; +App::$strings["Dislikes:"] = "Houdt niet van:"; +App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +App::$strings["My other channels:"] = "Mijn andere kanalen"; +App::$strings["Musical interests:"] = "Muzikale interesses:"; +App::$strings["Books, literature:"] = "Boeken, literatuur:"; +App::$strings["Television:"] = "Televisie:"; +App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +App::$strings["Love/Romance:"] = "Liefde/romantiek:"; +App::$strings["Work/employment:"] = "Werk/beroep:"; +App::$strings["School/education:"] = "School/opleiding:"; +App::$strings["Like this thing"] = "Vind dit ding leuk"; +App::$strings["Who can see this?"] = "Wie kan dit zien?"; +App::$strings["Custom selection"] = "Handmatige selectie"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien."; +App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; +App::$strings["edit"] = "bewerken"; +App::$strings["Edit group"] = "Privacygroep bewerken"; +App::$strings["Add privacy group"] = "Privacygroep toevoegen"; +App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; +App::$strings["add"] = "toevoegen"; +App::$strings["New window"] = "Nieuw venster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["New Page"] = "Nieuwe pagina"; +App::$strings["Title"] = "Titel"; +App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +App::$strings["Logout"] = "Uitloggen"; +App::$strings["End this session"] = "Beëindig deze sessie"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Jouw kanaal"; +App::$strings["Your profile page"] = "Jouw profielpagina"; +App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +App::$strings["Edit your profile"] = "Jouw profiel bewerken"; +App::$strings["Your photos"] = "Jouw foto's"; +App::$strings["Your files"] = "Jouw bestanden"; +App::$strings["Your chatrooms"] = "Jouw chatkanalen"; +App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Your bookmarks"] = "Jouw bladwijzers"; +App::$strings["Your webpages"] = "Jouw webpagina's"; +App::$strings["Your wiki"] = "Jouw wiki"; +App::$strings["Sign in"] = "Inloggen"; +App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; +App::$strings["Remote authentication"] = "Authenticatie op afstand"; +App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Maak een account aan"; +App::$strings["Help and documentation"] = "Hulp en documentatie"; +App::$strings["Applications, utilities, links, games"] = "Apps"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; +App::$strings["Channel Directory"] = "Kanalengids"; +App::$strings["Your grid"] = "Jouw grid"; +App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; +App::$strings["Channel home"] = "Jouw kanaal"; +App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +App::$strings["Notices"] = "Notificaties"; +App::$strings["Notifications"] = "Notificaties"; +App::$strings["See all notifications"] = "Alle notificaties weergeven"; +App::$strings["Private mail"] = "Privéberichten"; +App::$strings["See all private messages"] = "Alle privéberichten weergeven"; +App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +App::$strings["Inbox"] = "Postvak IN"; +App::$strings["Outbox"] = "Postvak UIT"; +App::$strings["New Message"] = "Nieuw bericht"; +App::$strings["Event Calendar"] = "Agenda"; +App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; +App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +App::$strings["Manage Your Channels"] = "Beheer je kanalen"; +App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +App::$strings["Admin"] = "Beheer"; +App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +App::$strings["Loading..."] = "Aan het laden..."; +App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; +App::$strings["Please wait..."] = "Wachten aub..."; +App::$strings["Attachments:"] = "Bijlagen:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; +App::$strings["Delete this item?"] = "Dit item verwijderen?"; +App::$strings["%s show less"] = "%s minder reacties weergeven"; +App::$strings["%s expand"] = "%s uitklappen"; +App::$strings["%s collapse"] = "%s inklappen"; +App::$strings["Password too short"] = "Wachtwoord te kort"; +App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; +App::$strings["everybody"] = "iedereen"; +App::$strings["Secret Passphrase"] = "Geheim wachtwoord"; +App::$strings["Passphrase hint"] = "Wachtwoordhint"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; +App::$strings["close all"] = "Alles sluiten"; +App::$strings["Nothing new here"] = "Niets nieuw hier"; +App::$strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)"; +App::$strings["Describe (optional)"] = "Omschrijving (optioneel)"; +App::$strings["Please enter a link URL"] = "Vul een URL in:"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "geleden"; +App::$strings["from now"] = "vanaf nu"; +App::$strings["less than a minute"] = "minder dan een minuut"; +App::$strings["about a minute"] = "ongeveer een minuut"; +App::$strings["%d minutes"] = "%d minuten"; +App::$strings["about an hour"] = "ongeveer een uur"; +App::$strings["about %d hours"] = "ongeveer %d uren"; +App::$strings["a day"] = "een dag"; +App::$strings["%d days"] = "%d dagen"; +App::$strings["about a month"] = "ongeveer een maand"; +App::$strings["%d months"] = "%d maanden"; +App::$strings["about a year"] = "ongeveer een jaar"; +App::$strings["%d years"] = "%d jaren"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["__ctx:long__ May"] = "mei"; +App::$strings["Jan"] = "jan"; +App::$strings["Feb"] = "feb"; +App::$strings["Mar"] = "mrt"; +App::$strings["Apr"] = "apr"; +App::$strings["__ctx:short__ May"] = "mei"; +App::$strings["Jun"] = "jun"; +App::$strings["Jul"] = "jul"; +App::$strings["Aug"] = "aug"; +App::$strings["Sep"] = "sep"; +App::$strings["Oct"] = "okt"; +App::$strings["Nov"] = "nov"; +App::$strings["Dec"] = "dec"; +App::$strings["Sun"] = "zo"; +App::$strings["Mon"] = "ma"; +App::$strings["Tue"] = "di"; +App::$strings["Wed"] = "wo"; +App::$strings["Thu"] = "do"; +App::$strings["Fri"] = "vr"; +App::$strings["Sat"] = "za"; +App::$strings["__ctx:calendar__ today"] = "vandaag"; +App::$strings["__ctx:calendar__ month"] = "maand"; +App::$strings["__ctx:calendar__ week"] = "week"; +App::$strings["__ctx:calendar__ day"] = "dag"; +App::$strings["__ctx:calendar__ All day"] = "hele dag"; +App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; +App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +App::$strings["Image/photo"] = "Afbeelding/foto"; +App::$strings["Encrypted content"] = "Versleutelde inhoud"; +App::$strings["Install %s element: "] = "Installeer %s-element: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["$1 wrote:"] = "$1 schreef:"; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; @@ -1936,7 +2060,6 @@ App::$strings["Categories:"] = "Categorieën:"; App::$strings["Filed under:"] = "Bewaard onder:"; App::$strings["View in context"] = "In context bekijken"; App::$strings["remove"] = "verwijderen"; -App::$strings["Loading..."] = "Aan het laden..."; App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; App::$strings["View Source"] = "Bron weergeven"; App::$strings["Follow Thread"] = "Conversatie volgen"; @@ -1991,7 +2114,7 @@ App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; App::$strings["About"] = "Over"; App::$strings["Profile Details"] = "Profiel"; App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; -App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Chatrooms"] = "Chatkanalen"; App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; App::$strings["Manage Webpages"] = "Webpagina's beheren"; App::$strings["__ctx:noun__ Attending"] = array( @@ -2018,108 +2141,55 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "onthouding", 1 => "onthoudingen", ); -App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; -App::$strings["edit"] = "bewerken"; -App::$strings["Privacy Groups"] = "Privacygroepen"; -App::$strings["Edit group"] = "Privacygroep bewerken"; -App::$strings["Add privacy group"] = "Privacygroep toevoegen"; -App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; -App::$strings["New Page"] = "Nieuwe pagina"; -App::$strings["Title"] = "Titel"; -App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Start:"; -App::$strings["Finishes:"] = "Einde:"; -App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -App::$strings["Not specified"] = "Niet aangegeven"; -App::$strings["Needs Action"] = "Actie vereist"; -App::$strings["Completed"] = "Voltooid"; -App::$strings["In Process"] = "In behandeling"; -App::$strings["Cancelled"] = "Geannuleerd"; -App::$strings["Attachments:"] = "Bijlagen:"; -App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; -App::$strings["Delete this item?"] = "Dit item verwijderen?"; -App::$strings["%s show less"] = "%s minder reacties weergeven"; -App::$strings["%s expand"] = "%s uitklappen"; -App::$strings["%s collapse"] = "%s inklappen"; -App::$strings["Password too short"] = "Wachtwoord te kort"; -App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; -App::$strings["everybody"] = "iedereen"; -App::$strings["Secret Passphrase"] = "Geheim wachtwoord"; -App::$strings["Passphrase hint"] = "Wachtwoordhint"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; -App::$strings["close all"] = "Alles sluiten"; -App::$strings["Nothing new here"] = "Niets nieuw hier"; -App::$strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)"; -App::$strings["Describe (optional)"] = "Omschrijving (optioneel)"; -App::$strings["Please enter a link URL"] = "Vul een URL in:"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "geleden"; -App::$strings["from now"] = "vanaf nu"; -App::$strings["less than a minute"] = "minder dan een minuut"; -App::$strings["about a minute"] = "ongeveer een minuut"; -App::$strings["%d minutes"] = "%d minuten"; -App::$strings["about an hour"] = "ongeveer een uur"; -App::$strings["about %d hours"] = "ongeveer %d uren"; -App::$strings["a day"] = "een dag"; -App::$strings["%d days"] = "%d dagen"; -App::$strings["about a month"] = "ongeveer een maand"; -App::$strings["%d months"] = "%d maanden"; -App::$strings["about a year"] = "ongeveer een jaar"; -App::$strings["%d years"] = "%d jaren"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "mei"; -App::$strings["Jan"] = "jan"; -App::$strings["Feb"] = "feb"; -App::$strings["Mar"] = "mrt"; -App::$strings["Apr"] = "apr"; -App::$strings["__ctx:short__ May"] = "mei"; -App::$strings["Jun"] = "jun"; -App::$strings["Jul"] = "jul"; -App::$strings["Aug"] = "aug"; -App::$strings["Sep"] = "sep"; -App::$strings["Oct"] = "okt"; -App::$strings["Nov"] = "nov"; -App::$strings["Dec"] = "dec"; -App::$strings["Sun"] = "zo"; -App::$strings["Mon"] = "ma"; -App::$strings["Tue"] = "di"; -App::$strings["Wed"] = "wo"; -App::$strings["Thu"] = "do"; -App::$strings["Fri"] = "vr"; -App::$strings["Sat"] = "za"; -App::$strings["__ctx:calendar__ today"] = "vandaag"; -App::$strings["__ctx:calendar__ month"] = "maand"; -App::$strings["__ctx:calendar__ week"] = "week"; -App::$strings["__ctx:calendar__ day"] = "dag"; -App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; -App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -App::$strings["Item was not found."] = "Item niet gevonden"; -App::$strings["No source file."] = "Geen bronbestand."; -App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -App::$strings["Path not available."] = "Locatie niet beschikbaar."; -App::$strings["Empty pathname"] = "Ontbrekende locatienaam"; -App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of locatie"; -App::$strings["Path not found."] = "Locatie niet gevonden"; -App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -App::$strings["database storage failed."] = "opslag in database mislukt."; -App::$strings["Empty path"] = "Ontbrekende locatie"; +App::$strings["Birthday"] = "Verjaardag of geboortedatum"; +App::$strings["Age: "] = "Leeftijd:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +App::$strings["never"] = "nooit"; +App::$strings["less than a second ago"] = "minder dan een seconde geleden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "jaar", + 1 => "jaren", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "maand", + 1 => "maanden", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "week", + 1 => "weken", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dagen", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "uur", + 1 => "uren", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuut", + 1 => "minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "seconde", + 1 => "seconden", +); +App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +App::$strings["Directory Options"] = "Opties kanalengids"; +App::$strings["Safe Mode"] = "Veilig zoeken"; +App::$strings["Public Forums Only"] = "Alleen openbare forums"; +App::$strings["This Website Only"] = "Alleen deze hub"; +App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +App::$strings["Not specified"] = "Niet aangegeven"; +App::$strings["Needs Action"] = "Actie vereist"; +App::$strings["Completed"] = "Voltooid"; +App::$strings["In Process"] = "In behandeling"; +App::$strings["Cancelled"] = "Geannuleerd"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; +App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; +App::$strings["Unable to import element \""] = "Niet in staat om dit element te importeren: \""; App::$strings["Logged out."] = "Uitgelogd."; App::$strings["Failed authentication"] = "Mislukte authenticatie"; App::$strings["Login failed."] = "Inloggen mislukt."; @@ -2128,78 +2198,19 @@ App::$strings["public profile"] = "openbaar profiel"; App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -App::$strings["Invalid data packet"] = "Datapakket ongeldig"; -App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; -App::$strings["General Features"] = "Algemene functies"; -App::$strings["Content Expiration"] = "Inhoud laten verlopen"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; -App::$strings["Multiple Profiles"] = "Meerdere profielen"; -App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; -App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; -App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -App::$strings["Web Pages"] = "Webpagina's"; -App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe"; -App::$strings["Private Notes"] = "Privé-aantekeningen"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; -App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -App::$strings["Photo Location"] = "Fotolocatie"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; -App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; -App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; -App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; -App::$strings["Expert Mode"] = "Expertmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -App::$strings["Large Photos"] = "Grote foto's"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; -App::$strings["Even More Encryption"] = "Extra encryptie"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; -App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; -App::$strings["Disable Comments"] = "Reacties uitschakelen"; -App::$strings["Provide the option to disable comments for a post"] = "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld"; -App::$strings["Delayed Posting"] = "Berichten uitstellen"; -App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; -App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; -App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -App::$strings["Search by Date"] = "Zoek op datum"; -App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; -App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -App::$strings["Network New Tab"] = "Nieuwe netwerktab"; -App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -App::$strings["Affinity Tool"] = "Verwantschapsfilter"; -App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; -App::$strings["Connection Filtering"] = "Berichtenfilters"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; -App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -App::$strings["Community Tagging"] = "Taggen door anderen"; -App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; -App::$strings["Post Categories"] = "Categorieën berichten"; -App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -App::$strings["Emoji Reactions"] = "Emoji-reacties"; -App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; -App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; -App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -App::$strings["Star Posts"] = "Geef berichten een ster"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -App::$strings["Tag Cloud"] = "Tagwolk"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -App::$strings["Premium Channel"] = "Premiumkanaal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +App::$strings["view full size"] = "volledige grootte tonen"; +App::$strings["No Subject"] = "Geen onderwerp"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Categories"] = "Categorieën"; App::$strings["Tags"] = "Tags"; App::$strings["Keywords"] = "Trefwoorden"; App::$strings["have"] = "heb"; @@ -2208,30 +2219,6 @@ App::$strings["want"] = "wil"; App::$strings["wants"] = "wil"; App::$strings["likes"] = "vindt dit leuk"; App::$strings["dislikes"] = "vindt dit niet leuk"; -App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; -App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; -App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; -App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -App::$strings["your registration password"] = "jouw registratiewachtwoord"; -App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; -App::$strings["Account approved."] = "Account goedgekeurd"; -App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["Image/photo"] = "Afbeelding/foto"; -App::$strings["Encrypted content"] = "Versleutelde inhoud"; -App::$strings["Install %s element: "] = "Installeer %s-element: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["$1 wrote:"] = "$1 schreef:"; App::$strings["%d invitation available"] = array( 0 => "%d uitnodiging beschikbaar", 1 => "%d uitnodigingen beschikbaar", @@ -2243,62 +2230,94 @@ App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morg App::$strings["Random Profile"] = "Willekeurig profiel"; App::$strings["Invite Friends"] = "Vrienden uitnodigen"; App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +App::$strings["Everything"] = "Alles"; App::$strings["%d connection in common"] = array( 0 => "%d gemeenschappelijke connectie", 1 => "%d gemeenschappelijke connecties", ); App::$strings["show more"] = "meer connecties weergeven"; -App::$strings["Directory Options"] = "Opties kanalengids"; -App::$strings["Safe Mode"] = "Veilig zoeken"; -App::$strings["Public Forums Only"] = "Alleen openbare forums"; -App::$strings["This Website Only"] = "Alleen deze hub"; -App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; -App::$strings["[no subject]"] = "[geen onderwerp]"; -App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; -App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -App::$strings["Logout"] = "Uitloggen"; -App::$strings["End this session"] = "Beëindig deze sessie"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Jouw kanaal"; -App::$strings["Your profile page"] = "Jouw profielpagina"; -App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -App::$strings["Edit your profile"] = "Jouw profiel bewerken"; -App::$strings["Your photos"] = "Jouw foto's"; -App::$strings["Your files"] = "Jouw bestanden"; -App::$strings["Your chatrooms"] = "Jouw chatkanalen"; -App::$strings["Your bookmarks"] = "Jouw bladwijzers"; -App::$strings["Your webpages"] = "Jouw webpagina's"; -App::$strings["Your wiki"] = "Jouw wiki"; -App::$strings["Sign in"] = "Inloggen"; -App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; -App::$strings["Remote authentication"] = "Authenticatie op afstand"; -App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Maak een account aan"; -App::$strings["Help and documentation"] = "Hulp en documentatie"; -App::$strings["Applications, utilities, links, games"] = "Apps"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; -App::$strings["Channel Directory"] = "Kanalengids"; -App::$strings["Your grid"] = "Jouw grid"; -App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; -App::$strings["Channel home"] = "Jouw kanaal"; -App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -App::$strings["Notices"] = "Notificaties"; -App::$strings["Notifications"] = "Notificaties"; -App::$strings["See all notifications"] = "Alle notificaties weergeven"; -App::$strings["Private mail"] = "Privéberichten"; -App::$strings["See all private messages"] = "Alle privéberichten weergeven"; -App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -App::$strings["Event Calendar"] = "Agenda"; -App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; -App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -App::$strings["Manage Your Channels"] = "Beheer je kanalen"; -App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; -App::$strings["Please wait..."] = "Wachten aub..."; +App::$strings["System"] = "Systeem"; +App::$strings["New App"] = "Nieuwe app"; +App::$strings["Suggestions"] = "Voorgestelde kanalen"; +App::$strings["See more..."] = "Meer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +App::$strings["Enter channel address"] = "Vul kanaaladres in"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Aantekeningen"; +App::$strings["Remove term"] = "Verwijder zoekterm"; +App::$strings["Archives"] = "Archieven"; +App::$strings["Refresh"] = "Vernieuwen"; +App::$strings["Account settings"] = "Account"; +App::$strings["Channel settings"] = "Kanaal"; +App::$strings["Additional features"] = "Extra functies"; +App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; +App::$strings["Display settings"] = "Weergave"; +App::$strings["Manage locations"] = "Locaties beheren"; +App::$strings["Export channel"] = "Kanaal exporteren"; +App::$strings["Connected apps"] = "Verbonden applicaties"; +App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +App::$strings["Private Mail Menu"] = "Privéberichten"; +App::$strings["Combined View"] = "Gecombineerd postvak"; +App::$strings["Conversations"] = "Conversaties"; +App::$strings["Received Messages"] = "Ontvangen berichten"; +App::$strings["Sent Messages"] = "Verzonden berichten"; +App::$strings["No messages."] = "Geen berichten"; +App::$strings["Delete conversation"] = "Verwijder conversatie"; +App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; +App::$strings["Export Calendar"] = "Exporteren"; +App::$strings["Import Calendar"] = "Importeren"; +App::$strings["Overview"] = "Overzicht"; +App::$strings["Chat Members"] = "Chatleden"; +App::$strings["Wiki List"] = "Wiki's"; +App::$strings["Wiki Pages"] = "Wikipagina's"; +App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +App::$strings["photo/image"] = "foto/afbeelding"; +App::$strings["Click to show more"] = "Klik voor meer"; +App::$strings["Rating Tools"] = "Beoordelingen"; +App::$strings["Rate Me"] = "Beoordeel mij"; +App::$strings["View Ratings"] = "Bekijk beoordelingen"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Taken"; +App::$strings["Documentation"] = "Documentatie"; +App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; +App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; +App::$strings["DB updates"] = "Database-updates"; +App::$strings["Plugin Features"] = "Plugin-opties"; +App::$strings["Public Timeline"] = "Openbare tijdlijn"; +App::$strings[" by "] = " door "; +App::$strings[" on "] = " op "; +App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; +App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; +App::$strings["(Unknown)"] = "(Onbekend)"; +App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; +App::$strings["Privacy group: %s"] = "Privacygroep: %s"; +App::$strings["Connection not found."] = "Connectie niet gevonden."; +App::$strings["profile photo"] = "profielfoto"; +App::$strings["Item was not found."] = "Item niet gevonden"; +App::$strings["No source file."] = "Geen bronbestand."; +App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +App::$strings["Path not available."] = "Locatie niet beschikbaar."; +App::$strings["Empty pathname"] = "Ontbrekende locatienaam"; +App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of locatie"; +App::$strings["Path not found."] = "Locatie niet gevonden"; +App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +App::$strings["database storage failed."] = "opslag in database mislukt."; +App::$strings["Empty path"] = "Ontbrekende locatie"; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; App::$strings["Narrow navbar"] = "Smalle navigatiebalk"; -- cgit v1.2.3 From 050c0752f9d9c1bb7710a27b3732a37e91f179d6 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 12 Oct 2016 10:59:19 +0200 Subject: fix connected time not shown on ajax loaded connections --- view/js/main.js | 1 + view/js/mod_connections.js | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 0239fc1f8..5435dfd87 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -854,6 +854,7 @@ function pageUpdate() { scroll_next = false; updatePageItems(update_mode,data); $("#page-spinner").spin(false); + $(".autotime").timeago(); in_progress = false; }); } diff --git a/view/js/mod_connections.js b/view/js/mod_connections.js index 112204a5a..68add4eed 100644 --- a/view/js/mod_connections.js +++ b/view/js/mod_connections.js @@ -4,13 +4,13 @@ $(document).ready(function() { }); $("#contacts-search").keyup(function(event){ - if(event.keyCode == 13){ - $("#contacts-search").click(); - } + if(event.keyCode == 13){ + $("#contacts-search").click(); + } }); $(".autocomplete-w1 .selected").keyup(function(event){ - if(event.keyCode == 13){ - $("#contacts-search").click(); - } + if(event.keyCode == 13){ + $("#contacts-search").click(); + } }); -- cgit v1.2.3
    Export?Block TitleBlock NameType
    Block NameBlock TitleType
    +
    +
    - {{$block.title}}
    + {{$block.name}}
    +
    - {{$block.name}}
    + {{$block.title}}
    +
    {{$block.mimetype}}
    -- cgit v1.2.3 From 4f62d7a78f63e4bae136f52d70d0af906d997b78 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 21 Aug 2016 15:43:03 +0200 Subject: move jotnets to jot and some cleanup (mostly whitespace) --- view/css/conversation.css | 14 ++--- view/js/acl.js | 12 ++-- view/tpl/acl_selector.tpl | 13 +--- view/tpl/jot.tpl | 157 ++++++++++++++++++++++++++++------------------ 4 files changed, 107 insertions(+), 89 deletions(-) (limited to 'view') diff --git a/view/css/conversation.css b/view/css/conversation.css index 5af0c55e7..6c5171545 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -1,6 +1,6 @@ /* jot */ -.jothidden input { +.jothidden input[type="text"] { border: 0px; margin: 0px; height: 39px; @@ -70,6 +70,10 @@ margin-bottom: 30px; } +#profile-jot-plugin-wrapper { + margin-top: 10px; +} + #profile-rotator-wrapper { float: left; } @@ -78,14 +82,6 @@ padding: 15px 0px 0px 15px; } -.profile-jot-net { - float: left; - margin-right: 10px; - margin-top: 5px; - margin-bottom: 5px; - padding: 5px; -} - /* conversation */ .thread-wrapper.toplevel_item { diff --git a/view/js/acl.js b/view/js/acl.js index eb7b7f523..c1685e137 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -100,13 +100,6 @@ ACL.prototype.on_submit = function() { $(that.deny_cid).each(function(i,v) { that.form_id.append(""); }); - - var formfields = $('.profile-jot-net input').serializeArray(); - - $.each(formfields, function(i, field) { - that.form_id.append(""); - }); - }; ACL.prototype.search = function() { @@ -283,6 +276,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } @@ -295,6 +289,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -306,6 +301,7 @@ ACL.prototype.update_view = function(value) { /* jot acl */ $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -317,10 +313,12 @@ ACL.prototype.update_view = function(value) { /* jot acl */ if(that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'custom') { $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } else { $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } } diff --git a/view/tpl/acl_selector.tpl b/view/tpl/acl_selector.tpl index 70ef4469a..dbdbd6a56 100755 --- a/view/tpl/acl_selector.tpl +++ b/view/tpl/acl_selector.tpl @@ -27,16 +27,6 @@ {{/if}} - {{if $jotnets}} - -
    - {{$jotnets}} -
    -
    - {{/if}} -
    @@ -47,13 +37,14 @@
    -
    + + -
    +
    + {{if $jotplugins}}
    {{$jotplugins}}
    + {{/if}} + {{if $jotnets}} + + {{/if}}
    @@ -197,70 +222,78 @@ {{if $feature_expire}} {{/if}} {{if $feature_future}} - {{/if}} {{if $embedPhotos}} {{/if}} -- cgit v1.2.3 From a3e0e67953da3450fcc82c22b87b7b677454ccb8 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 21 Aug 2016 19:40:11 -0700 Subject: remove references to tinymce which were causing console errors --- view/tpl/msg-header.tpl | 53 +++--------------------------------------------- view/tpl/profed_head.tpl | 36 +------------------------------- 2 files changed, 4 insertions(+), 85 deletions(-) (limited to 'view') diff --git a/view/tpl/msg-header.tpl b/view/tpl/msg-header.tpl index 3407e152c..013e1cfdc 100755 --- a/view/tpl/msg-header.tpl +++ b/view/tpl/msg-header.tpl @@ -1,52 +1,9 @@ - + - - - + -- cgit v1.2.3 From 38ca3bac405b339367b513037428f796c433819a Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 22 Aug 2016 17:41:41 -0700 Subject: optional server role compatibility checks for plugins --- view/tpl/admin_plugins_details.tpl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'view') diff --git a/view/tpl/admin_plugins_details.tpl b/view/tpl/admin_plugins_details.tpl index b8cc72a04..309fc9569 100755 --- a/view/tpl/admin_plugins_details.tpl +++ b/view/tpl/admin_plugins_details.tpl @@ -24,6 +24,9 @@ {{if $info.minphpversion}}

    {{$str_minphpversion}}{{$info.minphpversion}}

    {{/if}} + {{if $info.serverroles}} +

    {{$str_serverroles}}{{$info.serverroles}}

    + {{/if}} {{if $info.requires}}

    {{$str_requires}}{{$info.requires}}

    {{/if}} -- cgit v1.2.3 From 305e0538d293ff4ad72f30b11998ae3b06efa4ea Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Tue, 23 Aug 2016 06:55:26 -0400 Subject: Website export to cloud files works. Created new recursive copy function in attach.php. --- view/tpl/website_portation_tools.tpl | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/website_portation_tools.tpl b/view/tpl/website_portation_tools.tpl index 2f68a7393..10468b64e 100644 --- a/view/tpl/website_portation_tools.tpl +++ b/view/tpl/website_portation_tools.tpl @@ -35,7 +35,7 @@ -- cgit v1.2.3 From a5035dee74da87a529b2de938ce10bb8bb8d8346 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 23 Aug 2016 19:13:46 -0700 Subject: several cover photo widget enhancements: - allow a click anywhere on the page to cause the photo to autoscroll - provide a logic flag to autoscroll only once - allow manual scroll back to see the cover photo afterward (tricky to handle the nav menu here) - on scroll back, the nav remains fixed at the top and the top pixels of the cover photo are covered (this was an acceptable tradeoff to gain the ability to see the photo again without causing unpredictable behaviour of the nav) - some positioning details in small screen width mode caused jot to be off screen due to insufficient top padding; a manual padding was also added as something still wasn't right even after adding the nav height - very minor nit: if screen size is reduced below 755 and then upsized again, the cover photo will not be redisplayed --- view/tpl/cover_photo_widget.tpl | 27 +++++++++++++++++++-------- 1 file changed, 19 insertions(+), 8 deletions(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 4e210a300..4dfaf415b 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -1,9 +1,12 @@ -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From 206054678ba70fae851c40bf79871ad9a042ca2f Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 23 Aug 2016 20:10:56 -0700 Subject: cover photo: adjustments to display the entire photo on manual scrollback (padding added for nav height) --- view/tpl/cover_photo_widget.tpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 4dfaf415b..91f304ccb 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -29,6 +29,7 @@ $('main').css('opacity', 1); $('aside').css('padding-top', aside_padding_top + 'px'); $('section').css('padding-top', section_padding_top + 'px'); + $('#cover-photo').css('padding-top', $('nav').outerHeight()); $(window).scrollTop($(window).scrollTop() - $('#cover-photo').height()) $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); $('main').css('margin-top', ''); @@ -54,7 +55,7 @@ if(coverSlid) return; $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - $('#cover-photo').css({ 'position' : 'relative' , 'top' : 0 }); + $('#cover-photo').css({ 'position' : 'relative' , 'top' : $('nav').outerHeight() }); $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); $('aside').css('padding-top', aside_padding_top + 'px'); $('section').css('padding-top', section_padding_top + 'px'); -- cgit v1.2.3 From 238621ee926e43625a8b15fb9faf996fb45149b3 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 23 Aug 2016 23:00:24 -0700 Subject: allow changing the server role - as well as configuring any of the three options during installation --- view/tpl/admin_site.tpl | 1 + view/tpl/install_settings.tpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 6b8729ee6..d810e69f7 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -41,6 +41,7 @@ {{include file="field_input.tpl" field=$sitename}} + {{include file="field_select.tpl" field=$server_role}} {{include file="field_textarea.tpl" field=$banner}} {{include file="field_textarea.tpl" field=$admininfo}} {{include file="field_select.tpl" field=$language}} diff --git a/view/tpl/install_settings.tpl b/view/tpl/install_settings.tpl index 5ecd3243b..f7a0108a8 100755 --- a/view/tpl/install_settings.tpl +++ b/view/tpl/install_settings.tpl @@ -19,7 +19,7 @@ {{include file="field_input.tpl" field=$adminmail}} {{include file="field_input.tpl" field=$siteurl}} -{{include file="field_checkbox.tpl" field=$advanced}} +{{include file="field_select.tpl" field=$server_role}} {{include file="field_select_grouped.tpl" field=$timezone}} -- cgit v1.2.3 From 4c840d70a494dae62a856ed91f9039eb16bc51ee Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 12:56:45 -0700 Subject: revert cover photo changes --- view/tpl/cover_photo_widget.tpl | 28 ++++++++-------------------- 1 file changed, 8 insertions(+), 20 deletions(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 91f304ccb..4e210a300 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -1,12 +1,9 @@ -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From aa0384bcece9ebf0a014c5387a91bb3f0d564301 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:39:30 +0200 Subject: Revert "revert cover photo changes" This reverts commit 4c840d70a494dae62a856ed91f9039eb16bc51ee. --- view/tpl/cover_photo_widget.tpl | 28 ++++++++++++++++++++-------- 1 file changed, 20 insertions(+), 8 deletions(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 4e210a300..91f304ccb 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -1,9 +1,12 @@ -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From 798b80e486547e4bd1e99d8513f00f4288b14635 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:40:15 +0200 Subject: do not remove cover photo after scrolling it up. mimik an scroll edge if scrolling up again before scrolling into the cover photo again. --- view/tpl/cover_photo_widget.tpl | 63 +++++++++++++++++++++++++---------------- 1 file changed, 39 insertions(+), 24 deletions(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 91f304ccb..884dd0615 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -5,36 +5,54 @@ $(document).ready(function() { - $('body').on('click',slideUpCover); - aside_padding_top = parseInt($('aside').css('padding-top')); section_padding_top = parseInt($('section').css('padding-top')); + $(document).on('click', slideUpCover); + if($('#cover-photo').length && $(window).width() > 755) { - $('.navbar-fixed-top').css('position', 'relative'); - $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); - $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); - $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); - $('main').css('opacity', 0.5); - $('header').hide(); + if($(window).scrollTop() <= $('#cover-photo').height()) { + $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); + $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); + $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); + $('.navbar-fixed-top').css('position', 'relative'); + $('main').css('opacity', 0); + $('header').hide(); + } } else { $('#cover-photo').remove(); + coverSlid = true; } }); $(window).scroll(function () { - if((! coverSlid) && $('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) { + if($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() >= $('#cover-photo').height()) { $('header').fadeIn(); $('main').css('opacity', 1); $('aside').css('padding-top', aside_padding_top + 'px'); $('section').css('padding-top', section_padding_top + 'px'); - $('#cover-photo').css('padding-top', $('nav').outerHeight()); - $(window).scrollTop($(window).scrollTop() - $('#cover-photo').height()) - $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); + $('.navbar-fixed-top').css('position', ''); $('main').css('margin-top', ''); coverSlid = true; } + else if ($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() <= $('#cover-photo').height()){ + if(coverSlid) { + $(window).scrollTop(Math.ceil($('#cover-photo').height())); + setTimeout(function(){ coverSlid = false; }, 1000); + } + else { + if($(window).scrollTop() <= $('#cover-photo').height()) { + $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); + $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); + $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); + + $('.navbar-fixed-top').css('position', 'relative'); + $('main').css('opacity', 0); + $('header').hide(); + } + } + } if($('#cover-photo').length) { $('main').css('opacity', ($(window).scrollTop()/$('#cover-photo').height()).toFixed(1)); } @@ -42,29 +60,26 @@ $(window).resize(function () { if($('#cover-photo').length && $(window).width() < 755) { - $('main').css('opacity', 1); - $('aside').css('padding-top', aside_padding_top + $('nav').outerHeight() + 20 + 'px'); - $('section').css('padding-top', section_padding_top + $('nav').outerHeight() + 20 + 'px'); - $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0 }); $('#cover-photo').remove(); + $('main').css('opacity', 1); + $('aside').css('padding-top', aside_padding_top + 'px'); + $('section').css('padding-top', section_padding_top + 'px'); + $('.navbar-fixed-top').css('position', ''); + coverSlid = true; } }); function slideUpCover() { - if(coverSlid) + if(coverSlid) { return; + } $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - $('#cover-photo').css({ 'position' : 'relative' , 'top' : $('nav').outerHeight() }); - $('.navbar-fixed-top').css({ 'position' : 'fixed', 'top' : 0}); - $('aside').css('padding-top', aside_padding_top + 'px'); - $('section').css('padding-top', section_padding_top + 'px'); - $('main').css('margin-top', ''); - coverSlid = true; + return false; } -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From a78025255235b5aa34bc90e990e9accf91db320d Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:47:33 +0200 Subject: remove the onclick action --- view/tpl/cover_photo_widget.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 884dd0615..59626cf32 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -79,7 +79,7 @@ } -
    +
    {{$photo_html}}
    -- cgit v1.2.3 From 5c32f42fe986d2312cfbee9f8c52375af6a602b8 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 24 Aug 2016 22:58:02 +0200 Subject: do not return false since it could prevent clicking also when not appropriate. --- view/tpl/cover_photo_widget.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 59626cf32..93e3f057e 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -75,7 +75,7 @@ return; } $('html, body').animate({scrollTop: Math.ceil($('#cover-photo').height()) + 'px' }); - return false; + return; } -- cgit v1.2.3 From a81da0ec345fbc6c7334b6b0d5ae11a19a30918b Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 24 Aug 2016 20:06:44 -0700 Subject: off by one pixel --- view/tpl/cover_photo_widget.tpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/tpl/cover_photo_widget.tpl b/view/tpl/cover_photo_widget.tpl index 93e3f057e..2b47270c9 100755 --- a/view/tpl/cover_photo_widget.tpl +++ b/view/tpl/cover_photo_widget.tpl @@ -11,7 +11,7 @@ $(document).on('click', slideUpCover); if($('#cover-photo').length && $(window).width() > 755) { - if($(window).scrollTop() <= $('#cover-photo').height()) { + if($(window).scrollTop() < $('#cover-photo').height()) { $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); @@ -36,13 +36,13 @@ $('main').css('margin-top', ''); coverSlid = true; } - else if ($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() <= $('#cover-photo').height()){ + else if ($('#cover-photo').length && $(window).width() > 755 && $(window).scrollTop() < $('#cover-photo').height()){ if(coverSlid) { $(window).scrollTop(Math.ceil($('#cover-photo').height())); setTimeout(function(){ coverSlid = false; }, 1000); } else { - if($(window).scrollTop() <= $('#cover-photo').height()) { + if($(window).scrollTop() < $('#cover-photo').height()) { $('main').css('margin-top', - $('nav').outerHeight(true) + 'px'); $('aside').css('padding-top', aside_padding_top - $('nav').outerHeight() + 'px'); $('section').css('padding-top', section_padding_top - $('nav').outerHeight() + 'px'); -- cgit v1.2.3 From 002c20391391bf6086d8a4fb7726c7d33058f7cb Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 26 Aug 2016 19:51:39 +0200 Subject: contact-block needs a class clear div at the end to not mess with following widgets and whitespace --- view/tpl/contact_block.tpl | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) (limited to 'view') diff --git a/view/tpl/contact_block.tpl b/view/tpl/contact_block.tpl index 6a29abaef..580a8a41c 100755 --- a/view/tpl/contact_block.tpl +++ b/view/tpl/contact_block.tpl @@ -1,13 +1,14 @@
    -

    {{$contacts}}

    -{{if $micropro}} - {{if $viewconnections}} - {{$viewconnections}} - {{/if}} -
    - {{foreach $micropro as $m}} - {{$m}} - {{/foreach}} -
    -{{/if}} +

    {{$contacts}}

    + {{if $micropro}} + {{if $viewconnections}} + {{$viewconnections}} + {{/if}} +
    + {{foreach $micropro as $m}} + {{$m}} + {{/foreach}} +
    + {{/if}}
    +
    -- cgit v1.2.3 From 689f232243c11dc4211d1daed353032ced0e7229 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sun, 28 Aug 2016 19:36:14 -0700 Subject: move allowed email domains to admin->security page --- view/tpl/admin_security.tpl | 3 +++ view/tpl/admin_site.tpl | 2 -- 2 files changed, 3 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/tpl/admin_security.tpl b/view/tpl/admin_security.tpl index 721b5f38f..409e9fc7d 100755 --- a/view/tpl/admin_security.tpl +++ b/view/tpl/admin_security.tpl @@ -11,6 +11,9 @@ {{include file="field_checkbox.tpl" field=$content_security}} {{include file="field_checkbox.tpl" field=$embed_sslonly}} + {{include file="field_textarea.tpl" field=$allowed_email}} + {{include file="field_textarea.tpl" field=$not_allowed_email}} + {{include file="field_textarea.tpl" field=$whitelisted_sites}} {{include file="field_textarea.tpl" field=$blacklisted_sites}} diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index d810e69f7..56e6087d6 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -62,8 +62,6 @@ {{include file="field_select.tpl" field=$register_policy}} {{include file="field_checkbox.tpl" field=$invite_only}} {{include file="field_select.tpl" field=$access_policy}} - {{include file="field_textarea.tpl" field=$allowed_email}} - {{include file="field_textarea.tpl" field=$not_allowed_email}}

    {{$upload}}

    -- cgit v1.2.3 From 4050ff7c1f5a1acd34f58af3d41d12be49331ac7 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 29 Aug 2016 12:48:16 +0200 Subject: make lock switching actually work with multiple acl forms --- view/js/acl.js | 12 ++++++------ view/tpl/cloud_actionspanel.tpl | 1 - 2 files changed, 6 insertions(+), 7 deletions(-) (limited to 'view') diff --git a/view/js/acl.js b/view/js/acl.js index c1685e137..c11997c43 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -68,7 +68,7 @@ function ACL(backend_url) { } -ACL.prototype.get_form_data = function(event) { +ACL.prototype.get_form_data = function(event) { form_id = $(this).data('form_id'); that.form_id = $('#' + form_id); @@ -275,7 +275,7 @@ ACL.prototype.update_view = function(value) { that.update_select('public'); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); @@ -288,7 +288,7 @@ ACL.prototype.update_view = function(value) { that.update_select(that.selected_id); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -300,7 +300,7 @@ ACL.prototype.update_view = function(value) { that.update_select('onlyme'); /* jot acl */ - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } @@ -312,12 +312,12 @@ ACL.prototype.update_view = function(value) { /* jot acl */ if(that.allow_gid.length === 0 && that.allow_cid.length === 0 && that.deny_gid.length === 0 && that.deny_cid.length === 0 && value === 'custom') { - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-lock').addClass('fa-unlock'); $('#dbtn-jotnets').show(); $('.profile-jot-net input').attr('disabled', false); } else { - $('#jot-perms-icon, #dialog-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); + $('#jot-perms-icon, #dialog-perms-icon, #' + that.form_id[0].id + ' .jot-perms-icon').removeClass('fa-unlock').addClass('fa-lock'); $('#dbtn-jotnets').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); } diff --git a/view/tpl/cloud_actionspanel.tpl b/view/tpl/cloud_actionspanel.tpl index b851e391e..36edc3b44 100644 --- a/view/tpl/cloud_actionspanel.tpl +++ b/view/tpl/cloud_actionspanel.tpl @@ -1,7 +1,6 @@
    - -- cgit v1.2.3 From 603e64154d01ebcca81febccc720f707b99730ba Mon Sep 17 00:00:00 2001 From: Wave72 Date: Tue, 30 Aug 2016 10:29:59 +0200 Subject: Updated Italian strings --- view/it/hmessages.po | 14418 +++++++++++++++++++++++++------------------------ view/it/hstrings.php | 2369 ++++---- 2 files changed, 8409 insertions(+), 8378 deletions(-) (limited to 'view') diff --git a/view/it/hmessages.po b/view/it/hmessages.po index da04ba81e..4daed02fe 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-12 00:02-0700\n" -"PO-Revision-Date: 2016-08-16 08:26+0000\n" +"POT-Creation-Date: 2016-08-26 00:02-0700\n" +"PO-Revision-Date: 2016-08-30 08:22+0000\n" "Last-Translator: Paolo Wave \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -90,9 +90,10 @@ msgstr "Speciale - Pagina per fan" msgid "Special - Group Repository" msgstr "Speciale - Repository di gruppo" -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../include/permissions.php:943 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:943 +#: ../../include/selectors.php:140 msgid "Other" msgstr "Altro" @@ -196,14 +197,14 @@ msgstr "Appuntamenti inviati" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1036 -#: ../../include/widgets.php:1613 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "Sconosciuto" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:95 -#: ../../include/conversation.php:1659 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 +#: ../../include/nav.php:95 msgid "Files" msgstr "Archivio file" @@ -216,7 +217,7 @@ msgid "Shared" msgstr "Condiviso" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Webpages.php:216 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 #: ../../Zotlabs/Module/New_channel.php:142 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" @@ -230,10 +231,9 @@ msgstr "Crea" msgid "Upload" msgstr "Carica" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:250 -#: ../../Zotlabs/Module/Settings.php:662 ../../Zotlabs/Module/Settings.php:688 -#: ../../Zotlabs/Module/Admin.php:1223 -#: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 +#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Nome" @@ -251,33 +251,34 @@ msgstr "Dimensione" msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Webpages.php:217 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Editpost.php:84 ../../Zotlabs/Module/Settings.php:722 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Lib/Apps.php:341 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/menu.php:113 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:959 -#: ../../include/channel.php:963 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 +#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Webpages.php:219 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 #: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Connedit.php:610 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Settings.php:723 -#: ../../Zotlabs/Module/Admin.php:1039 ../../Zotlabs/Module/Admin.php:1213 -#: ../../Zotlabs/Module/Admin.php:2114 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 +#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "Elimina" @@ -308,57 +309,57 @@ msgid "Drop files here to immediately upload" msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Webpages.php:95 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Item.php:213 -#: ../../Zotlabs/Module/Item.php:221 ../../Zotlabs/Module/Item.php:1071 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:226 -#: ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 #: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Pdledit.php:26 ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Connedit.php:398 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Editpost.php:17 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Settings.php:642 -#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Network.php:15 -#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Api.php:12 ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3448 ../../include/photos.php:27 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/items.php:3477 ../../include/photos.php:27 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 @@ -372,15 +373,15 @@ msgstr "Permesso negato." msgid "Not Found" msgstr "Non disponibile" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 -#: ../../Zotlabs/Module/Help.php:97 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:119 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Pagina non trovata." #: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Like.php:283 -#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:114 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 #: ../../include/items.php:384 msgid "Permission denied" @@ -398,10 +399,11 @@ msgid "Welcome %s. Remote authentication successful." msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." #: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 #: ../../include/channel.php:859 @@ -420,2272 +422,2754 @@ msgstr "Assente" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "nessun risultato" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "inviato" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aggiornato" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Setup.php:267 ../../Zotlabs/Module/Events.php:676 -#: ../../Zotlabs/Module/Events.php:685 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Successivo" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opzioni" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Reinvia" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Sì" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sito web:" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../Zotlabs/Module/Setup.php:312 ../../Zotlabs/Module/Setup.php:353 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 #: ../../Zotlabs/Module/Pdledit.php:66 #: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Connedit.php:786 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 +#: ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:679 -#: ../../Zotlabs/Module/Photos.php:1058 ../../Zotlabs/Module/Photos.php:1098 -#: ../../Zotlabs/Module/Photos.php:1216 ../../Zotlabs/Module/Settings.php:660 -#: ../../Zotlabs/Module/Settings.php:773 ../../Zotlabs/Module/Settings.php:864 -#: ../../Zotlabs/Module/Settings.php:890 ../../Zotlabs/Module/Settings.php:913 -#: ../../Zotlabs/Module/Settings.php:1001 -#: ../../Zotlabs/Module/Settings.php:1187 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 +#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 #: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mitem.php:243 -#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Thing.php:320 -#: ../../Zotlabs/Module/Thing.php:370 ../../Zotlabs/Module/Rate.php:170 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:22 -#: ../../include/widgets.php:763 ../../view/theme/redbasic/php/config.php:99 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 +#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 msgid "Submit" msgstr "Salva" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Impostazioni del hub" - -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Vuoi attivare le funzionalità avanzate di $Projectname?" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Setup.php:347 +#: ../../Zotlabs/Module/Pubsites.php:27 msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato." +"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 "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../Zotlabs/Module/Setup.php:405 -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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Valuta" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Guarda" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format +#: ../../Zotlabs/Module/Register.php:55 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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." - -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Setup.php:475 +#: ../../Zotlabs/Module/Register.php:131 msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Setup.php:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Setup.php:552 -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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." -#: ../../Zotlabs/Module/Setup.php:553 -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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Setup.php:555 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 +msgid "Registration" +msgstr "Registrazione" -#: ../../Zotlabs/Module/Setup.php:572 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Setup.php:573 -#, 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 "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registrati" -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Register.php:266 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." -#: ../../Zotlabs/Module/Setup.php:575 -#, 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 bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Setup.php:594 -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 Red top " -"level folder" -msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Setup.php:631 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../Zotlabs/Module/Setup.php:632 -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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1665 ../../include/nav.php:94 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Setup.php:633 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Annulla" -#: ../../Zotlabs/Module/Setup.php:634 -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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../Zotlabs/Module/Setup.php:635 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Page.php:131 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Setup.php:641 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 +#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Salva" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Setup.php:659 -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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Setup.php:683 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Setup.php:721 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Messaggio non valido" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "nessun risultato" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloccati" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorati" -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Nascosti" -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviati" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Novità" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 +msgid "All" +msgstr "Tutti" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import Webpage Elements" -msgstr "Importa gli elementi della pagina web" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Webpages.php:54 -msgid "Import selected" -msgstr "Importa i selezionati" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:108 ../../include/conversation.php:1705 -msgid "Webpages" -msgstr "Pagine web" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Webpages.php:218 ../../Zotlabs/Module/Photos.php:1078 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1220 -msgid "Share" -msgstr "Condividi" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../Zotlabs/Module/Webpages.php:223 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Webpages.php:224 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1199 -msgid "Preview" -msgstr "Anteprima" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Network" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 +msgid "Status" +msgstr "Stato" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "In contatto" -#: ../../Zotlabs/Module/Webpages.php:227 -msgid "Page Title" -msgstr "Titolo della pagina" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Webpages.php:228 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Approve" +msgstr "Approva" -#: ../../Zotlabs/Module/Webpages.php:229 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignora il contatto" -#: ../../Zotlabs/Module/Webpages.php:258 -msgid "Invalid file type." -msgstr "Tipo di file non valido." +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignora" -#: ../../Zotlabs/Module/Webpages.php:270 -msgid "Error opening zip file" -msgstr "Errore nell'apertura del file zip" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Webpages.php:281 -msgid "Invalid folder path." -msgstr "La cartella indicata non è valida." +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" +msgstr "Contatti" -#: ../../Zotlabs/Module/Webpages.php:308 -msgid "No webpage elements detected." -msgstr "Nella pagina web non sono presenti elementi." +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 +#: ../../include/text.php:937 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:169 +msgid "Search" +msgstr "Cerca" -#: ../../Zotlabs/Module/Webpages.php:382 -msgid "Import complete." -msgstr "Importazione completata." +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Ricerca tra i contatti" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" - -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Copertine del canale" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Luogo:" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 +msgid "female" +msgstr "femmina" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 -#: ../../include/conversation.php:960 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -msgid "Connect" -msgstr "Aggiungi" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 +msgid "male" +msgstr "maschio" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "Copertina del canale" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Carica una copertina" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../Zotlabs/Module/Setup.php:191 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../Zotlabs/Module/Setup.php:198 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profilo-" +#: ../../Zotlabs/Module/Setup.php:207 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 +#: ../../Zotlabs/Module/Setup.php:733 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../Zotlabs/Module/Setup.php:267 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." +#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Successivo" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." +#: ../../Zotlabs/Module/Setup.php:272 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Stato sentimentale" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partner affettivo" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Lavoro/impiego" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religione" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" +msgstr "Port del database" -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Home page" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" +msgstr "Password database" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessi" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" +msgstr "Nome database" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" +msgstr "Tipo database" -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Connedit.php:693 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Settings.php:651 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Api.php:85 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Connedit.php:411 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Events.php:462 -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Settings.php:651 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Api.php:84 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1717 -msgid "Yes" -msgstr "Sì" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +msgid "Basic/Minimal Social Networking" +msgstr "Social network basilare" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +msgid "Standard Configuration (default)" +msgstr "Configurazione standard (predefinita)" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +msgid "Professional" +msgstr "Professionale" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestione del profilo" +#: ../../Zotlabs/Module/Setup.php:343 +msgid "Site settings" +msgstr "Impostazioni del hub" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" +#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +msgid "Server Configuration/Role" +msgstr "Configurazione del server" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" +msgstr "Versione PHP" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../Zotlabs/Module/Setup.php:415 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../Zotlabs/Module/Setup.php:416 +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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1546 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personali" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relazione" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Altro" +#: ../../Zotlabs/Module/Setup.php:434 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" +#: ../../Zotlabs/Module/Setup.php:438 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Setup.php:456 +#, 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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Stato civile" +#: ../../Zotlabs/Module/Setup.php:461 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Setup.php:463 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nome del profilo" +#: ../../Zotlabs/Module/Setup.php:486 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." +#: ../../Zotlabs/Module/Setup.php:490 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Il tuo nome completo" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titolo/descrizione" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Località" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Regione/stato" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "CAP" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "xml PHP module" +msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Nazione" +#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Con chi (se possibile)" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "dal (data)" +#: ../../Zotlabs/Module/Setup.php:517 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." +#: ../../Zotlabs/Module/Setup.php:525 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" +#: ../../Zotlabs/Module/Setup.php:529 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Città dove vivo" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Orientamento religioso" - -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../Zotlabs/Module/Setup.php:563 +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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../Zotlabs/Module/Setup.php:564 +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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisione" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../Zotlabs/Module/Setup.php:569 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amore" +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Scuola/educazione" +#: ../../Zotlabs/Module/Setup.php:584 +#, 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 "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contatti e social network" +#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../Zotlabs/Module/Setup.php:586 +#, 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 bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../Zotlabs/Module/Setup.php:589 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:90 -#: ../../include/channel.php:959 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" +#: ../../Zotlabs/Module/Setup.php:605 +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 Red top " +"level folder" +msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" -#: ../../Zotlabs/Module/Profiles.php:778 ../../Zotlabs/Module/Chat.php:255 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Setup.php:609 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Rpost.php:135 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Setup.php:642 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" -#: ../../Zotlabs/Module/Item.php:1242 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." +#: ../../Zotlabs/Module/Setup.php:661 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" -#: ../../Zotlabs/Module/Item.php:1249 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." +#: ../../Zotlabs/Module/Setup.php:670 +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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." +#: ../../Zotlabs/Module/Setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:94 ../../include/conversation.php:1652 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Setup.php:731 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:661 ../../Zotlabs/Module/Settings.php:687 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1279 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Età:" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Chat.php:25 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Contatti in comune:" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1555 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:632 ../../include/widgets.php:497 -msgid "All" -msgstr "Tutti" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Network" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Stato" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "In contatto" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Approva" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignora il contatto" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Connedit.php:586 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:190 -msgid "Connections" -msgstr "Contatti" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:274 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/nav.php:169 -msgid "Search" -msgstr "Cerca" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Copertine del canale" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 -msgid "female" -msgstr "femmina" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menù" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4284 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Elimina" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 -msgid "male" -msgstr "maschio" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creato" + +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modificato" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." + +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" + +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" + +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" + +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" + +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" + +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" + +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obbligatorio" + +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" + +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Ricerca nella guida" + +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Guida:" + +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:163 +msgid "Help" +msgstr "Guida" + +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Layout aggiornato." + +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" + +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Layout non trovato." + +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nome del modulo:" + +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Guida al layout" + +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" + +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visibile a:" + +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "File non trovato." + +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" + +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permessi" + +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" + +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Condividi questo file" + +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" + +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" + +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "Il nome è obbligatorio" + +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4286 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Aggiorna" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Settings.php:138 #, php-format -msgid "%1$s updated their %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "This channel is limited to %d tokens" +msgstr "Questo canale è limitato a %d token" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1710 -msgid "cover photo" -msgstr "Copertina del canale" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Nome e password sono obbligatori." -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto non disponibile." +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token salvato." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../Zotlabs/Module/Settings.php:315 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Carica una copertina" +#: ../../Zotlabs/Module/Settings.php:324 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1138 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." +msgstr "Verifica della password fallita." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." +#: ../../Zotlabs/Module/Settings.php:368 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 +#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 +#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 +msgid "Friends" +msgstr "Amici" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" +msgstr "Aggiungi una app" + +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" +msgstr "Nome dell'applicazione" + +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" + +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" +msgstr "Redirect" + +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" + +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" +msgstr "Url icona" + +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facoltativo" + +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." +msgstr "Applicazione non trovata." + +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" +msgstr "App connesse" + +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" +msgstr "La client key inizia con" + +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" +msgstr "Nessun nome" + +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" + +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" + +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" +msgstr "Impostazioni dei componenti aggiuntivi" + +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" +msgstr "Il tuo account" + +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" +msgstr "Password attuale" + +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" +msgstr "Nuova password" + +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" + +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" + +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" +msgstr "Indirizzo email:" + +#: ../../Zotlabs/Module/Settings.php:797 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Elimina l'account" + +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" + +#: ../../Zotlabs/Module/Settings.php:832 +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." +msgstr "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." + +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" + +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" + +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" +msgstr "Nome utente" + +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" +msgstr "Password" + +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" +msgstr "Con scadenza (aaaa-mm-gg)" + +#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Permessi concessi a te" + +#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Permessi che concedo" + +#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "derivato" + +#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Permessi individuali" + +#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." + +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "Off" +msgstr "Off" + +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "On" +msgstr "On" + +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" +msgstr "Impostazioni del connettore" + +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" + +#: ../../Zotlabs/Module/Settings.php:984 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" + +#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 +msgid "mobile" +msgstr "mobile" + +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" +msgstr "Aspetto" + +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" +msgstr "Impostazioni del tema" + +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" + +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" + +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" + +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" +msgstr "Scegli uno schema" + +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" + +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" + +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "il canale" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Oggetto" +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "la foto" +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "il messaggio di stato" +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/event.php:951 ../../include/conversation.php:123 -msgid "event" -msgstr "l'evento" +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" +msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non è d'accordo" +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non si esprime" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Comando completato." +#: ../../Zotlabs/Module/Settings.php:1176 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Grazie." +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Chat.php:207 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../include/conversation.php:1147 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1244 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" +msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" +msgstr "Impostazioni di privacy avanzate" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Settings.php:1260 +#, php-format +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" +msgstr "Permessi predefiniti per postare e pubblicare" -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Guida:" +#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:163 -msgid "Help" -msgstr "Guida" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" +msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" -#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:40 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Chat.php:234 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permessi" +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" +msgstr "Novità nei canali" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" +msgstr "Consigliato" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" +msgstr "Prossimi eventi" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" +msgstr "Eventi di oggi" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" +msgstr "Registrazioni" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "ha come nuovo contatto" +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:443 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../Zotlabs/Module/Connedit.php:463 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" -#: ../../Zotlabs/Module/Connedit.php:478 ../../Zotlabs/Module/Connedit.php:487 -#: ../../Zotlabs/Module/Connedit.php:496 ../../Zotlabs/Module/Connedit.php:505 -#: ../../Zotlabs/Module/Connedit.php:518 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../Zotlabs/Module/Connedit.php:541 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../Zotlabs/Module/Connedit.php:557 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:88 ../../include/conversation.php:958 -msgid "View Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" -#: ../../Zotlabs/Module/Connedit.php:560 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Sblocca" +#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Connedit.php:578 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." +msgstr "Elimina questo canale." -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" +msgstr "La settimana inizia il lunedì" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Archive" -msgstr "Archivia" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3931 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide" -msgstr "Nascondi" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" -#: ../../Zotlabs/Module/Connedit.php:605 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." -#: ../../Zotlabs/Module/Connedit.php:606 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:613 -msgid "Delete this connection" -msgstr "Elimina questo contatto" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:493 -msgid "Me" -msgstr "Me" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Membri" -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:494 -msgid "Family" -msgstr "Famiglia" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../Zotlabs/Module/Connedit.php:630 ../../Zotlabs/Module/Settings.php:407 -#: ../../Zotlabs/Module/Settings.php:411 ../../Zotlabs/Module/Settings.php:412 -#: ../../Zotlabs/Module/Settings.php:415 ../../Zotlabs/Module/Settings.php:426 -#: ../../include/selectors.php:123 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/widgets.php:495 -msgid "Friends" -msgstr "Amici" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Connedit.php:631 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Approve this connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "Set Affinity" -msgstr "Scegli l'affinità" +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../Zotlabs/Module/Connedit.php:701 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " -#: ../../Zotlabs/Module/Connedit.php:704 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "none" -msgstr "--" +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/widgets.php:623 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../Zotlabs/Module/Connedit.php:757 ../../include/items.php:3935 +#: ../../Zotlabs/Module/Photos.php:619 #, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" - -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Connection requests will be approved without your interaction" -msgstr "Le richieste di entrare in contatto saranno approvate in automatico" +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Connedit.php:760 -msgid "This connection's primary address is" -msgstr "Indirizzo primario di questo canale" +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Available locations:" -msgstr "Indirizzi disponibili" +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Connedit.php:765 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Connection Tools" -msgstr "Gestione dei contatti" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Connedit.php:769 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Connedit.php:771 ../../Zotlabs/Module/Connedit.php:776 -msgid "Optionally explain your rating" -msgstr "Commento facoltativo" +#: ../../Zotlabs/Module/Photos.php:745 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Connedit.php:773 -msgid "Custom Filter" -msgstr "Filtro personalizzato" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Connedit.php:774 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono queste parole chiave" +#: ../../Zotlabs/Module/Photos.php:770 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Connedit.php:774 ../../Zotlabs/Module/Connedit.php:775 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Do not import posts with this text" -msgstr "Non importare i post con queste parole chiave" +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Connedit.php:777 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../Zotlabs/Module/Connedit.php:782 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Connedit.php:785 ../../Zotlabs/Module/Settings.php:860 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Photos.php:932 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Connedit.php:787 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Connedit.php:789 ../../Zotlabs/Module/Settings.php:857 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Connedit.php:790 ../../Zotlabs/Module/Settings.php:858 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Precendente" -#: ../../Zotlabs/Module/Connedit.php:792 ../../Zotlabs/Module/Settings.php:862 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Photos.php:955 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Connedit.php:793 ../../Zotlabs/Module/Settings.php:863 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Rimuovi" -#: ../../Zotlabs/Module/Connedit.php:794 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Connedit.php:795 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali del gruppo" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Condividi" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Membri" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "Anteprima" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1756 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1780 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1783 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" #: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 msgid "Nothing to import." @@ -2820,6 +3304,11 @@ msgstr "Nessun indirizzo trovato." msgid "Manage Channel Locations" msgstr "Modifica gli indirizzi del canale" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Indirizzo" + #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" msgstr "Primario" @@ -2846,5567 +3335,5358 @@ msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più fu msgid "Hub not found." msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chat non trovata" - -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Lascia la chat" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Elimina questa chat" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Non sono presente" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Sono online" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Aggiungi questa chat ai segnalibri" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "il canale" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1182 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Oggetto" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:723 -#: ../../include/conversation.php:1276 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "Nuova chat" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "la foto" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "Nome chat" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "il messaggio di stato" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "Scadenza dei messaggi della chat (minuti)" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "l'evento" -#: ../../Zotlabs/Module/Chat.php:249 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 #, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" - -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "Nessuna chat disponibile" - -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "Scadenza" - -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." - -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." - -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." - -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." - -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." - -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" -msgstr "Titolo dell'evento" - -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" -msgstr "Modifica la categoria" - -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" -msgstr "Categoria" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" - -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" -msgstr "Data e ora di inizio" - -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" -msgstr "La data e l'ora di fine non sono necessarie" - -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" -msgstr "Data e ora di fine" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Events.php:463 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" -msgstr "Modifica la descrizione" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" -msgstr "Modifica il luogo" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1248 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" -msgstr "Opzioni avanzate" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Comando completato." -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Grazie." -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" -msgstr "Elimina l'evento" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" -msgstr "Link al sito d'origine" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crea nuova" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:210 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crea un evento" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" -msgstr "Precendente" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Esporta" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" -msgstr "Mese" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Settimana" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Giorno" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Oggi" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Evento eliminato" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1232 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1271 -msgid "Set expiration date" -msgstr "Data di scadenza" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1721 -msgid "Password Reset" -msgstr "Reimposta la password" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 +#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 +#: ../../Zotlabs/Module/Admin.php:1745 +msgid "Administration" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Admin.php:377 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 +msgid "Default" +msgstr "Predefinito" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../Zotlabs/Module/Admin.php:416 +msgid "experimental" +msgstr "sperimentale" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Admin.php:418 +msgid "unsupported" +msgstr "non supportato" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Admin.php:464 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../Zotlabs/Module/Admin.php:470 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../Zotlabs/Module/Admin.php:471 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" +#: ../../Zotlabs/Module/Admin.php:472 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../Zotlabs/Module/Admin.php:473 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 +msgid "Site" +msgstr "Sito" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "File upload" +msgstr "Caricamento file" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Policies" +msgstr "Politiche" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Site name" +msgstr "Nome del sito" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../Zotlabs/Module/Admin.php:515 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Module/Admin.php:515 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../Zotlabs/Module/Photos.php:151 +#: ../../Zotlabs/Module/Admin.php:517 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../Zotlabs/Module/Admin.php:517 msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:520 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Invitation only" +msgstr "Solo con invito" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Module/Admin.php:524 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../Zotlabs/Module/Admin.php:528 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Admin.php:531 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Admin.php:533 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Admin.php:535 +msgid "Login on Homepage" +msgstr "Login sulla homepage" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Admin.php:535 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Admin.php:536 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" + +#: ../../Zotlabs/Module/Admin.php:536 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" + +#: ../../Zotlabs/Module/Admin.php:538 +msgid "Directory Server URL" +msgstr "URL del directory server" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Module/Admin.php:538 +msgid "Default directory server" +msgstr "Directory server predefinito" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Admin.php:540 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" +#: ../../Zotlabs/Module/Admin.php:541 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../Zotlabs/Module/Admin.php:542 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" +#: ../../Zotlabs/Module/Admin.php:542 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Admin.php:543 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Admin.php:543 +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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Admin.php:544 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Admin.php:544 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Admin.php:545 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" +#: ../../Zotlabs/Module/Admin.php:545 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" +#: ../../Zotlabs/Module/Admin.php:546 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Admin.php:546 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1743 -msgid "View all" -msgstr "Vedi tutto" +#: ../../Zotlabs/Module/Admin.php:547 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1767 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" +#: ../../Zotlabs/Module/Admin.php:547 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1770 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" +#: ../../Zotlabs/Module/Admin.php:691 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Admin.php:699 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Admin.php:716 +msgid "No server found" +msgstr "Server non trovato" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "for channel" +msgstr "per il canale" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "on server" +msgstr "sul server" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:283 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Admin.php:725 +msgid "Server" +msgstr "Server" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Admin.php:759 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../Zotlabs/Module/Admin.php:763 +msgid "" +"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/
    " -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../Zotlabs/Module/Admin.php:764 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:686 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Aggiorna" +#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 +msgid "Security" +msgstr "Sicurezza" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" +#: ../../Zotlabs/Module/Admin.php:771 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." +#: ../../Zotlabs/Module/Admin.php:771 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token salvato." +#: ../../Zotlabs/Module/Admin.php:772 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:290 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../Zotlabs/Module/Admin.php:773 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:293 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../Zotlabs/Module/Admin.php:774 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" -#: ../../Zotlabs/Module/Settings.php:302 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." +#: ../../Zotlabs/Module/Admin.php:774 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" -#: ../../Zotlabs/Module/Settings.php:319 -msgid "Password verification failed." -msgstr "Verifica della password fallita." +#: ../../Zotlabs/Module/Admin.php:775 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" -#: ../../Zotlabs/Module/Settings.php:326 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:776 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" -#: ../../Zotlabs/Module/Settings.php:330 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:776 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" -#: ../../Zotlabs/Module/Settings.php:344 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../Zotlabs/Module/Admin.php:777 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" -#: ../../Zotlabs/Module/Settings.php:346 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../Zotlabs/Module/Admin.php:778 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." -#: ../../Zotlabs/Module/Settings.php:595 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../Zotlabs/Module/Admin.php:779 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" -#: ../../Zotlabs/Module/Settings.php:659 ../../Zotlabs/Module/Settings.php:685 -#: ../../Zotlabs/Module/Settings.php:721 -msgid "Add application" -msgstr "Aggiungi una app" +#: ../../Zotlabs/Module/Admin.php:779 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." -#: ../../Zotlabs/Module/Settings.php:662 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../Zotlabs/Module/Admin.php:780 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:689 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin.php:798 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../Zotlabs/Module/Settings.php:663 ../../Zotlabs/Module/Settings.php:664 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" +#: ../../Zotlabs/Module/Admin.php:808 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Settings.php:690 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin.php:811 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:665 ../../Zotlabs/Module/Settings.php:691 -msgid "Redirect" -msgstr "Redirect" +#: ../../Zotlabs/Module/Admin.php:815 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:665 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" +#: ../../Zotlabs/Module/Admin.php:818 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Settings.php:692 -msgid "Icon url" -msgstr "Url icona" +#: ../../Zotlabs/Module/Admin.php:834 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../Zotlabs/Module/Settings.php:666 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facoltativo" +#: ../../Zotlabs/Module/Admin.php:838 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../Zotlabs/Module/Settings.php:677 -msgid "Application not found." -msgstr "Applicazione non trovata." +#: ../../Zotlabs/Module/Admin.php:840 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../Zotlabs/Module/Settings.php:720 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../Zotlabs/Module/Admin.php:841 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../Zotlabs/Module/Settings.php:724 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../Zotlabs/Module/Admin.php:872 +msgid "Queue Statistics" +msgstr "Statistiche della coda" -#: ../../Zotlabs/Module/Settings.php:725 -msgid "No name" -msgstr "Nessun nome" +#: ../../Zotlabs/Module/Admin.php:873 +msgid "Total Entries" +msgstr "Totale" -#: ../../Zotlabs/Module/Settings.php:726 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../Zotlabs/Module/Admin.php:874 +msgid "Priority" +msgstr "Priorità" -#: ../../Zotlabs/Module/Settings.php:739 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../Zotlabs/Module/Admin.php:875 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../Zotlabs/Module/Admin.php:876 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" -#: ../../Zotlabs/Module/Settings.php:769 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../Zotlabs/Module/Admin.php:877 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" -#: ../../Zotlabs/Module/Settings.php:770 -msgid "Current Password" -msgstr "Password attuale" +#: ../../Zotlabs/Module/Admin.php:878 +msgid "Last known contact" +msgstr "Ultimo scambio dati" -#: ../../Zotlabs/Module/Settings.php:771 -msgid "Enter New Password" -msgstr "Nuova password" +#: ../../Zotlabs/Module/Admin.php:914 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" +#: ../../Zotlabs/Module/Admin.php:921 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../Zotlabs/Module/Settings.php:772 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" +#: ../../Zotlabs/Module/Admin.php:957 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../Zotlabs/Module/Settings.php:774 -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../Zotlabs/Module/Admin.php:968 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../Zotlabs/Module/Settings.php:775 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../Zotlabs/Module/Admin.php:976 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:776 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" +#: ../../Zotlabs/Module/Admin.php:984 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:810 -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." -msgstr "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1491 +msgid "Accounts" +msgstr "Account" -#: ../../Zotlabs/Module/Settings.php:812 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 +msgid "select all" +msgstr "seleziona tutti" -#: ../../Zotlabs/Module/Settings.php:847 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" +#: ../../Zotlabs/Module/Admin.php:1047 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Login Name" -msgstr "Nome utente" +#: ../../Zotlabs/Module/Admin.php:1048 +msgid "Request date" +msgstr "Data richiesta" -#: ../../Zotlabs/Module/Settings.php:855 -msgid "Login Password" -msgstr "Password" +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "Email" -#: ../../Zotlabs/Module/Settings.php:856 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Deny" +msgstr "Nega" -#: ../../Zotlabs/Module/Settings.php:881 ../../Zotlabs/Module/Admin.php:677 -#: ../../Zotlabs/Module/Admin.php:678 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blocca" -#: ../../Zotlabs/Module/Settings.php:888 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Sblocca" -#: ../../Zotlabs/Module/Settings.php:912 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:1062 +msgid "Register date" +msgstr "Data registrazione" -#: ../../Zotlabs/Module/Settings.php:954 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" +#: ../../Zotlabs/Module/Admin.php:1063 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../Zotlabs/Module/Settings.php:957 ../../Zotlabs/Module/Admin.php:410 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Admin.php:1064 +msgid "Expires" +msgstr "Con scadenza" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../Zotlabs/Module/Admin.php:1065 +msgid "Service Class" +msgstr "Classe dell'account" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Theme Settings" -msgstr "Impostazioni del tema" +#: ../../Zotlabs/Module/Admin.php:1067 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:998 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" +#: ../../Zotlabs/Module/Admin.php:1068 +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 "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:999 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../Zotlabs/Module/Settings.php:1005 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../Zotlabs/Module/Admin.php:1113 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1006 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../Zotlabs/Module/Admin.php:1119 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" +#: ../../Zotlabs/Module/Admin.php:1139 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../Zotlabs/Module/Settings.php:1007 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" +#: ../../Zotlabs/Module/Admin.php:1149 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../Zotlabs/Module/Settings.php:1008 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1009 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1010 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 +msgid "Channels" +msgstr "Canali" -#: ../../Zotlabs/Module/Settings.php:1011 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "Censor" +msgstr "Applica censura" -#: ../../Zotlabs/Module/Settings.php:1012 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" +#: ../../Zotlabs/Module/Admin.php:1228 +msgid "Uncensor" +msgstr "Rimuovi censura" -#: ../../Zotlabs/Module/Settings.php:1013 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../Zotlabs/Module/Admin.php:1229 +msgid "Allow Code" +msgstr "Permetti codice" -#: ../../Zotlabs/Module/Settings.php:1016 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../Zotlabs/Module/Admin.php:1230 +msgid "Disallow Code" +msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Settings.php:1016 -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 +msgid "Channel" +msgstr "Canale" -#: ../../Zotlabs/Module/Settings.php:1017 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../Zotlabs/Module/Admin.php:1235 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Settings.php:1018 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../Zotlabs/Module/Admin.php:1239 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1018 -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" +#: ../../Zotlabs/Module/Admin.php:1240 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1019 -msgid "Grid page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" +#: ../../Zotlabs/Module/Admin.php:1297 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../Zotlabs/Module/Admin.php:1301 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 +msgid "Disable" +msgstr "Disattiva" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 +msgid "Enable" +msgstr "Attiva" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 +#: ../../include/widgets.php:1495 +msgid "Plugins" +msgstr "Plugin" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" +#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:212 +msgid "Settings" +msgstr "Impostazioni" -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 +msgid "Author: " +msgstr "Autore:" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../Zotlabs/Module/Settings.php:1129 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" +#: ../../Zotlabs/Module/Admin.php:1354 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" +#: ../../Zotlabs/Module/Admin.php:1355 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../Zotlabs/Module/Admin.php:1356 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Channel Settings" -msgstr "Impostazioni del canale" +#: ../../Zotlabs/Module/Admin.php:1357 +msgid "Compatible Server Roles: " +msgstr "Ruoli compatibili per questo server" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../Zotlabs/Module/Admin.php:1358 +msgid "Requires: " +msgstr "Necessita di:" -#: ../../Zotlabs/Module/Settings.php:1193 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../Zotlabs/Module/Admin.php:1408 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../Zotlabs/Module/Admin.php:1409 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" +#: ../../Zotlabs/Module/Admin.php:1410 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../Zotlabs/Module/Admin.php:1410 +msgid "(optional)" +msgstr "(facoltativo)" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../Zotlabs/Module/Admin.php:1411 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" +#: ../../Zotlabs/Module/Admin.php:1418 +msgid "Install new repo" +msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installa" -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" +#: ../../Zotlabs/Module/Admin.php:1441 +msgid "Manage Repos" +msgstr "Gestisci i repository" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" +#: ../../Zotlabs/Module/Admin.php:1442 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" -#: ../../Zotlabs/Module/Settings.php:1206 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostrare sul tuo profilo quando sei online" +#: ../../Zotlabs/Module/Admin.php:1443 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Settings.php:1208 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../Zotlabs/Module/Admin.php:1450 +msgid "Switch branch" +msgstr "Cambia branch" -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +#: ../../Zotlabs/Module/Admin.php:1564 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" +#: ../../Zotlabs/Module/Admin.php:1620 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../Zotlabs/Module/Settings.php:1211 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 +#: ../../include/widgets.php:1496 +msgid "Themes" +msgstr "Temi" -#: ../../Zotlabs/Module/Settings.php:1212 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../Zotlabs/Module/Admin.php:1666 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" +#: ../../Zotlabs/Module/Admin.php:1667 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../Zotlabs/Module/Admin.php:1691 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Advanced Privacy Settings" -msgstr "Impostazioni di privacy avanzate" +#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 +msgid "Logs" +msgstr "Log" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" +#: ../../Zotlabs/Module/Admin.php:1748 +msgid "Clear" +msgstr "Pulisci" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." +#: ../../Zotlabs/Module/Admin.php:1754 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Settings.php:1218 -#, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " +#: ../../Zotlabs/Module/Admin.php:1755 +msgid "Log file" +msgstr "File di log" -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." +#: ../../Zotlabs/Module/Admin.php:1755 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Relativo alla directory base del server web. Deve essere scrivibile." -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." +#: ../../Zotlabs/Module/Admin.php:1756 +msgid "Log level" +msgstr "Livello di log" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../Zotlabs/Module/Admin.php:2042 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../Zotlabs/Module/Settings.php:1219 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Default Post and Publish Permissions" -msgstr "Permessi predefiniti per postare e pubblicare" +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../Zotlabs/Module/Settings.php:1221 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Use my default audience setting for the type of object published" -msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../Zotlabs/Module/Settings.php:1229 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../Zotlabs/Module/Settings.php:1235 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../Zotlabs/Module/Settings.php:1235 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../Zotlabs/Module/Admin.php:2056 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../Zotlabs/Module/Admin.php:2062 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Settings.php:1240 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 +msgid "Profile Fields" +msgstr "Campi del profilo" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../Zotlabs/Module/Admin.php:2121 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" -#: ../../Zotlabs/Module/Settings.php:1242 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../Zotlabs/Module/Admin.php:2122 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../Zotlabs/Module/Admin.php:2122 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" -#: ../../Zotlabs/Module/Settings.php:1244 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../Zotlabs/Module/Admin.php:2124 +msgid "All available fields" +msgstr "Tutti i campi disponibili" -#: ../../Zotlabs/Module/Settings.php:1245 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../Zotlabs/Module/Admin.php:2125 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../Zotlabs/Module/Admin.php:2129 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/Settings.php:1247 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../Zotlabs/Module/Settings.php:1249 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../Zotlabs/Module/Settings.php:1251 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../Zotlabs/Module/Settings.php:1257 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../Zotlabs/Module/Settings.php:1258 -#: ../../Zotlabs/Module/Settings.php:1263 -#: ../../Zotlabs/Module/Settings.php:1264 -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Recommended" -msgstr "Consigliato" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../Zotlabs/Module/Settings.php:1259 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../Zotlabs/Module/Settings.php:1263 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Umore" -#: ../../Zotlabs/Module/Settings.php:1266 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../Zotlabs/Module/Settings.php:1267 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profilo-" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../Zotlabs/Module/Settings.php:1272 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../Zotlabs/Module/Settings.php:1275 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../Zotlabs/Module/Settings.php:1276 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../Zotlabs/Module/Settings.php:1277 -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "%Y - current year, %m - current month" -msgstr "%Y - anno corrente, %m - mese corrente" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../Zotlabs/Module/Settings.php:1278 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Settings.php:1281 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Lavoro/impiego" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "Remove this channel." -msgstr "Elimina questo canale." +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religione" -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "Start calendar week on monday" -msgstr "La settimana inizia il lunedì" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Home page" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interessi" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestione del profilo" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Amministrazione" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1559 +msgid "Personal" +msgstr "Personali" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relazione" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2888 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Stato civile" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nome del profilo" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Il tuo nome completo" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titolo/descrizione" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1490 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Località" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:248 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Regione/stato" -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "CAP" -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Nazione" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "dal (data)" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." -#: ../../Zotlabs/Module/Admin.php:502 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Indirizzo home page" -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Città dove vivo" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Orientamento religioso" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisione" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Amore" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Scuola/educazione" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contatti e social network" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:90 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" +msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" +msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1718 ../../include/nav.php:108 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" +msgstr "Titolo della pagina" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." +msgstr "Tipo di file non valido." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" +msgstr "Errore nell'apertura del file zip" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." +msgstr "La cartella indicata non è valida." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." +msgstr "Nella pagina web non sono presenti elementi." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." +msgstr "Importazione completata." -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Le voci del calendario sono state importate." -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Non sono state trovate voci del calendario." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento non trovato." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Titolo dell'evento" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Modifica la categoria" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Categoria" -#: ../../Zotlabs/Module/Admin.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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Data e ora di inizio" -#: ../../Zotlabs/Module/Admin.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 di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "La data e l'ora di fine non sono necessarie" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Data e ora di fine" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Events.php:463 msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" - -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Modifica la descrizione" -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Modifica il luogo" -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Server non trovato" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "per il canale" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Opzioni avanzate" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "sul server" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Elimina l'evento" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" +msgstr "Link al sito d'origine" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"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/
    " +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "calendario" -#: ../../Zotlabs/Module/Admin.php:751 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1493 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crea un evento" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Esporta" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Mese" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Settimana" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Giorno" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Oggi" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento eliminato" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Import.php:548 +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 "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Admin.php:795 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Admin.php:802 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../Zotlabs/Module/Admin.php:805 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crea un canale" -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Ultimo scambio dati" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Poke" -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1491 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "Email" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visibile a" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" -#: ../../Zotlabs/Module/Admin.php:1054 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Pconfig.php:49 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 "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" - -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +"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 "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Post e commenti" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo post" -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +msgid "Version %s" +msgstr "Versione %s" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1492 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carico medio attuale:" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1631 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problematiche note su $projectname" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Amministratori del sito" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" +msgstr "Block" -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titolo del block" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" +msgstr "Layout" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1495 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:212 -#: ../../include/widgets.php:647 -msgid "Settings" -msgstr "Impostazioni" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" +msgstr "Importa" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1496 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "A:" -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1239 +msgid "Attach file" +msgstr "Allega file" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Invia" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1284 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1289 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ha come nuovo contatto" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1498 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:955 ../../include/nav.php:88 +msgid "View Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivia" -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Non nascondere" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Nascondi" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" +msgstr "Me" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" +msgstr "Famiglia" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:964 -msgid "Poke" -msgstr "Poke" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "--" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Non trovato" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/features.php:57 ../../include/nav.php:110 -#: ../../include/conversation.php:1715 ../../include/conversation.php:1718 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../Zotlabs/Module/Wiki.php:100 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" -msgstr "Ripristina" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" -msgstr "Nome della tua nuova pagina wiki:" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" -msgstr "Nome della tua nuova pagina:" +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "Nuovo nome:" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1151 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1235 -msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" +msgstr "App" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1237 -#: ../../include/conversation.php:1278 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1187 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Canale premium - configurazione" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1188 -msgid "Choose an album" -msgstr "Scegli un album" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1189 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1190 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1191 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1192 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versione %s" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL del segnalibro" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Accedi" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Effettua l'accesso." -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" - -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" -msgstr "Block" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Elimina questo account" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "ATTENZIONE:" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" -msgstr "Layout" +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "Questo comando è definitivo e non può essere annullato!" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descrizione del layout" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Scarica il file PDL" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1351 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." -#: ../../Zotlabs/Module/Pubsites.php:25 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Questo canale sarà completamente eliminato dalla rete." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:963 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Uexport.php:57 +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 "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../Zotlabs/Module/Profile_photo.php:186 +#: ../../Zotlabs/Module/Uexport.php:59 msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" -msgstr "Importa" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Risultati ricerca: %s" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Non esistono restrizioni su questa classe di account." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra l'oggetto" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "non trovato." -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Scegli un profilo" -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Pubblica un'attività" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi può vedere il profilo scelto" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sì" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../Zotlabs/Module/Register.php:253 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 -#: ../../boot.php:1695 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../Zotlabs/Module/Register.php:266 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se ti sarà mostrata la pagina di login, segui le istruzioni sull'email per continuare." +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sito web:" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:167 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "App" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "File: condivisi con me" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NOVITÀ" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Elimina tutti i file" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Elimina questo file" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Non trovato" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Confronto tra revisioni" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Ripristina" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Nome della tua nuova pagina wiki:" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Nome della tua nuova pagina:" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Nuovo nome:" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Inserisci un'immagine dall'album foto" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 +msgid "Embed an image from your albums" +msgstr "Inserisci un'immagine dai tuoi album" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 +#: ../../include/conversation.php:1291 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Scegli le immagini da inserire" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Scegli un album" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Scegli un altro album..." -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Errore nell'ottenere l'elenco degli album" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Errore nell'ottenere il link alla foto" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Errore nell'ottenere l'album" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Sorgenti del canale" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Canale premium - configurazione" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Salva segnalibro" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL del segnalibro" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "Canale sconosciuto" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "il post" -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "il commento" -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Cerca risultati con:" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../Zotlabs/Module/Network.php:216 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../Zotlabs/Module/Network.php:225 -msgid "Privacy group: " -msgstr "Gruppo di canali:" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../Zotlabs/Module/Network.php:251 -msgid "Invalid connection." -msgstr "Contatto non valido." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Effettua l'accesso." +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canale aggiunto." -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATTENZIONE:" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Elenco contatti" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Sorgente" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nuova chat" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Nome chat" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Esporta il canale" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Scadenza dei messaggi della chat (minuti)" -#: ../../Zotlabs/Module/Uexport.php:57 -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 "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Scadenza" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Esporta i tuoi post a partire dall'anno scelto." +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Ricerca canale" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Chat senza nome" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Il nome della chat è duplicato" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Il nome della chat non è valido." -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Chat non trovata." -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "La chat è al completo" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +msgid "$Projectname Notification" +msgstr "Notifica $Projectname" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra l'oggetto" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +msgid "$projectname" +msgstr "$projectname" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "non trovato." +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +msgid "Thank You," +msgstr "Grazie," -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#, php-format +msgid "%s Administrator" +msgstr "L'amministratore di %s" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" -msgstr "Scegli un profilo" +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" -msgstr "Pubblica un'attività" +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla] Nuovo messaggio su %s" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi può vedere il profilo scelto" +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto (facoltativo)" +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" +#: ../../Zotlabs/Lib/Enotify.php:108 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" +#: ../../Zotlabs/Lib/Enotify.php:164 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" -#: ../../Zotlabs/Module/Search.php:216 +#: ../../Zotlabs/Lib/Enotify.php:172 #, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" -#: ../../Zotlabs/Module/Search.php:218 +#: ../../Zotlabs/Lib/Enotify.php:181 #, php-format -msgid "Search results for: %s" -msgstr "Risultati ricerca: %s" +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." +#: ../../Zotlabs/Lib/Enotify.php:192 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Lib/Enotify.php:193 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." + +#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 +#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 +#: ../../Zotlabs/Lib/Enotify.php:269 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Visita %s per leggere o commentare la conversazione." -#: ../../Zotlabs/Module/Rate.php:163 +#: ../../Zotlabs/Lib/Enotify.php:202 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Lib/Enotify.php:204 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" +#: ../../Zotlabs/Lib/Enotify.php:206 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Autenticazione fallita." +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla] %s ti ha taggato" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" +#: ../../Zotlabs/Lib/Enotify.php:231 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s ti ha taggato su %3$s" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Accedi" +#: ../../Zotlabs/Lib/Enotify.php:244 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla] %1$s ti ha mandato un poke" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "File: condivisi con me" +#: ../../Zotlabs/Lib/Enotify.php:245 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NOVITÀ" +#: ../../Zotlabs/Lib/Enotify.php:246 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Elimina tutti i file" +#: ../../Zotlabs/Lib/Enotify.php:262 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla] %s ha taggato il tuo post" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Elimina questo file" +#: ../../Zotlabs/Lib/Enotify.php:263 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canale aggiunto." +#: ../../Zotlabs/Lib/Enotify.php:264 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../Zotlabs/Lib/Enotify.php:276 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla] Hai una richiesta di amicizia" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." +#: ../../Zotlabs/Lib/Enotify.php:277 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." +#: ../../Zotlabs/Lib/Enotify.php:278 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:74 -#: ../../include/widgets.php:639 -msgid "Channel Sources" -msgstr "Sorgenti del canale" +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla] Ti è stato suggerito un amico" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Nome:" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla]" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "Ha creato un nuovo post" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato il post di %s" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Amministrazione sito" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Bug Report" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Vedi i segnalibri" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Le mie aree chat" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s non segue più %3$s di %2$s" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Firefox Share" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnostica remota" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Suggerisci canali" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1738 +msgid "Login" +msgstr "Accedi" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "il commento" +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +msgid "Grid" +msgstr "Rete" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +msgid "Channel Home" +msgstr "Bacheca del canale" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 +#: ../../include/conversation.php:1685 ../../include/nav.php:205 +msgid "Events" +msgstr "Eventi" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +msgid "Directory" +msgstr "Elenchi pubblici dei canali" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +msgid "Mail" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Diagnostica" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Suggerisci" -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Canale casuale" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Invita" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +msgid "Features" +msgstr "Funzionalità" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Lingua" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Post" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Acquista" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Visibile secondo le impostazioni predefinite" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Solo io" -#: ../../Zotlabs/Module/Import.php:548 -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 "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Pubblico" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Tutti sulla rete $Projectname" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Tutti gli account su %s" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Chiunque tra i miei contatti" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Tutti i contatti inclusi quelli non ancora approvati" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Lib/PermissionDescription.php:152 msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca" -#: ../../Zotlabs/Module/Import.php:557 +#: ../../Zotlabs/Lib/PermissionDescription.php:153 msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." +"This is your default setting for who can view your default channel profile" +msgstr "Impostazione predefinita di chi può vedere il profilo standard del tuo canale" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Nessun contatto." +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Impostazione predefinita di chi può vedere i tuoi contatti/amici" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Impostazione predefinita di chi può vedere le foto e il tuo archivio file" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Elenco contatti" +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Impostazione predefinita di chi può vedere le tue pagine web" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Sorgente" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Ricerca canale" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "Scegli" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Salva nella cartella" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Chat senza nome" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Parteciperò" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Il nome della chat è duplicato" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "Non parteciperò" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Il nome della chat non è valido." +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Forse parteciperò" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chat non trovata." +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Sono d'accordo" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "La chat è al completo" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "Non sono d'accordo" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 -msgid "$Projectname Notification" -msgstr "Notifica $Projectname" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Mi astengo" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Aggiungi ai preferiti" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 -msgid "Thank You," -msgstr "Grazie," +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Rimuovi dai preferiti" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 -#, php-format -msgid "%s Administrator" -msgstr "L'amministratore di %s" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Attiva/disattiva preferito" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "preferito" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla] Nuovo messaggio su %s" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s ti ha mandato un messaggio privato su %3$s." +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Aggiungi un tag" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "un messaggio privato" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 +msgid "like" +msgstr "mi piace" -#: ../../Zotlabs/Lib/Enotify.php:108 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Visita %s per leggere i tuoi messaggi privati e rispondere." +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "non mi piace" -#: ../../Zotlabs/Lib/Enotify.php:164 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "Share This" +msgstr "Condividi" -#: ../../Zotlabs/Lib/Enotify.php:172 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%5$s di %4$s[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "share" +msgstr "condividi" -#: ../../Zotlabs/Lib/Enotify.php:181 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha commentato [zrl=%3$s]%4$s che hai creato[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:276 +msgid "Delivery Report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Lib/ThreadItem.php:294 #, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla] Nuovo commento di %2$s alla conversazione #%1$d" +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../Zotlabs/Lib/Enotify.php:193 +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 #, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha commentato un elemento che stavi seguendo." +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../Zotlabs/Lib/Enotify.php:196 ../../Zotlabs/Lib/Enotify.php:211 -#: ../../Zotlabs/Lib/Enotify.php:237 ../../Zotlabs/Lib/Enotify.php:255 -#: ../../Zotlabs/Lib/Enotify.php:269 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Visita %s per leggere o commentare la conversazione." +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "to" +msgstr "a" -#: ../../Zotlabs/Lib/Enotify.php:202 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla] %s ha scritto sulla tua bacheca" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "via" +msgstr "via" -#: ../../Zotlabs/Lib/Enotify.php:204 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha scritto sulla bacheca del tuo profilo su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../Zotlabs/Lib/Enotify.php:206 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha scritto sulla [zrl=%3$s]tua bacheca[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:330 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" -#: ../../Zotlabs/Lib/Enotify.php:230 +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 #, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla] %s ti ha taggato" +msgid "from %s" +msgstr "da %s" -#: ../../Zotlabs/Lib/Enotify.php:231 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 #, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s ti ha taggato su %3$s" +msgid "last edited: %s" +msgstr "ultima modifica: %s" -#: ../../Zotlabs/Lib/Enotify.php:232 +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 #, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]ti ha taggato[/zrl]." +msgid "Expires: %s" +msgstr "Scadenza: %s" -#: ../../Zotlabs/Lib/Enotify.php:244 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla] %1$s ti ha mandato un poke" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Save Bookmarks" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Lib/Enotify.php:245 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s ti ha mandato un poke su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:372 +msgid "Add to Calendar" +msgstr "Aggiungi al calendario" -#: ../../Zotlabs/Lib/Enotify.php:246 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]ti ha mandato un poke[/zrl]." +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Mark all seen" +msgstr "Marca tutto come letto" -#: ../../Zotlabs/Lib/Enotify.php:262 +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 #, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla] %s ha taggato il tuo post" +msgid "%s show all" +msgstr "%s mostra tutto" -#: ../../Zotlabs/Lib/Enotify.php:263 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha taggato il tuo post su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 +msgid "Bold" +msgstr "Grassetto" -#: ../../Zotlabs/Lib/Enotify.php:264 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha taggato [zrl=%3$s]il tuo post[/zrl]" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 +msgid "Italic" +msgstr "Corsivo" -#: ../../Zotlabs/Lib/Enotify.php:276 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla] Hai una richiesta di amicizia" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 +msgid "Underline" +msgstr "Sottolineato" -#: ../../Zotlabs/Lib/Enotify.php:277 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, hai ricevuto una richiesta di entrare in contatto da '%2$s' su %3$s" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 +msgid "Quote" +msgstr "Citazione" -#: ../../Zotlabs/Lib/Enotify.php:278 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, hai ricevuto una [zrl=%2$s]richiesta di entrare in contatto[/zrl] da %3$s." +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 +msgid "Code" +msgstr "Codice" -#: ../../Zotlabs/Lib/Enotify.php:282 ../../Zotlabs/Lib/Enotify.php:301 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puoi visitare il suo profilo su %s" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Image" +msgstr "Immagine" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Visita %s per approvare o rifiutare la richiesta di entrare in contatto." +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Insert Link" +msgstr "Collegamento" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla] Ti è stato suggerito un amico" +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Video" +msgstr "Video" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ti è stato suggerito un amico da '%2$s' su %3$s" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Impossibile trovare il nome utente nel file da importare." -#: ../../Zotlabs/Lib/Enotify.php:293 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." + +#: ../../include/dba/dba_driver.php:173 #, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, %4$s ti [zrl=%2$s]ha suggerito %3$s[/zrl] come amico." +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Nome:" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../include/network.php:1935 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Amministratore" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Nessun titolo" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla]" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Ha creato un nuovo post" +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato il post di %s" +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU-Social" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Amministrazione sito" +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bug Report" +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Vedi i segnalibri" +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Le mie aree chat" +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnostica remota" +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:92 -msgid "Suggest Channels" -msgstr "Suggerisci canali" +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 -#: ../../boot.php:1713 -msgid "Login" -msgstr "Accedi" +#: ../../include/oembed.php:340 +msgid "Embedded content" +msgstr "Contenuti incorporati" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 -msgid "Grid" -msgstr "Rete" +#: ../../include/oembed.php:349 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 -msgid "Channel Home" -msgstr "Bacheca del canale" +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" +msgstr "Può vedere i miei contenuti e i post normali" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:205 -#: ../../include/conversation.php:1669 ../../include/conversation.php:1672 -msgid "Events" -msgstr "Eventi" +#: ../../include/permissions.php:33 +msgid "Can view my webpages" +msgstr "Può vedere le mie pagine web" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 -msgid "Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" +msgstr "Può scrivere sulla bacheca del mio canale" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 -msgid "Mail" -msgstr "Messaggi" +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" +msgstr "Può aggiungere \"mi piace\" a tutto il resto" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 -msgid "Chat" -msgstr "Chat" +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" +msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Diagnostica" +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggerisci" +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canale casuale" +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invita" +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 -msgid "Features" -msgstr "Funzionalità" +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Lingua" +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Post" +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" -#: ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del profilo" +#: ../../include/permissions.php:49 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acquista" +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 -msgid "Visible to your default audience" -msgstr "Visibile secondo le impostazioni predefinite" +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 -msgid "Only me" -msgstr "Solo io" +#: ../../include/items.php:1145 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Pubblico" +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Tutti sulla rete $Projectname" +#: ../../include/items.php:1149 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#: ../../include/items.php:1151 #, php-format -msgid "Any account on %s" -msgstr "Tutti gli account su %s" +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Chiunque tra i miei contatti" +#: ../../include/items.php:1153 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../include/items.php:1155 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" +#: ../../include/items.php:1157 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Any connections including those who haven't yet been approved" -msgstr "Tutti i contatti inclusi quelli non ancora approvati" +#: ../../include/items.php:3947 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca" +#: ../../include/items.php:3954 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Impostazione predefinita di chi può vedere il profilo standard del tuo canale" +#: ../../include/items.php:3966 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for who can view your connections" -msgstr "Impostazione predefinita di chi può vedere i tuoi contatti/amici" +#: ../../include/items.php:4319 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../Zotlabs/Lib/PermissionDescription.php:155 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Impostazione predefinita di chi può vedere le foto e il tuo archivio file" +#: ../../include/text.php:404 +msgid "prev" +msgstr "prec" -#: ../../Zotlabs/Lib/PermissionDescription.php:156 -msgid "This is your default setting for the audience of your webpages" -msgstr "Impostazione predefinita di chi può vedere le tue pagine web" +#: ../../include/text.php:406 +msgid "first" +msgstr "inizio" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../include/text.php:435 +msgid "last" +msgstr "fine" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Scegli" +#: ../../include/text.php:438 +msgid "next" +msgstr "succ" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Salva nella cartella" +#: ../../include/text.php:448 +msgid "older" +msgstr "più recenti" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Parteciperò" +#: ../../include/text.php:450 +msgid "newer" +msgstr "più nuovi" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Non parteciperò" +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Nessun contatto" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Forse parteciperò" +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Sono d'accordo" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "poke" + +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" + +#: ../../include/text.php:1019 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Non sono d'accordo" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "spintone" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Mi astengo" +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "schiaffo" -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" +#: ../../include/text.php:1022 +msgid "finger" +msgstr "finger" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferito" +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "rifiuto" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Aggiungi un tag" +#: ../../include/text.php:1035 +msgid "happy" +msgstr "felice" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 -msgid "like" -msgstr "mi piace" +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste" -#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "non mi piace" +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "calmo" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "Share This" -msgstr "Condividi" +#: ../../include/text.php:1038 +msgid "tired" +msgstr "stanco" -#: ../../Zotlabs/Lib/ThreadItem.php:267 -msgid "share" -msgstr "condividi" +#: ../../include/text.php:1039 +msgid "perky" +msgstr "vivace" -#: ../../Zotlabs/Lib/ThreadItem.php:276 -msgid "Delivery Report" -msgstr "Rapporto di trasmissione" +#: ../../include/text.php:1040 +msgid "angry" +msgstr "arrabbiato" -#: ../../Zotlabs/Lib/ThreadItem.php:294 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "stupito" -#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "confuso" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "to" -msgstr "a" +#: ../../include/text.php:1043 +msgid "interested" +msgstr "attento" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "via" -msgstr "via" +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amaro" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "allegro" -#: ../../Zotlabs/Lib/ThreadItem.php:330 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" +#: ../../include/text.php:1046 +msgid "alive" +msgstr "vivace" -#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "da %s" +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "seccato" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansioso" -#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "irritabile" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "turbato" -#: ../../Zotlabs/Lib/ThreadItem.php:372 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrato" -#: ../../Zotlabs/Lib/ThreadItem.php:381 -msgid "Mark all seen" -msgstr "Marca tutto come letto" +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "in depressione" -#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivato" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Bold" -msgstr "Grassetto" +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "rilassato" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Italic" -msgstr "Corsivo" +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorpreso" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Underline" -msgstr "Sottolineato" +#: ../../include/text.php:1239 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunedì" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Quote" -msgstr "Citazione" +#: ../../include/text.php:1239 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martedì" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1231 -msgid "Code" -msgstr "Codice" +#: ../../include/text.php:1239 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Image" -msgstr "Immagine" +#: ../../include/text.php:1239 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "giovedì" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Insert Link" -msgstr "Collegamento" +#: ../../include/text.php:1239 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "venerdì" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Video" -msgstr "Video" +#: ../../include/text.php:1239 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sabato" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Impossibile trovare il nome utente nel file da importare." +#: ../../include/text.php:1239 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domenica" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." +#: ../../include/text.php:1243 ../../include/js_strings.php:45 +msgid "January" +msgstr "gennaio" -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: ../../include/text.php:1243 ../../include/js_strings.php:46 +msgid "February" +msgstr "febbraio" -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Sconosciuto)" +#: ../../include/text.php:1243 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." +#: ../../include/text.php:1243 ../../include/js_strings.php:48 +msgid "April" +msgstr "aprile" -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visibile solo a te." +#: ../../include/text.php:1243 +msgid "May" +msgstr "Mag" -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." +#: ../../include/text.php:1243 ../../include/js_strings.php:50 +msgid "June" +msgstr "giugno" -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." +#: ../../include/text.php:1243 ../../include/js_strings.php:51 +msgid "July" +msgstr "luglio" -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." +#: ../../include/text.php:1243 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." +#: ../../include/text.php:1243 ../../include/js_strings.php:53 +msgid "September" +msgstr "settembre" -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." +#: ../../include/text.php:1243 ../../include/js_strings.php:54 +msgid "October" +msgstr "ottobre" -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." +#: ../../include/text.php:1243 ../../include/js_strings.php:55 +msgid "November" +msgstr "novembre" -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." +#: ../../include/text.php:1243 ../../include/js_strings.php:56 +msgid "December" +msgstr "dicembre" -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../include/text.php:1326 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del profilo" +#: ../../include/text.php:1362 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../include/text.php:1439 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" +msgstr "predefinito" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +#: ../../include/text.php:1746 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." +#: ../../include/text.php:1788 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" +#: ../../include/text.php:1821 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" +#: ../../include/text.php:1958 +msgid "activity" +msgstr "l'attività" -#: ../../include/photos.php:506 ../../include/conversation.php:1655 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../include/text.php:2259 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/text.php:2265 +msgid "Pages" +msgstr "Pagine" -#: ../../include/features.php:50 -msgid "General Features" -msgstr "Funzionalità di base" +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/features.php:52 -msgid "Content Expiration" -msgstr "Scadenza" +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/features.php:53 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Importa i file da un cloud:" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/percorso/alla/cartella" -#: ../../include/features.php:54 -msgid "Advanced Profiles" -msgstr "Profili avanzati" +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/features.php:55 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Categorie" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../include/features.php:56 -msgid "Web Pages" -msgstr "Pagine web" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nuova app" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerimenti" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Altro..." -#: ../../include/features.php:58 -msgid "Hide Rating" -msgstr "Nascondi le valutazioni" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." -#: ../../include/features.php:58 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove." +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" -#: ../../include/features.php:59 -msgid "Private Notes" -msgstr "Note private" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Indirizzo del canale" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Note" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Rimuovi termine" -#: ../../include/features.php:61 -msgid "Photo Location" -msgstr "Posizione geografica" +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "aggiungi" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tutto" -#: ../../include/features.php:63 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archivi" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Aggiorna" -#: ../../include/features.php:64 -msgid "Expert Mode" -msgstr "Modalità esperto" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Il tuo account" -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../include/features.php:65 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funzionalità opzionali" -#: ../../include/features.php:65 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" -#: ../../include/features.php:70 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Aspetto" -#: ../../include/features.php:73 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestione repliche" -#: ../../include/features.php:73 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../include/features.php:74 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "App connesse" -#: ../../include/features.php:75 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" -#: ../../include/features.php:75 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" -#: ../../include/features.php:76 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Vista combinata" -#: ../../include/features.php:76 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di post in cui sarà possibile votare" +#: ../../include/widgets.php:667 ../../include/nav.php:200 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/features.php:77 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" +#: ../../include/widgets.php:672 ../../include/nav.php:201 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/features.php:77 -msgid "Allow posts to be published at a later date" -msgstr "Per scegliere una data e un'ora a cui far uscire i post" +#: ../../include/widgets.php:677 ../../include/nav.php:202 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/features.php:78 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversazioni" -#: ../../include/features.php:78 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Ricevuti" -#: ../../include/features.php:84 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Inviati" -#: ../../include/features.php:85 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../include/features.php:85 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../include/features.php:86 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Gruppi di canali" +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Gestione eventi" -#: ../../include/features.php:86 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Esporta calendario" -#: ../../include/features.php:87 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Ricerche salvate" +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importa calendario" -#: ../../include/features.php:87 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../include/widgets.php:850 ../../include/conversation.php:1695 +#: ../../include/conversation.php:1698 +msgid "Chatrooms" +msgstr "Chat" -#: ../../include/features.php:88 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../include/widgets.php:854 +msgid "Overview" +msgstr "Riepilogo" -#: ../../include/features.php:88 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" +#: ../../include/widgets.php:861 +msgid "Chat Members" +msgstr "Partecipanti" -#: ../../include/features.php:89 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../include/widgets.php:883 +msgid "Wiki List" +msgstr "Elenco wiki" -#: ../../include/features.php:89 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../include/widgets.php:921 +msgid "Wiki Pages" +msgstr "Pagine wiki" -#: ../../include/features.php:90 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/widgets.php:956 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" -#: ../../include/features.php:90 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/widgets.php:979 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" -#: ../../include/features.php:91 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 +msgid "photo/image" +msgstr "foto/immagine" -#: ../../include/features.php:91 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/widgets.php:1180 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" -#: ../../include/features.php:92 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" +#: ../../include/widgets.php:1331 +msgid "Rating Tools" +msgstr "Valutazione" -#: ../../include/features.php:97 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 +msgid "Rate Me" +msgstr "Valutami" -#: ../../include/features.php:98 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/widgets.php:1340 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" -#: ../../include/features.php:98 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/widgets.php:1424 +msgid "Forums" +msgstr "Forum" -#: ../../include/features.php:99 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/widgets.php:1453 +msgid "Tasks" +msgstr "Attività" -#: ../../include/features.php:99 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/widgets.php:1462 +msgid "Documentation" +msgstr "Guida" -#: ../../include/features.php:100 -msgid "Emoji Reactions" -msgstr "Reazioni emoji" +#: ../../include/widgets.php:1464 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" -#: ../../include/features.php:100 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti le reazioni emoji ai post" +#: ../../include/widgets.php:1465 +msgid "For Members" +msgstr "Per gli utenti" -#: ../../include/features.php:101 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../include/widgets.php:1466 +msgid "For Administrators" +msgstr "Per gli amministratori" -#: ../../include/features.php:101 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/widgets.php:1467 +msgid "For Developers" +msgstr "Per sviluppatori" -#: ../../include/features.php:102 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" -#: ../../include/features.php:102 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/widgets.php:1497 +msgid "Inspect queue" +msgstr "Coda di attesa" -#: ../../include/features.php:103 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/widgets.php:1499 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../include/features.php:103 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/widgets.php:1524 ../../include/nav.php:220 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/features.php:104 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/widgets.php:1525 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../include/features.php:104 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/api.php:1337 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" + +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/acl_selectors.php:269 +#: ../../include/acl_selectors.php:169 msgid "Who can see this?" msgstr "Chi può vederlo?" -#: ../../include/acl_selectors.php:270 +#: ../../include/acl_selectors.php:170 msgid "Custom selection" msgstr "Selezione personalizzata" -#: ../../include/acl_selectors.php:271 +#: ../../include/acl_selectors.php:171 msgid "" "Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" " the scope of \"Show\"." msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." -#: ../../include/acl_selectors.php:272 +#: ../../include/acl_selectors.php:172 msgid "Show" msgstr "Mostra" -#: ../../include/acl_selectors.php:273 +#: ../../include/acl_selectors.php:173 msgid "Don't show" msgstr "Non mostrare" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" - -#: ../../include/acl_selectors.php:309 +#: ../../include/acl_selectors.php:207 #, php-format msgid "" "Post permissions %s cannot be changed %s after a post is shared.
    These" " permissions set who is allowed to view the post." msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" - -#: ../../include/datetime.php:272 ../../boot.php:2549 -msgid "never" -msgstr "mai" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Ogni ora" - -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Due volte al giorno" - -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Ogni giorno" - -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ogni settimana" - -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Ogni mese" - -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" -msgstr "Maschio" - -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" -msgstr "Femmina" - -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Al momento maschio" - -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Al momento femmina" - -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" - -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" - -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" - -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersex" - -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transessuale" - -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Ermafrodito" - -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutro" - -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Non specificato" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Maschi" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmine" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbica" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Senza preferenza" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisessuale" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosessuale" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Astinente" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vergine" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Deviato" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Feticista" +#: ../../include/channel.php:963 ../../include/nav.php:92 +msgid "Edit Profile" +msgstr "Modifica il profilo" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Un sacco" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asessuato" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Sesso:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Stato:" -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Da solo" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Home page:" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponibile" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Online adesso" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Non disponibile" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Mi piace questo canale" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Ha una cotta" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Infatuato/a" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j F" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Disponibile a un incontro" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infedele" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sesso-dipendente" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Impegnato" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Sposato/a" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Convivente" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio regolare" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "I miei altri canali:" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felice" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Non in cerca" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Scambista" +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisione:" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Tradito/a" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separato/a" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instabile" +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Scuola:" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Mi piace" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Compleanno" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Età:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" +#: ../../include/datetime.php:272 ../../boot.php:2577 +msgid "never" +msgstr "mai" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" -#: ../../include/text.php:404 -msgid "prev" -msgstr "prec" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" -#: ../../include/text.php:406 -msgid "first" -msgstr "inizio" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" -#: ../../include/text.php:435 -msgid "last" -msgstr "fine" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" -#: ../../include/text.php:438 -msgid "next" -msgstr "succ" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frequentemente" -#: ../../include/text.php:448 -msgid "older" -msgstr "più recenti" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Ogni ora" -#: ../../include/text.php:450 -msgid "newer" -msgstr "più nuovi" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Due volte al giorno" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Ogni giorno" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Ogni settimana" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "poke" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Ogni mese" -#: ../../include/text.php:1013 ../../include/text.php:1018 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "ha mandato un poke" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Maschio" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Femmina" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha effettuato un ping" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Al momento maschio" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "spintone" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Al momento femmina" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha ricevuto uno spintone" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Prevalentemente maschio" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "schiaffo" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Prevalentemente femmina" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersex" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "ha ricevuto un finger" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transessuale" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rifiuto" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Ermafrodito" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Neutro" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "felice" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Non specificato" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "calmo" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Maschi" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "stanco" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Femmine" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivace" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Gay" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "arrabbiato" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbica" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupito" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Senza preferenza" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "confuso" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisessuale" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "attento" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosessuale" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amaro" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Astinente" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "allegro" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Vergine" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivace" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Deviato" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "seccato" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Feticista" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Un sacco" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "irritabile" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asessuato" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "turbato" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrato" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Da solo" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "in depressione" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponibile" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivato" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Non disponibile" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "rilassato" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Ha una cotta" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorpreso" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Infatuato/a" -#: ../../include/text.php:1239 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunedì" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Disponibile a un incontro" -#: ../../include/text.php:1239 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martedì" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infedele" -#: ../../include/text.php:1239 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "mercoledì" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sesso-dipendente" -#: ../../include/text.php:1239 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "giovedì" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amici con qualcosa in più" -#: ../../include/text.php:1239 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "venerdì" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../include/text.php:1239 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sabato" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Impegnato" -#: ../../include/text.php:1239 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domenica" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Sposato/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:45 -msgid "January" -msgstr "gennaio" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Con matrimonio immaginario" -#: ../../include/text.php:1243 ../../include/js_strings.php:46 -msgid "February" -msgstr "febbraio" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" -#: ../../include/text.php:1243 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Convivente" -#: ../../include/text.php:1243 ../../include/js_strings.php:48 -msgid "April" -msgstr "aprile" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio regolare" -#: ../../include/text.php:1243 -msgid "May" -msgstr "Mag" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felice" -#: ../../include/text.php:1243 ../../include/js_strings.php:50 -msgid "June" -msgstr "giugno" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Non in cerca" -#: ../../include/text.php:1243 ../../include/js_strings.php:51 -msgid "July" -msgstr "luglio" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Scambista" -#: ../../include/text.php:1243 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Tradito/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:53 -msgid "September" -msgstr "settembre" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separato/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:54 -msgid "October" -msgstr "ottobre" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Instabile" -#: ../../include/text.php:1243 ../../include/js_strings.php:55 -msgid "November" -msgstr "novembre" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorziato/a" -#: ../../include/text.php:1243 ../../include/js_strings.php:56 -msgid "December" -msgstr "dicembre" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Sogna il divorzio" -#: ../../include/text.php:1320 ../../include/text.php:1324 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Vedovo/a" -#: ../../include/text.php:1326 -msgid "unknown" -msgstr "sconosciuta" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Incerto/a" -#: ../../include/text.php:1362 -msgid "remove category" -msgstr "rimuovi la categoria" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Relazione complicata" -#: ../../include/text.php:1439 -msgid "remove from file" -msgstr "rimuovi dal file" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Chi se ne frega" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" -msgstr "predefinito" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Chiedimelo" -#: ../../include/text.php:1746 -msgid "Page layout" -msgstr "Layout della pagina" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" -msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/text.php:1788 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." -#: ../../include/text.php:1821 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nuova foto" -#: ../../include/text.php:1958 -msgid "activity" -msgstr "l'attività" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" -#: ../../include/text.php:2259 -msgid "Design Tools" -msgstr "Strumenti di design" +#: ../../include/photos.php:506 ../../include/conversation.php:1668 +msgid "Photo Albums" +msgstr "Album foto" -#: ../../include/text.php:2265 -msgid "Pages" -msgstr "Pagine" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../include/text.php:2287 -msgid "Import website..." -msgstr "Importazione sito web..." +#: ../../include/security.php:109 +msgid "guest:" +msgstr "ospite:" -#: ../../include/text.php:2288 -msgid "Select folder to import" -msgstr "Scegli la cartella da importare" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/text.php:2289 -msgid "Import from a zipped folder:" -msgstr "Importa da un file zip:" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" -msgstr "Importa i file da un cloud:" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/percorso/alla/cartella" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/text.php:2292 -msgid "Enter path to website files" -msgstr "Inserisci la posizione dei file del sito web" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Categorie:" -#: ../../include/text.php:2293 -msgid "Select folder" -msgstr "Scegli la cartella" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Classificato come:" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1712 -msgid "Logout" -msgstr "Esci" +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../include/nav.php:84 ../../include/nav.php:117 -msgid "End this session" -msgstr "Chiudi questa sessione" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "rimuovi" -#: ../../include/nav.php:87 ../../include/nav.php:148 -msgid "Home" -msgstr "Bacheca" +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/nav.php:87 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../include/nav.php:88 -msgid "Your profile page" -msgstr "Il tuo profilo" +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Vedi il sorgente" -#: ../../include/nav.php:90 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" +#: ../../include/conversation.php:950 +msgid "Follow Thread" +msgstr "Segui la discussione" -#: ../../include/nav.php:92 ../../include/channel.php:963 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Non seguire la discussione" -#: ../../include/nav.php:92 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Attività e Post" -#: ../../include/nav.php:94 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Modifica il contatto" -#: ../../include/nav.php:95 -msgid "Your files" -msgstr "I tuoi file" +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Messaggio" -#: ../../include/nav.php:98 -msgid "Your chatrooms" -msgstr "Le tue chat" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." -#: ../../include/nav.php:104 ../../include/conversation.php:1695 -msgid "Bookmarks" -msgstr "Segnalibri" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." -#: ../../include/nav.php:104 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "Piace a %2$d persone." -#: ../../include/nav.php:108 -msgid "Your webpages" -msgstr "Le tue pagine web" +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "Non piace a %2$d persone." -#: ../../include/nav.php:110 -msgid "Your wiki" -msgstr "La tua wiki" +#: ../../include/conversation.php:1088 +msgid "and" +msgstr "e" -#: ../../include/nav.php:114 -msgid "Sign in" -msgstr "Accedi" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" -#: ../../include/nav.php:131 +#: ../../include/conversation.php:1092 #, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +msgid "%s like this." +msgstr "Piace a %s." -#: ../../include/nav.php:134 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." -#: ../../include/nav.php:134 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "La tua località" -#: ../../include/nav.php:148 -msgid "Home Page" -msgstr "Bacheca" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" -#: ../../include/nav.php:151 -msgid "Create an account" -msgstr "Crea un account" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/nav.php:163 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "Dove sei ora?" -#: ../../include/nav.php:167 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Commenti abilitati" -#: ../../include/nav.php:169 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Commenti disabilitati" -#: ../../include/nav.php:171 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/conversation.php:1229 +msgid "Page link name" +msgstr "Nome del link alla pagina" -#: ../../include/nav.php:183 -msgid "Your grid" -msgstr "La tua rete" +#: ../../include/conversation.php:1232 +msgid "Post as" +msgstr "Pubblica come " -#: ../../include/nav.php:184 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../include/conversation.php:1246 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" -#: ../../include/nav.php:186 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Disabilita i commenti" -#: ../../include/nav.php:187 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Abilita/disabilita i commenti" -#: ../../include/nav.php:193 -msgid "Notices" -msgstr "Avvisi" +#: ../../include/conversation.php:1258 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/nav.php:193 -msgid "Notifications" -msgstr "Notifiche" +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/nav.php:194 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../include/conversation.php:1287 +msgid "Set publish date" +msgstr "Data di uscita programmata" -#: ../../include/nav.php:197 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../include/conversation.php:1536 +msgid "Discover" +msgstr "Scopri" -#: ../../include/nav.php:198 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../include/conversation.php:1539 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" -#: ../../include/nav.php:199 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../include/conversation.php:1544 +msgid "Commented Order" +msgstr "Commenti recenti" -#: ../../include/nav.php:200 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "In arrivo" +#: ../../include/conversation.php:1547 +msgid "Sort by Comment Date" +msgstr "Per data del commento" -#: ../../include/nav.php:201 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Inviati" +#: ../../include/conversation.php:1551 +msgid "Posted Order" +msgstr "Post recenti" -#: ../../include/nav.php:202 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../include/conversation.php:1554 +msgid "Sort by Post Date" +msgstr "Per data di creazione" -#: ../../include/nav.php:205 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../include/conversation.php:1562 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" -#: ../../include/nav.php:206 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../include/conversation.php:1571 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" -#: ../../include/nav.php:207 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" +#: ../../include/conversation.php:1577 +msgid "Starred" +msgstr "Preferiti" -#: ../../include/nav.php:210 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" +#: ../../include/conversation.php:1580 +msgid "Favourite Posts" +msgstr "Post preferiti" -#: ../../include/nav.php:212 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" +#: ../../include/conversation.php:1587 +msgid "Spam" +msgstr "Spam" -#: ../../include/nav.php:220 ../../include/widgets.php:1524 -msgid "Admin" -msgstr "Amministrazione" +#: ../../include/conversation.php:1590 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" -#: ../../include/nav.php:220 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" +#: ../../include/conversation.php:1647 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" -#: ../../include/nav.php:251 ../../include/conversation.php:855 -msgid "Loading..." -msgstr "Caricamento in corso..." +#: ../../include/conversation.php:1656 +msgid "About" +msgstr "Informazioni" -#: ../../include/nav.php:256 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" +#: ../../include/conversation.php:1659 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: ../../include/nav.php:257 -msgid "Please wait..." -msgstr "Attendere..." +#: ../../include/conversation.php:1675 +msgid "Files and Storage" +msgstr "Archivio file" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +#: ../../include/conversation.php:1708 ../../include/nav.php:104 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/conversation.php:1711 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/conversation.php:1721 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/conversation.php:1786 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" -#: ../../include/event.php:814 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Non specificato" +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necessita di un intervento" +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completato" +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "In corso" +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Annullato" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" #: ../../include/group.php:26 msgid "" @@ -8423,6 +8703,10 @@ msgstr "Aggiungi nuovi contatti a questo gruppo di canali" msgid "edit" msgstr "modifica" +#: ../../include/group.php:311 ../../include/features.php:84 +msgid "Privacy Groups" +msgstr "Gruppi di canali" + #: ../../include/group.php:312 msgid "Edit group" msgstr "Modifica il gruppo" @@ -8435,10 +8719,6 @@ msgstr "Crea un gruppo di canali" msgid "Channels not in any privacy group" msgstr "Canali che non sono in nessun gruppo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "aggiungi" - #: ../../include/page_widgets.php:7 msgid "New Page" msgstr "Nuova pagina web" @@ -8447,212 +8727,48 @@ msgstr "Nuova pagina web" msgid "Title" msgstr "Titolo" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" - -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." - -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" - -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" - -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." - -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" - -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" - -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" - -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" - -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" - -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" - -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" - -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" - -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" - -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" - -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" - -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" - -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" - -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" - -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" - -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" - -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" - -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" - -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" - -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" - -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" - -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" - -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" - -#: ../../include/network.php:1935 ../../include/account.php:317 -#: ../../include/account.php:344 ../../include/account.php:404 -msgid "Administrator" -msgstr "Amministratore" - -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "Nessun titolo" - -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "Friendica" - -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/network.php:2206 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "Zot" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Non specificato" -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necessita di un intervento" -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completato" -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Annullato" #: ../../include/bb2diaspora.php:398 msgid "Attachments:" @@ -8721,585 +8837,295 @@ msgstr "Valuta questo canale (visibile a tutti)" msgid "Describe (optional)" msgstr "Descrizione (facoltativa)" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Inserisci l'URL di un link" - -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" - -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" - -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" - -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "fa" - -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "da adesso" - -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "meno di un minuto" - -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "circa un minuto" - -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minuti" - -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "circa un’ora" - -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "circa %d ore" - -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un giorno" - -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d giorni" - -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "circa un mese" - -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d mesi" - -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "circa un anno" - -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d anni" - -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" - -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "maggio" - -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Gen" - -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" - -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mar" - -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" - -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "maggio" - -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Mag" - -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Giu" - -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Ago" - -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Set" - -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Ott" - -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" - -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Dic" - -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "Dom" - -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Lun" - -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Mar" - -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Mer" - -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Gio" - -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Ven" - -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Sab" - -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "oggi" - -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mese" - -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "settimana" - -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "giorno" - -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" - -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" - -#: ../../include/security.php:527 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." - -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Email non valida" - -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" - -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." - -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "È necessario un invito." - -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." - -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." - -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." - -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" - -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" - -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la password di registrazione" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account approvato." - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Inserisci l'URL di un link" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Immagine" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "fa" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenuto cifrato" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "da adesso" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "meno di un minuto" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "circa un minuto" -#: ../../include/bbcode.php:261 +#: ../../include/js_strings.php:33 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +msgid "%d minutes" +msgstr "%d minuti" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "circa un’ora" -#: ../../include/bbcode.php:619 ../../include/wiki.php:525 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un giorno" -#: ../../include/conversation.php:204 +#: ../../include/js_strings.php:37 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +msgid "%d days" +msgstr "%d giorni" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "circa un mese" -#: ../../include/conversation.php:694 +#: ../../include/js_strings.php:39 #, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorie:" +msgid "%d months" +msgstr "%d mesi" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Classificato come:" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "circa un anno" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d anni" -#: ../../include/conversation.php:851 -msgid "remove" -msgstr "rimuovi" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/conversation.php:952 -msgid "View Source" -msgstr "Vedi il sorgente" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "maggio" -#: ../../include/conversation.php:953 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Gen" -#: ../../include/conversation.php:954 -msgid "Unfollow Thread" -msgstr "Non seguire la discussione" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" -#: ../../include/conversation.php:959 -msgid "Activity/Posts" -msgstr "Attività e Post" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mar" -#: ../../include/conversation.php:961 -msgid "Edit Connection" -msgstr "Modifica il contatto" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" -#: ../../include/conversation.php:962 -msgid "Message" -msgstr "Messaggio" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "maggio" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Mag" -#: ../../include/conversation.php:1079 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Giu" -#: ../../include/conversation.php:1083 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "Piace a %2$d persone." +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "Ago" -#: ../../include/conversation.php:1085 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "Non piace a %2$d persone." +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "Set" -#: ../../include/conversation.php:1091 -msgid "and" -msgstr "e" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Ott" -#: ../../include/conversation.php:1094 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Dic" -#: ../../include/conversation.php:1095 -#, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "Dom" -#: ../../include/conversation.php:1134 -msgid "Set your location" -msgstr "La tua località" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Lun" -#: ../../include/conversation.php:1135 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Mar" -#: ../../include/conversation.php:1183 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Mer" -#: ../../include/conversation.php:1184 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Gio" -#: ../../include/conversation.php:1222 -msgid "Page link name" -msgstr "Nome del link alla pagina" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Ven" -#: ../../include/conversation.php:1225 -msgid "Post as" -msgstr "Pubblica come " +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Sab" -#: ../../include/conversation.php:1239 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "oggi" -#: ../../include/conversation.php:1247 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mese" -#: ../../include/conversation.php:1274 -msgid "Set publish date" -msgstr "Data di uscita programmata" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "settimana" -#: ../../include/conversation.php:1523 -msgid "Discover" -msgstr "Scopri" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/conversation.php:1526 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/conversation.php:1531 -msgid "Commented Order" -msgstr "Commenti recenti" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/conversation.php:1534 -msgid "Sort by Comment Date" -msgstr "Per data del commento" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/conversation.php:1538 -msgid "Posted Order" -msgstr "Post recenti" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/conversation.php:1541 -msgid "Sort by Post Date" -msgstr "Per data di creazione" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/conversation.php:1549 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/conversation.php:1558 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/conversation.php:1564 -msgid "Starred" -msgstr "Preferiti" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/conversation.php:1567 -msgid "Favourite Posts" -msgstr "Post preferiti" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../include/conversation.php:1574 -msgid "Spam" -msgstr "Spam" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/conversation.php:1577 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/conversation.php:1634 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/conversation.php:1643 -msgid "About" -msgstr "Informazioni" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/conversation.php:1646 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." -#: ../../include/conversation.php:1662 -msgid "Files and Storage" -msgstr "Archivio file" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." -#: ../../include/conversation.php:1682 ../../include/conversation.php:1685 -#: ../../include/widgets.php:850 -msgid "Chatrooms" -msgstr "Chat" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/conversation.php:1698 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/conversation.php:1708 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/conversation.php:1773 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" -#: ../../include/conversation.php:1776 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/conversation.php:1779 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/conversation.php:1782 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/conversation.php:1785 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "La posizione è vuota" -#: ../../include/conversation.php:1788 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/oembed.php:340 -msgid "Embedded content" -msgstr "Contenuti incorporati" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/oembed.php:349 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Accesso fallito." #: ../../include/activities.php:41 msgid " and " @@ -9324,376 +9150,446 @@ msgstr "Guarda %2$s di %1$s " msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorie" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tag" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Parole chiave" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "ho" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "ha" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Funzionalità di base" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "voglio" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Scadenza" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "vuole" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gli piace" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" + +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Profili avanzati" + +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" + +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" + +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" + +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Pagine web" + +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" + +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Fornisce una wiki per il tuo canale" + +#: ../../include/features.php:59 +msgid "Private Notes" +msgstr "Note private" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "non gli piace" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../include/permissions.php:29 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" -#: ../../include/permissions.php:33 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../include/permissions.php:37 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Posizione geografica" -#: ../../include/permissions.php:40 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\" a tutto il resto" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." -#: ../../include/permissions.php:40 -msgid "Profiles and things other than posts/comments" -msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" -#: ../../include/permissions.php:42 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato" -#: ../../include/permissions.php:42 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" -#: ../../include/permissions.php:43 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/permissions.php:44 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" +#: ../../include/features.php:64 +msgid "Expert Mode" +msgstr "Modalità esperto" -#: ../../include/permissions.php:45 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" +#: ../../include/features.php:64 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" -#: ../../include/permissions.php:47 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../include/features.php:69 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" -#: ../../include/permissions.php:49 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Foto grandi" -#: ../../include/permissions.php:49 +#: ../../include/features.php:70 msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nuova app" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerimenti" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Altro..." +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" +#: ../../include/features.php:74 +msgid "Disable Comments" +msgstr "Disabilita i commenti" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Indirizzo del canale" +#: ../../include/features.php:74 +msgid "Provide the option to disable comments for a post" +msgstr "Permetti di disabilitare i commenti" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Per esempio: bob@example.com, https://example.com/barbara" +#: ../../include/features.php:75 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Note" +#: ../../include/features.php:75 +msgid "Allow posts to be published at a later date" +msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Rimuovi termine" +#: ../../include/features.php:76 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tutto" +#: ../../include/features.php:76 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archivi" +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aggiorna" +#: ../../include/features.php:83 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Il tuo account" +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Impostazioni del canale" +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funzionalità opzionali" +#: ../../include/features.php:85 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Componenti aggiuntivi" +#: ../../include/features.php:86 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Aspetto" +#: ../../include/features.php:86 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestione repliche" +#: ../../include/features.php:87 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Esporta il canale" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "App connesse" +#: ../../include/features.php:88 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menu messaggi privati" +#: ../../include/features.php:89 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinata" +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversazioni" +#: ../../include/features.php:90 +msgid "Show channel suggestions" +msgstr "Mostra alcuni canali che potrebbero interessarti" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Ricevuti" +#: ../../include/features.php:95 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Inviati" +#: ../../include/features.php:96 +msgid "Community Tagging" +msgstr "Tag della comunità" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Nessun messaggio." +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Elimina la conversazione" +#: ../../include/features.php:97 +msgid "Post Categories" +msgstr "Categorie dei post" + +#: ../../include/features.php:97 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestione eventi" +#: ../../include/features.php:98 +msgid "Emoji Reactions" +msgstr "Reazioni emoji" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Esporta calendario" +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti le reazioni emoji ai post" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importa calendario" +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/widgets.php:854 -msgid "Overview" -msgstr "Riepilogo" +#: ../../include/features.php:100 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../include/widgets.php:861 -msgid "Chat Members" -msgstr "Partecipanti" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/widgets.php:883 -msgid "Wiki List" -msgstr "Elenco wiki" +#: ../../include/features.php:101 +msgid "Star Posts" +msgstr "Post con stella" -#: ../../include/widgets.php:921 -msgid "Wiki Pages" -msgstr "Pagine wiki" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/widgets.php:956 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" +#: ../../include/features.php:102 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../include/widgets.php:979 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" +#: ../../include/features.php:102 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" -#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 -msgid "photo/image" -msgstr "foto/immagine" +#: ../../include/features.php:111 +msgid "Premium Channel" +msgstr "Canale premium" -#: ../../include/widgets.php:1180 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" +#: ../../include/features.php:112 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" -#: ../../include/widgets.php:1331 -msgid "Rating Tools" -msgstr "Valutazione" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Tag" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 -msgid "Rate Me" -msgstr "Valutami" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Parole chiave" -#: ../../include/widgets.php:1340 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "ho" -#: ../../include/widgets.php:1424 -msgid "Forums" -msgstr "Forum" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "ha" -#: ../../include/widgets.php:1453 -msgid "Tasks" -msgstr "Attività" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "voglio" -#: ../../include/widgets.php:1462 -msgid "Documentation" -msgstr "Guida" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "vuole" -#: ../../include/widgets.php:1464 -msgid "Project/Site Information" -msgstr "Informazioni sul sito/progetto" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gli piace" -#: ../../include/widgets.php:1465 -msgid "For Members" -msgstr "Per gli utenti" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "non gli piace" -#: ../../include/widgets.php:1466 -msgid "For Administrators" -msgstr "Per gli amministratori" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../include/widgets.php:1467 -msgid "For Developers" -msgstr "Per sviluppatori" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" -#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../include/widgets.php:1497 -msgid "Inspect queue" -msgstr "Coda di attesa" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "È necessario un invito." -#: ../../include/widgets.php:1499 -msgid "DB updates" -msgstr "Aggiornamenti al DB" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." -#: ../../include/widgets.php:1525 -msgid "Plugin Features" -msgstr "Plugin" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "la password di registrazione" -#: ../../include/attach.php:675 +#: ../../include/account.php:342 ../../include/account.php:402 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../include/attach.php:689 +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:454 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." -msgstr "Percorso non disponibile." +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Immagine" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Contenuto cifrato" -#: ../../include/attach.php:1026 -msgid "Path not found." -msgstr "Percorso del file non trovato." +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" -#: ../../include/attach.php:1084 -msgid "mkdir failed." -msgstr "mkdir fallito." +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "scrittura su database fallita." +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "La posizione è vuota" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" #: ../../include/contact_widgets.php:11 #, php-format @@ -9773,244 +9669,372 @@ msgstr "Impossibile determinare il mittente." msgid "Stored post could not be verified." msgstr "Non è stato possibile verificare il post." -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +msgid "Logout" +msgstr "Esci" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nuova finestra" +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" +msgstr "Chiudi questa sessione" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" +msgstr "Bacheca" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" +#: ../../include/nav.php:87 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" +#: ../../include/nav.php:88 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:92 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../include/nav.php:94 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:95 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:98 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:104 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:108 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:110 +msgid "Your wiki" +msgstr "La tua wiki" + +#: ../../include/nav.php:114 +msgid "Sign in" +msgstr "Accedi" -#: ../../include/zot.php:2326 +#: ../../include/nav.php:131 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../include/nav.php:134 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:148 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" + +#: ../../include/nav.php:171 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../include/nav.php:183 +msgid "Your grid" +msgstr "La tua rete" + +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" + +#: ../../include/nav.php:186 +msgid "Channel home" +msgstr "Bacheca del canale" + +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" + +#: ../../include/nav.php:193 +msgid "Notices" +msgstr "Avvisi" + +#: ../../include/nav.php:193 +msgid "Notifications" +msgstr "Notifiche" + +#: ../../include/nav.php:194 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" + +#: ../../include/nav.php:197 +msgid "Private mail" +msgstr "Messaggi privati" + +#: ../../include/nav.php:198 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" + +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" + +#: ../../include/nav.php:205 +msgid "Event Calendar" +msgstr "Calendario" + +#: ../../include/nav.php:206 +msgid "See all events" +msgstr "Guarda tutti gli eventi" + +#: ../../include/nav.php:207 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" + +#: ../../include/nav.php:210 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" + +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" + +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" + +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" + +#: ../../include/nav.php:257 +msgid "Please wait..." +msgstr "Attendere..." + +#: ../../view/theme/redbasic/php/config.php:6 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinito)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Impostazioni del tema" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Scegli uno schema" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Barra di navigazione ristretta" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Barra di navigazione: Colore di sfondo" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Barra di navigazione: Gradiente superiore" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Barra di navigazione: Gradiente inferiore" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Bottone di navigazione attivo: Gradiente superiore" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Bottone di navigazione attivo: Gradiente inferiore" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Barra di navigazione: Colore del bordo" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Barra di navigazione: Colore delle icone" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Barra di navigazione: Colore dell'icona attiva" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "colore del link" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Colore del font del banner" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Colore di sfondo" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Immagine di sfondo" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Colore di sfondo degli oggetti" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Colore di sfondo dei commenti" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Colore del bordo dei commenti" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Spostamento a destra dei commenti" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Colore di base per le icone" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Colore per le icone in mouse-over" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Dimensione font per tutto il sito" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Esempio: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Dimensioni del carattere per post e commenti" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Colore del carattere per post e commenti" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Raggio degli angoli stondati" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Profondità dell'ombra delle foto" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Larghezza massima dell'area dei contenuti in pixel" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Lascia vuoto per usare il valore predefinito" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Allinea a sinistra il contenuto della pagina" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Opacità minima della barra di navigazione - per nasconderla" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Dimensione foto dell'autore della conversazione" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../boot.php:1169 +#: ../../boot.php:1194 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Cerca %1$s (%2$s)" -#: ../../boot.php:1169 +#: ../../boot.php:1194 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1487 +#: ../../boot.php:1512 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1490 +#: ../../boot.php:1515 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1694 +#: ../../boot.php:1719 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla" -#: ../../boot.php:1715 +#: ../../boot.php:1740 msgid "Login/Email" msgstr "Login/Email" -#: ../../boot.php:1716 +#: ../../boot.php:1741 msgid "Password" msgstr "Password" -#: ../../boot.php:1717 +#: ../../boot.php:1742 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1720 +#: ../../boot.php:1745 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:2286 +#: ../../boot.php:2314 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" -#: ../../boot.php:2441 +#: ../../boot.php:2469 msgid "Website SSL certificate is not valid. Please correct." msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../boot.php:2444 +#: ../../boot.php:2472 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Errore SSL su %s" -#: ../../boot.php:2548 +#: ../../boot.php:2576 msgid "Cron/Scheduled tasks not running." msgstr "Processi cron non avviati." -#: ../../boot.php:2552 +#: ../../boot.php:2580 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron non è stato eseguito %s" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 0b7fe795b..cceeeda4e 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -72,6 +72,150 @@ App::$strings["Requested profile is not available."] = "Il profilo richiesto non App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +App::$strings["recipient not found"] = "Destinatario non trovato"; +App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; +App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +App::$strings["mail delivered"] = "messaggio recapitato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +App::$strings["Options"] = "Opzioni"; +App::$strings["Redeliver"] = "Reinvia"; +App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +App::$strings["Yes"] = "Sì"; +App::$strings["No"] = "No"; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +App::$strings["Submit"] = "Salva"; +App::$strings["Public Hubs"] = "Hub pubblici"; +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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = "Statistiche"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rate"] = "Valuta"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["View"] = "Guarda"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +App::$strings["Passwords do not match."] = "Le password non corrispondono."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; +App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; +App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; +App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +App::$strings["Terms of Service"] = "Condizioni d'Uso"; +App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +App::$strings["Your email address"] = "Il tuo indirizzo email"; +App::$strings["Choose a password"] = "Scegli una password"; +App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; +App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +App::$strings["Name or caption"] = "Nome o titolo"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +App::$strings["Choose a short nickname"] = "Scegli un nome breve"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; +App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; +App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sì"; +App::$strings["Registration"] = "Registrazione"; +App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; +App::$strings["Register"] = "Registrati"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Public access denied."] = "Accesso pubblico negato."; +App::$strings["Item not found."] = "Elemento non trovato."; +App::$strings["Photos"] = "Foto"; +App::$strings["Cancel"] = "Annulla"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Save"] = "Salva"; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["New"] = "Novità"; +App::$strings["All"] = "Tutti"; +App::$strings["New Connections"] = "Nuovi contatti"; +App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +App::$strings["All Connections"] = "Tutti i contatti"; +App::$strings["Show all connections"] = "Mostra tutti i contatti"; +App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica il contatto"; +App::$strings["Delete connection"] = "Elimina il contatto"; +App::$strings["Channel address"] = "Indirizzo del canale"; +App::$strings["Network"] = "Network"; +App::$strings["Status"] = "Stato"; +App::$strings["Connected"] = "In contatto"; +App::$strings["Approve connection"] = "Approva questo contatto"; +App::$strings["Approve"] = "Approva"; +App::$strings["Ignore connection"] = "Ignora il contatto"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Attività recenti"; +App::$strings["Connections"] = "Contatti"; +App::$strings["Search"] = "Cerca"; +App::$strings["Search your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Find"] = "Cerca"; +App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Cover Photos"] = "Copertine del canale"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +App::$strings["female"] = "femmina"; +App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["male"] = "maschio"; +App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["cover photo"] = "Copertina del canale"; +App::$strings["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Upload Cover Photo"] = "Carica una copertina"; +App::$strings["or"] = "o"; +App::$strings["skip this step"] = "salta questo passaggio"; +App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +App::$strings["Crop Image"] = "Ritaglia immagine"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +App::$strings["Done Editing"] = "Modifica terminata"; App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; @@ -99,10 +243,11 @@ App::$strings["Your account email address must match this in order to use the we App::$strings["Website URL"] = "URL completo del sito"; App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; -App::$strings["Submit"] = "Salva"; +App::$strings["Basic/Minimal Social Networking"] = "Social network basilare"; +App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; +App::$strings["Professional"] = "Professionale"; App::$strings["Site settings"] = "Impostazioni del hub"; -App::$strings["Enable \$Projectname advanced features?"] = "Vuoi attivare le funzionalità avanzate di \$Projectname?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Alcune funzionalità avanzate, per quanto utili, potrebbero essere adatte solo a un pubblico tecnicamente preparato."; +App::$strings["Server Configuration/Role"] = "Configurazione del server"; App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; App::$strings["PHP version"] = "Versione PHP"; App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; @@ -161,39 +306,6 @@ App::$strings["The database configuration file \".htconfig.php\" could not be wr App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; App::$strings["

    What next

    "] = "

    I prossimi passi

    "; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -App::$strings["recipient not found"] = "Destinatario non trovato"; -App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; -App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; -App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; -App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; -App::$strings["Import selected"] = "Importa i selezionati"; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["Share"] = "Condividi"; -App::$strings["View"] = "Guarda"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Page Title"] = "Titolo della pagina"; -App::$strings["Created"] = "Creato"; -App::$strings["Edited"] = "Modificato"; -App::$strings["Invalid file type."] = "Tipo di file non valido."; -App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; -App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; -App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; -App::$strings["Import complete."] = "Importazione completata."; -App::$strings["Public access denied."] = "Accesso pubblico negato."; App::$strings["%d rating"] = array( 0 => "%d valutazione", 1 => "%d valutazioni", @@ -213,7 +325,6 @@ App::$strings["Don't suggest"] = "Non fornire suggerimenti"; App::$strings["Common connections:"] = "Contatti in comune:"; App::$strings["Global Directory"] = "Elenchi pubblici globali"; App::$strings["Local Directory"] = "Elenco canali su questo hub"; -App::$strings["Find"] = "Cerca"; App::$strings["Finding:"] = "Ricerca:"; App::$strings["Channel Suggestions"] = "Canali suggeriti"; App::$strings["next page"] = "pagina successiva"; @@ -224,184 +335,6 @@ App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; App::$strings["Newest to Oldest"] = "Prima i più recenti"; App::$strings["Oldest to Newest"] = "Prima i più vecchi"; App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["Profile not found."] = "Profilo non trovato."; -App::$strings["Profile deleted."] = "Profilo eliminato."; -App::$strings["Profile-"] = "Profilo-"; -App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; -App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; -App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; -App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; -App::$strings["Marital Status"] = "Stato sentimentale"; -App::$strings["Romantic Partner"] = "Partner affettivo"; -App::$strings["Likes"] = "Mi piace"; -App::$strings["Dislikes"] = "Non mi piace"; -App::$strings["Work/Employment"] = "Lavoro/impiego"; -App::$strings["Religion"] = "Religione"; -App::$strings["Political Views"] = "Orientamento politico"; -App::$strings["Gender"] = "Sesso"; -App::$strings["Sexual Preference"] = "Preferenze sessuali"; -App::$strings["Homepage"] = "Home page"; -App::$strings["Interests"] = "Interessi"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["Profile updated."] = "Profilo aggiornato."; -App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Sì"; -App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; -App::$strings["View this profile"] = "Guarda questo profilo"; -App::$strings["Edit visibility"] = "Cambia la visibilità"; -App::$strings["Profile Tools"] = "Gestione del profilo"; -App::$strings["Change cover photo"] = "Cambia la copertina del canale"; -App::$strings["Change profile photo"] = "Cambia la foto del profilo"; -App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; -App::$strings["Clone this profile"] = "Clona questo profilo"; -App::$strings["Delete this profile"] = "Elimina questo profilo"; -App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; -App::$strings["Personal"] = "Personali"; -App::$strings["Relation"] = "Relazione"; -App::$strings["Miscellaneous"] = "Altro"; -App::$strings["Import profile from file"] = "Importa il profilo da un file"; -App::$strings["Export profile to file"] = "Esporta il profilo in un file"; -App::$strings["Your gender"] = "Sesso"; -App::$strings["Marital status"] = "Stato civile"; -App::$strings["Sexual preference"] = "Preferenze sessuali"; -App::$strings["Profile name"] = "Nome del profilo"; -App::$strings["Required"] = "Obbligatorio"; -App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; -App::$strings["Your full name"] = "Il tuo nome completo"; -App::$strings["Title/Description"] = "Titolo/descrizione"; -App::$strings["Street address"] = "Indirizzo (via/piazza)"; -App::$strings["Locality/City"] = "Località"; -App::$strings["Region/State"] = "Regione/stato"; -App::$strings["Postal/Zip code"] = "CAP"; -App::$strings["Country"] = "Nazione"; -App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; -App::$strings["Since (date)"] = "dal (data)"; -App::$strings["Tell us about yourself"] = "Raccontaci di te..."; -App::$strings["Homepage URL"] = "Indirizzo home page"; -App::$strings["Hometown"] = "Città dove vivo"; -App::$strings["Political views"] = "Orientamento politico"; -App::$strings["Religious views"] = "Orientamento religioso"; -App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; -App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -App::$strings["Musical interests"] = "Interessi musicali"; -App::$strings["Books, literature"] = "Libri, letteratura"; -App::$strings["Television"] = "Televisione"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; -App::$strings["Hobbies/Interests"] = "Hobby/interessi"; -App::$strings["Love/Romance"] = "Amore"; -App::$strings["School/Education"] = "Scuola/educazione"; -App::$strings["Contact information and social networks"] = "Contatti e social network"; -App::$strings["My other channels"] = "I miei altri canali"; -App::$strings["Profile Image"] = "Immagine del profilo"; -App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Edit post"] = "Modifica post"; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; -App::$strings["Photos"] = "Foto"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; -App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -App::$strings["Posts and comments"] = "Post e commenti"; -App::$strings["Only posts"] = "Solo post"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["New"] = "Novità"; -App::$strings["All"] = "Tutti"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["All Connections"] = "Tutti i contatti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["Pending approval"] = "In attesa di conferma"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Delete connection"] = "Elimina il contatto"; -App::$strings["Channel address"] = "Indirizzo del canale"; -App::$strings["Network"] = "Network"; -App::$strings["Status"] = "Stato"; -App::$strings["Connected"] = "In contatto"; -App::$strings["Approve connection"] = "Approva questo contatto"; -App::$strings["Approve"] = "Approva"; -App::$strings["Ignore connection"] = "Ignora il contatto"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Attività recenti"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Connections search"] = "Ricerca tra i contatti"; -App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Cover Photos"] = "Copertine del canale"; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["female"] = "femmina"; -App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["male"] = "maschio"; -App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["cover photo"] = "Copertina del canale"; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Upload Cover Photo"] = "Carica una copertina"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "salta questo passaggio"; -App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -App::$strings["Crop Image"] = "Ritaglia immagine"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -App::$strings["Done Editing"] = "Modifica terminata"; -App::$strings["webpage"] = "pagina web"; -App::$strings["block"] = "block"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s elemento installato"; -App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; -App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; -App::$strings["Invalid request."] = "Richiesta non valida."; -App::$strings["channel"] = "il canale"; -App::$strings["thing"] = "Oggetto"; -App::$strings["Channel unavailable."] = "Canale non trovato."; -App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -App::$strings["photo"] = "la foto"; -App::$strings["status"] = "il messaggio di stato"; -App::$strings["event"] = "l'evento"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -App::$strings["Action completed."] = "Comando completato."; -App::$strings["Thank you."] = "Grazie."; App::$strings["This site is not a directory server"] = "Questo non è un directory server"; App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; App::$strings["Item not found"] = "Elemento non trovato"; @@ -414,14 +347,40 @@ App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facolt App::$strings["Edit Layout"] = "Modifica il layout"; App::$strings["Page link"] = "Link alla pagina"; App::$strings["Edit Webpage"] = "Modifica la pagina web"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; +App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +App::$strings["Unable to create menu."] = "Impossibile creare il menù."; +App::$strings["Menu Name"] = "Nome del menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; +App::$strings["Menu Title"] = "Titolo del menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; +App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; +App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; +App::$strings["Submit and proceed"] = "Salva e procedi"; +App::$strings["Menus"] = "Menù"; +App::$strings["Drop"] = "Elimina"; +App::$strings["Created"] = "Creato"; +App::$strings["Edited"] = "Modificato"; +App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; +App::$strings["Delete this menu"] = "Elimina questo menù"; +App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; +App::$strings["Edit this menu"] = "Modifica questo menù"; +App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +App::$strings["Menu not found."] = "Menù non trovato."; +App::$strings["Edit Menu"] = "Modifica menù"; +App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; +App::$strings["Menu name"] = "Nome del menù"; +App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +App::$strings["Menu title"] = "Titolo del menù"; +App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +App::$strings["Not found."] = "Non trovato."; App::$strings["App installed."] = "App installata"; App::$strings["Malformed app."] = "L'app contiene errori"; App::$strings["Embed code"] = "Inserisci il codice"; App::$strings["Edit App"] = "Modifica app"; App::$strings["Create App"] = "Crea una app"; App::$strings["Name of app"] = "Nome app"; +App::$strings["Required"] = "Obbligatorio"; App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; App::$strings["Description"] = "Descrizione"; App::$strings["Photo icon URL"] = "URL icona"; @@ -446,7 +405,6 @@ App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; App::$strings["Visible to:"] = "Visibile a:"; -App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["Permission Denied."] = "Permesso negato."; App::$strings["File not found."] = "File non trovato."; App::$strings["Edit file permissions"] = "Modifica i permessi del file"; @@ -459,377 +417,57 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incol App::$strings["Share this file"] = "Condividi questo file"; App::$strings["Show URL to this file"] = "Mostra l'URL del file"; App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; -App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; -App::$strings["Connection updated."] = "Contatto aggiornato."; -App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; -App::$strings["is now connected to"] = "ha come nuovo contatto"; -App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; -App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; -App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; -App::$strings["View Profile"] = "Profilo"; -App::$strings["View %s's profile"] = "Guarda il profilo di %s"; -App::$strings["Refresh Permissions"] = "Modifica i permessi"; -App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; -App::$strings["Recent Activity"] = "Attività recenti"; -App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; -App::$strings["Unblock"] = "Sblocca"; -App::$strings["Block"] = "Blocca"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; -App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; -App::$strings["Unignore"] = "Non ignorare"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; -App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; -App::$strings["Unarchive"] = "Non archiviare"; -App::$strings["Archive"] = "Archivia"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; -App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; -App::$strings["Unhide"] = "Non nascondere"; -App::$strings["Hide"] = "Nascondi"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; -App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; -App::$strings["Delete this connection"] = "Elimina questo contatto"; -App::$strings["Me"] = "Me"; -App::$strings["Family"] = "Famiglia"; +App::$strings["Name is required"] = "Il nome è obbligatorio"; +App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; +App::$strings["Update"] = "Aggiorna"; +App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; +App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; +App::$strings["Token saved."] = "Token salvato."; +App::$strings["Not valid email."] = "Email non valida."; +App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; +App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; +App::$strings["Password verification failed."] = "Verifica della password fallita."; +App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +App::$strings["Password changed."] = "Password cambiata."; +App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; App::$strings["Friends"] = "Amici"; -App::$strings["Acquaintances"] = "Conoscenti"; -App::$strings["Approve this connection"] = "Approva questo contatto"; -App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; -App::$strings["Set Affinity"] = "Scegli l'affinità"; -App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; -App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; -App::$strings["none"] = "--"; -App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; -App::$strings["Connection: %s"] = "Contatto: %s"; -App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; -App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; -App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; -App::$strings["Available locations:"] = "Indirizzi disponibili"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; -App::$strings["Connection Tools"] = "Gestione dei contatti"; -App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; -App::$strings["Optionally explain your rating"] = "Commento facoltativo"; -App::$strings["Custom Filter"] = "Filtro personalizzato"; -App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; -App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; -App::$strings["This information is public!"] = "Questa informazione è pubblica!"; -App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; -App::$strings["inherited"] = "derivato"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; +App::$strings["Settings updated."] = "Impostazioni aggiornate."; +App::$strings["Add application"] = "Aggiungi una app"; +App::$strings["Name of application"] = "Nome dell'applicazione"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Redirect"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; +App::$strings["Icon url"] = "Url icona"; +App::$strings["Optional"] = "Facoltativo"; +App::$strings["Application not found."] = "Applicazione non trovata."; +App::$strings["Connected Apps"] = "App connesse"; +App::$strings["Client key starts with"] = "La client key inizia con"; +App::$strings["No name"] = "Nessun nome"; +App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; +App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; +App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; +App::$strings["Account Settings"] = "Il tuo account"; +App::$strings["Current Password"] = "Password attuale"; +App::$strings["Enter New Password"] = "Nuova password"; +App::$strings["Confirm New Password"] = "Conferma la nuova password"; +App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; +App::$strings["Email Address:"] = "Indirizzo email:"; +App::$strings["Remove Account"] = "Elimina l'account"; +App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; +App::$strings["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."] = "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; +App::$strings["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:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; +App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; +App::$strings["Login Name"] = "Nome utente"; +App::$strings["Login Password"] = "Password"; +App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Their Settings"] = "Permessi concessi a te"; App::$strings["My Settings"] = "Permessi che concedo"; +App::$strings["inherited"] = "derivato"; App::$strings["Individual Permissions"] = "Permessi individuali"; App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; -App::$strings["Last update:"] = "Ultimo aggiornamento:"; -App::$strings["Privacy group created."] = "Gruppo di canali creato."; -App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; -App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; -App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; -App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; -App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; -App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; -App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; -App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; -App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; -App::$strings["Members"] = "Membri"; -App::$strings["All Connected Channels"] = "Tutti i canali connessi"; -App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -App::$strings["Unable to create menu."] = "Impossibile creare il menù."; -App::$strings["Menu Name"] = "Nome del menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; -App::$strings["Menu Title"] = "Titolo del menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; -App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; -App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; -App::$strings["Submit and proceed"] = "Salva e procedi"; -App::$strings["Menus"] = "Menù"; -App::$strings["Drop"] = "Elimina"; -App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; -App::$strings["Delete this menu"] = "Elimina questo menù"; -App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; -App::$strings["Edit this menu"] = "Modifica questo menù"; -App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -App::$strings["Menu not found."] = "Menù non trovato."; -App::$strings["Edit Menu"] = "Modifica menù"; -App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -App::$strings["Menu name"] = "Nome del menù"; -App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -App::$strings["Menu title"] = "Titolo del menù"; -App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -App::$strings["Not found."] = "Non trovato."; -App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Nothing to import."] = "Non c'è niente da importare."; -App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; -App::$strings["Import completed"] = "Importazione completata"; -App::$strings["Import Items"] = "Importa i contenuti"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; -App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; -App::$strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -App::$strings["Send invitations"] = "Spedisci inviti"; -App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; -App::$strings["or visit"] = "oppure visita"; -App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; -App::$strings["Location not found."] = "Indirizzo non trovato."; -App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; -App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; -App::$strings["No locations found."] = "Nessun indirizzo trovato."; -App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; -App::$strings["Primary"] = "Primario"; -App::$strings["Sync Now"] = "Sincronizza ora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; -App::$strings["Room not found"] = "Chat non trovata"; -App::$strings["Leave Room"] = "Lascia la chat"; -App::$strings["Delete Room"] = "Elimina questa chat"; -App::$strings["I am away right now"] = "Non sono presente"; -App::$strings["I am online"] = "Sono online"; -App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Encrypt text"] = "Cifratura del messaggio"; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["New Chatroom"] = "Nuova chat"; -App::$strings["Chatroom name"] = "Nome chat"; -App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; -App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; -App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; -App::$strings["Expiration"] = "Scadenza"; -App::$strings["min"] = "min"; -App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; -App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; -App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; -App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; -App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; -App::$strings["Event not found."] = "Evento non trovato."; -App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; -App::$strings["Event title"] = "Titolo dell'evento"; -App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; -App::$strings["Edit Category"] = "Modifica la categoria"; -App::$strings["Category"] = "Categoria"; -App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; -App::$strings["Start date and time"] = "Data e ora di inizio"; -App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; -App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; -App::$strings["Finish date and time"] = "Data e ora di fine"; -App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; -App::$strings["Edit Description"] = "Modifica la descrizione"; -App::$strings["Edit Location"] = "Modifica il luogo"; -App::$strings["Share this event"] = "Condividi questo evento"; -App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; -App::$strings["Advanced Options"] = "Opzioni avanzate"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Modifica l'evento"; -App::$strings["Delete event"] = "Elimina l'evento"; -App::$strings["Link to Source"] = "Link al sito d'origine"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Modifica l'evento"; -App::$strings["Create Event"] = "Crea un evento"; -App::$strings["Previous"] = "Precendente"; -App::$strings["Export"] = "Esporta"; -App::$strings["Month"] = "Mese"; -App::$strings["Week"] = "Settimana"; -App::$strings["Day"] = "Giorno"; -App::$strings["Today"] = "Oggi"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -App::$strings["Messages"] = "Messaggi"; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Conversation removed."] = "Conversazione rimossa."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["Send"] = "Invia"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Delivery report"] = "Rapporto di trasmissione"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Delete Conversation"] = "Elimina la conversazione"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; -App::$strings["No valid account found."] = "Nessun account valido trovato."; -App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; -App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; -App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; -App::$strings["Password Reset"] = "Reimposta la password"; -App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; -App::$strings["Your new password is"] = "La tua nuova password è"; -App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; -App::$strings["click here to login"] = "clicca qui per accedere"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; -App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; -App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; -App::$strings["Email Address"] = "Indirizzo email"; -App::$strings["Reset"] = "Reimposta"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; -App::$strings["Mood"] = "Umore"; -App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -App::$strings["Create a new channel"] = "Crea un nuovo canale"; -App::$strings["Channel Manager"] = "Gestione canali"; -App::$strings["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; -App::$strings["Default Channel"] = "Canale predefinito"; -App::$strings["Make Default"] = "Rendi predefinito"; -App::$strings["%d new messages"] = "%d nuovi messaggi"; -App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -App::$strings["Delegated Channel"] = "Canale delegato"; -App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; -App::$strings["System Notifications"] = "Notifiche di sistema"; -App::$strings["Profile Match"] = "Profili corrispondenti"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; -App::$strings["is interested in:"] = "interessi personali:"; -App::$strings["No matches"] = "Nessun risultato"; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; -App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Remove"] = "Rimuovi"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Caption"] = "Didascalia"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["Name is required"] = "Il nome è obbligatorio"; -App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["Update"] = "Aggiorna"; -App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; -App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; -App::$strings["Token saved."] = "Token salvato."; -App::$strings["Not valid email."] = "Email non valida."; -App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; -App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; -App::$strings["Password verification failed."] = "Verifica della password fallita."; -App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -App::$strings["Password changed."] = "Password cambiata."; -App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; -App::$strings["Settings updated."] = "Impostazioni aggiornate."; -App::$strings["Add application"] = "Aggiungi una app"; -App::$strings["Name of application"] = "Nome dell'applicazione"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Redirect"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; -App::$strings["Icon url"] = "Url icona"; -App::$strings["Optional"] = "Facoltativo"; -App::$strings["Application not found."] = "Applicazione non trovata."; -App::$strings["Connected Apps"] = "App connesse"; -App::$strings["Client key starts with"] = "La client key inizia con"; -App::$strings["No name"] = "Nessun nome"; -App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; -App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; -App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; -App::$strings["Account Settings"] = "Il tuo account"; -App::$strings["Current Password"] = "Password attuale"; -App::$strings["Enter New Password"] = "Nuova password"; -App::$strings["Confirm New Password"] = "Conferma la nuova password"; -App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; -App::$strings["Email Address:"] = "Indirizzo email:"; -App::$strings["Remove Account"] = "Elimina l'account"; -App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["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."] = "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; -App::$strings["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:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; -App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; -App::$strings["Login Name"] = "Nome utente"; -App::$strings["Login Password"] = "Password"; -App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Off"] = "Off"; App::$strings["On"] = "On"; App::$strings["Additional Features"] = "Funzionalità opzionali"; @@ -842,6 +480,7 @@ App::$strings["Theme Settings"] = "Impostazioni del tema"; App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; App::$strings["Content Settings"] = "Impostazioni dei contenuti"; App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; +App::$strings["Select scheme"] = "Scegli uno schema"; App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; @@ -947,6 +586,198 @@ App::$strings["Remove Channel"] = "Elimina questo canale"; App::$strings["Remove this channel."] = "Elimina questo canale."; App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "Gruppo di canali creato."; +App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; +App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; +App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; +App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; +App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; +App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; +App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; +App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; +App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; +App::$strings["Members"] = "Membri"; +App::$strings["All Connected Channels"] = "Tutti i canali connessi"; +App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; +App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Album not found."] = "Album non trovato."; +App::$strings["Delete Album"] = "Elimina album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; +App::$strings["Delete Photo"] = "Elimina foto"; +App::$strings["No photos selected"] = "Nessuna foto selezionata"; +App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +App::$strings["Upload Photos"] = "Carica foto"; +App::$strings["Enter an album name"] = "Scegli il nome dell'album"; +App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; +App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; +App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +App::$strings["Contact Photos"] = "Foto dei contatti"; +App::$strings["Show Newest First"] = "Prima i più recenti"; +App::$strings["Show Oldest First"] = "Prima i più vecchi"; +App::$strings["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +App::$strings["Photo not available"] = "Foto non disponibile"; +App::$strings["Use as profile photo"] = "Usa come foto del profilo"; +App::$strings["Use as cover photo"] = "Usa come copertina del canale"; +App::$strings["Private Photo"] = "Foto privata"; +App::$strings["Previous"] = "Precendente"; +App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; +App::$strings["Remove"] = "Rimuovi"; +App::$strings["Edit photo"] = "Modifica la foto"; +App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; +App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +App::$strings["Caption"] = "Didascalia"; +App::$strings["Add a Tag"] = "Aggiungi tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Share"] = "Condividi"; +App::$strings["Please wait"] = "Attendere"; +App::$strings["This is you"] = "Questo sei tu"; +App::$strings["Comment"] = "Commento"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["__ctx:title__ Likes"] = "Mi piace"; +App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; +App::$strings["__ctx:title__ Agree"] = "D'accordo"; +App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; +App::$strings["__ctx:title__ Abstain"] = "Astenuti"; +App::$strings["__ctx:title__ Attending"] = "Partecipano"; +App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; +App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; +App::$strings["View all"] = "Vedi tutto"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["webpage"] = "pagina web"; +App::$strings["block"] = "block"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s elemento installato"; +App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; +App::$strings["Nothing to import."] = "Non c'è niente da importare."; +App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +App::$strings["Import completed"] = "Importazione completata"; +App::$strings["Import Items"] = "Importa i contenuti"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; +App::$strings["File to Upload"] = "File da caricare"; +App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; +App::$strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", +); +App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +App::$strings["Send invitations"] = "Spedisci inviti"; +App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; +App::$strings["or visit"] = "oppure visita"; +App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +App::$strings["Location not found."] = "Indirizzo non trovato."; +App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; +App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; +App::$strings["No locations found."] = "Nessun indirizzo trovato."; +App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; +App::$strings["Address"] = "Indirizzo"; +App::$strings["Primary"] = "Primario"; +App::$strings["Sync Now"] = "Sincronizza ora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; +App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; +App::$strings["Invalid request."] = "Richiesta non valida."; +App::$strings["channel"] = "il canale"; +App::$strings["thing"] = "Oggetto"; +App::$strings["Channel unavailable."] = "Canale non trovato."; +App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "il messaggio di stato"; +App::$strings["event"] = "l'evento"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +App::$strings["Action completed."] = "Comando completato."; +App::$strings["Thank you."] = "Grazie."; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +App::$strings["Create a new channel"] = "Crea un nuovo canale"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Channel Manager"] = "Gestione canali"; +App::$strings["Current Channel"] = "Canale attuale"; +App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +App::$strings["Default Channel"] = "Canale predefinito"; +App::$strings["Make Default"] = "Rendi predefinito"; +App::$strings["%d new messages"] = "%d nuovi messaggi"; +App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +App::$strings["Delegated Channel"] = "Canale delegato"; +App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; +App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["Link Name"] = "Nome link"; +App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; +App::$strings["Order in list"] = "Ordine dell'elenco"; +App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +App::$strings["Submit and finish"] = "Salva e termina"; +App::$strings["Submit and continue"] = "Salva e continua"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Destinazione link"; +App::$strings["Edit menu"] = "Modifica il menù"; +App::$strings["Edit element"] = "Modifica l'elemento"; +App::$strings["Drop element"] = "Elimina l'elemento"; +App::$strings["New element"] = "Nuovo elemento"; +App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; +App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; +App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; +App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; +App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; +App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; +App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; +App::$strings["Link text"] = "Testo del link"; App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; App::$strings["# Accounts"] = "# account"; App::$strings["# blocked accounts"] = "# account bloccati"; @@ -976,7 +807,6 @@ App::$strings["My site has paid access only"] = "È un servizio a pagamento"; App::$strings["My site has free access only"] = "È un servizio gratuito"; App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; App::$strings["Site"] = "Sito"; -App::$strings["Registration"] = "Registrazione"; App::$strings["File upload"] = "Caricamento file"; App::$strings["Policies"] = "Politiche"; App::$strings["Advanced"] = "Avanzate"; @@ -1098,6 +928,8 @@ App::$strings["Request date"] = "Data richiesta"; App::$strings["Email"] = "Email"; App::$strings["No registrations."] = "Nessuna registrazione."; App::$strings["Deny"] = "Nega"; +App::$strings["Block"] = "Blocca"; +App::$strings["Unblock"] = "Sblocca"; App::$strings["All Channels"] = "Tutti i canali"; App::$strings["Register date"] = "Data registrazione"; App::$strings["Last login"] = "Ultimo accesso"; @@ -1144,6 +976,7 @@ App::$strings["Maintainer: "] = "Gestore:"; App::$strings["Minimum project version: "] = "Minima versione hubzilla"; App::$strings["Maximum project version: "] = "Massima versione hubzilla"; App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; +App::$strings["Compatible Server Roles: "] = "Ruoli compatibili per questo server"; App::$strings["Requires: "] = "Necessita di:"; App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; @@ -1186,13 +1019,162 @@ App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base) App::$strings["All available fields"] = "Tutti i campi disponibili"; App::$strings["Custom Fields"] = "Campi personalizzati"; App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; -App::$strings["Name or caption"] = "Nome o titolo"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -App::$strings["Choose a short nickname"] = "Scegli un nome breve"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; -App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["No valid account found."] = "Nessun account valido trovato."; +App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; +App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; +App::$strings["Password reset requested at %s"] = "È stato richiesto di reimpostare password su %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata."; +App::$strings["Password Reset"] = "Reimposta la password"; +App::$strings["Your password has been reset as requested."] = "La password è stata reimpostata come richiesto."; +App::$strings["Your new password is"] = "La tua nuova password è"; +App::$strings["Save or copy your new password - and then"] = "Salva o copia la tua nuova password, quindi"; +App::$strings["click here to login"] = "clicca qui per accedere"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso."; +App::$strings["Your password has changed at %s"] = "La tua password su %s è cambiata"; +App::$strings["Forgot your Password?"] = "Hai dimenticato la password?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare."; +App::$strings["Email Address"] = "Indirizzo email"; +App::$strings["Reset"] = "Reimposta"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; +App::$strings["Mood"] = "Umore"; +App::$strings["Set your current mood and tell your friends"] = "Scegli il tuo umore attuale per mostrarlo agli amici"; +App::$strings["Profile not found."] = "Profilo non trovato."; +App::$strings["Profile deleted."] = "Profilo eliminato."; +App::$strings["Profile-"] = "Profilo-"; +App::$strings["New profile created."] = "Il nuovo profilo è stato creato."; +App::$strings["Profile unavailable to clone."] = "Impossibile duplicare il profilo."; +App::$strings["Profile unavailable to export."] = "Il profilo non è disponibile per l'export."; +App::$strings["Profile Name is required."] = "Il nome del profilo è obbligatorio."; +App::$strings["Marital Status"] = "Stato sentimentale"; +App::$strings["Romantic Partner"] = "Partner affettivo"; +App::$strings["Likes"] = "Mi piace"; +App::$strings["Dislikes"] = "Non mi piace"; +App::$strings["Work/Employment"] = "Lavoro/impiego"; +App::$strings["Religion"] = "Religione"; +App::$strings["Political Views"] = "Orientamento politico"; +App::$strings["Gender"] = "Sesso"; +App::$strings["Sexual Preference"] = "Preferenze sessuali"; +App::$strings["Homepage"] = "Home page"; +App::$strings["Interests"] = "Interessi"; +App::$strings["Profile updated."] = "Profilo aggiornato."; +App::$strings["Hide your connections list from viewers of this profile"] = "Nascondi la tua lista di contatti ai visitatori di questo profilo"; +App::$strings["Edit Profile Details"] = "Modifica i dettagli del profilo"; +App::$strings["View this profile"] = "Guarda questo profilo"; +App::$strings["Edit visibility"] = "Cambia la visibilità"; +App::$strings["Profile Tools"] = "Gestione del profilo"; +App::$strings["Change cover photo"] = "Cambia la copertina del canale"; +App::$strings["Change profile photo"] = "Cambia la foto del profilo"; +App::$strings["Create a new profile using these settings"] = "Crea un nuovo profilo usando queste impostazioni"; +App::$strings["Clone this profile"] = "Clona questo profilo"; +App::$strings["Delete this profile"] = "Elimina questo profilo"; +App::$strings["Add profile things"] = "Aggiungi oggetti al profilo"; +App::$strings["Personal"] = "Personali"; +App::$strings["Relation"] = "Relazione"; +App::$strings["Miscellaneous"] = "Altro"; +App::$strings["Import profile from file"] = "Importa il profilo da un file"; +App::$strings["Export profile to file"] = "Esporta il profilo in un file"; +App::$strings["Your gender"] = "Sesso"; +App::$strings["Marital status"] = "Stato civile"; +App::$strings["Sexual preference"] = "Preferenze sessuali"; +App::$strings["Profile name"] = "Nome del profilo"; +App::$strings["This is your default profile."] = "Questo è il tuo profilo predefinito."; +App::$strings["Your full name"] = "Il tuo nome completo"; +App::$strings["Title/Description"] = "Titolo/descrizione"; +App::$strings["Street address"] = "Indirizzo (via/piazza)"; +App::$strings["Locality/City"] = "Località"; +App::$strings["Region/State"] = "Regione/stato"; +App::$strings["Postal/Zip code"] = "CAP"; +App::$strings["Country"] = "Nazione"; +App::$strings["Who (if applicable)"] = "Con chi (se possibile)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Per esempio: cathy123, Cathy Williams, cathy@example.com"; +App::$strings["Since (date)"] = "dal (data)"; +App::$strings["Tell us about yourself"] = "Raccontaci di te..."; +App::$strings["Homepage URL"] = "Indirizzo home page"; +App::$strings["Hometown"] = "Città dove vivo"; +App::$strings["Political views"] = "Orientamento politico"; +App::$strings["Religious views"] = "Orientamento religioso"; +App::$strings["Keywords used in directory listings"] = "Parole chiavi mostrate nell'elenco dei canali"; +App::$strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; +App::$strings["Musical interests"] = "Interessi musicali"; +App::$strings["Books, literature"] = "Libri, letteratura"; +App::$strings["Television"] = "Televisione"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film, danza, cultura, intrattenimento"; +App::$strings["Hobbies/Interests"] = "Hobby/interessi"; +App::$strings["Love/Romance"] = "Amore"; +App::$strings["School/Education"] = "Scuola/educazione"; +App::$strings["Contact information and social networks"] = "Contatti e social network"; +App::$strings["My other channels"] = "I miei altri canali"; +App::$strings["Profile Image"] = "Immagine del profilo"; +App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +App::$strings["System Notifications"] = "Notifiche di sistema"; +App::$strings["Profile Match"] = "Profili corrispondenti"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; +App::$strings["is interested in:"] = "interessi personali:"; +App::$strings["No matches"] = "Nessun risultato"; +App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; +App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Webpages"] = "Pagine web"; +App::$strings["Actions"] = "Azioni"; +App::$strings["Page Link"] = "Link alla pagina"; +App::$strings["Page Title"] = "Titolo della pagina"; +App::$strings["Invalid file type."] = "Tipo di file non valido."; +App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; +App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; +App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; +App::$strings["Import complete."] = "Importazione completata."; +App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; +App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; +App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; +App::$strings["Unable to generate preview."] = "Impossibile creare un'anteprima."; +App::$strings["Event title and start time are required."] = "Sono necessari il titolo e l'ora d'inizio dell'evento."; +App::$strings["Event not found."] = "Evento non trovato."; +App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; +App::$strings["Event title"] = "Titolo dell'evento"; +App::$strings["Categories (comma-separated list)"] = "Categorie (separate da virgola)"; +App::$strings["Edit Category"] = "Modifica la categoria"; +App::$strings["Category"] = "Categoria"; +App::$strings["Edit start date and time"] = "Modifica data/ora di inizio"; +App::$strings["Start date and time"] = "Data e ora di inizio"; +App::$strings["Finish date and time are not known or not relevant"] = "La data e l'ora di fine non sono necessarie"; +App::$strings["Edit finish date and time"] = "Modifica data/ora di fine"; +App::$strings["Finish date and time"] = "Data e ora di fine"; +App::$strings["Adjust for viewer timezone"] = "Adatta al fuso orario di chi legge"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante per eventi che avvengono online ma con un certo fuso orario."; +App::$strings["Edit Description"] = "Modifica la descrizione"; +App::$strings["Edit Location"] = "Modifica il luogo"; +App::$strings["Share this event"] = "Condividi questo evento"; +App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; +App::$strings["Advanced Options"] = "Opzioni avanzate"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Modifica l'evento"; +App::$strings["Delete event"] = "Elimina l'evento"; +App::$strings["Link to Source"] = "Link al sito d'origine"; +App::$strings["calendar"] = "calendario"; +App::$strings["Edit Event"] = "Modifica l'evento"; +App::$strings["Create Event"] = "Crea un evento"; +App::$strings["Export"] = "Esporta"; +App::$strings["Month"] = "Mese"; +App::$strings["Week"] = "Settimana"; +App::$strings["Day"] = "Giorno"; +App::$strings["Today"] = "Oggi"; +App::$strings["Event removed"] = "Evento eliminato"; +App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; +App::$strings["Import completed."] = "L'importazione è terminata con successo."; +App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +App::$strings["Import Channel"] = "Importa un canale"; +App::$strings["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."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; +App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; +App::$strings["Your old login password"] = "La password per il vecchio hub"; +App::$strings["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."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; +App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; App::$strings["Create Channel"] = "Crea un canale"; App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; @@ -1221,24 +1203,10 @@ App::$strings["Visible To"] = "Visibile a"; App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; App::$strings["Configuration Editor"] = "Editor di configurazione"; 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."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["Not found"] = "Non trovato"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Sandbox"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\""; -App::$strings["Revision Comparison"] = "Confronto tra revisioni"; -App::$strings["Revert"] = "Ripristina"; -App::$strings["Enter the name of your new wiki:"] = "Nome della tua nuova pagina wiki:"; -App::$strings["Enter the name of the new page:"] = "Nome della tua nuova pagina:"; -App::$strings["Enter the new name:"] = "Nuovo nome:"; -App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto"; -App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Scegli le immagini da inserire"; -App::$strings["Choose an album"] = "Scegli un album"; -App::$strings["Choose a different album..."] = "Scegli un altro album..."; -App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album"; -App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto"; -App::$strings["Error getting album"] = "Errore nell'ottenere l'album"; +App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; +App::$strings["Posts and comments"] = "Post e commenti"; +App::$strings["Only posts"] = "Solo post"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; App::$strings["Version %s"] = "Versione %s"; App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1258,15 +1226,10 @@ App::$strings["Layouts"] = "Layout"; App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; App::$strings["Layout Description"] = "Descrizione del layout"; App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["Public Hubs"] = "Hub pubblici"; -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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; App::$strings["Permissions denied."] = "Permesso negato."; @@ -1274,61 +1237,90 @@ App::$strings["Import"] = "Importa"; App::$strings["No channel."] = "Nessun canale."; App::$strings["Common connections"] = "Contatti in comune"; App::$strings["No connections in common."] = "Nessun contatto in comune."; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -App::$strings["Passwords do not match."] = "Le password non corrispondono."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; -App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; -App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; -App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -App::$strings["Terms of Service"] = "Condizioni d'Uso"; -App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -App::$strings["Your email address"] = "Il tuo indirizzo email"; -App::$strings["Choose a password"] = "Scegli una password"; -App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; -App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sì"; -App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; -App::$strings["Register"] = "Registrati"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se ti sarà mostrata la pagina di login, segui le istruzioni sull'email per continuare."; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; -App::$strings["Apps"] = "App"; -App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; -App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; -App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -App::$strings["Menu Item Permissions"] = "Permessi del menu"; -App::$strings["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; -App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; -App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; -App::$strings["Order in list"] = "Ordine dell'elenco"; -App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -App::$strings["Submit and finish"] = "Salva e termina"; -App::$strings["Submit and continue"] = "Salva e continua"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Destinazione link"; -App::$strings["Edit menu"] = "Modifica il menù"; -App::$strings["Edit element"] = "Modifica l'elemento"; -App::$strings["Drop element"] = "Elimina l'elemento"; -App::$strings["New element"] = "Nuovo elemento"; -App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; -App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; -App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; -App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; -App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -App::$strings["Link text"] = "Testo del link"; +App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +App::$strings["Messages"] = "Messaggi"; +App::$strings["Message recalled."] = "Messaggio revocato."; +App::$strings["Conversation removed."] = "Conversazione rimossa."; +App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +App::$strings["Send Private Message"] = "Invia un messaggio privato"; +App::$strings["To:"] = "A:"; +App::$strings["Subject:"] = "Oggetto:"; +App::$strings["Attach file"] = "Allega file"; +App::$strings["Send"] = "Invia"; +App::$strings["Set expiration date"] = "Data di scadenza"; +App::$strings["Encrypt text"] = "Cifratura del messaggio"; +App::$strings["Delete message"] = "Elimina il messaggio"; +App::$strings["Delivery report"] = "Rapporto di trasmissione"; +App::$strings["Recall message"] = "Revoca il messaggio"; +App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; +App::$strings["Delete Conversation"] = "Elimina la conversazione"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +App::$strings["Send Reply"] = "Invia la risposta"; +App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; +App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; +App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; +App::$strings["Connection updated."] = "Contatto aggiornato."; +App::$strings["Failed to update connection record."] = "Impossibile aggiornare le informazioni del contatto."; +App::$strings["is now connected to"] = "ha come nuovo contatto"; +App::$strings["Could not access address book record."] = "Impossibile accedere alle informazioni della rubrica."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Il canale non è disponibile - impossibile aggiornare."; +App::$strings["Unable to set address book parameters."] = "Impossibile impostare i parametri della rubrica."; +App::$strings["Connection has been removed."] = "Il contatto è stato rimosso."; +App::$strings["View Profile"] = "Profilo"; +App::$strings["View %s's profile"] = "Guarda il profilo di %s"; +App::$strings["Refresh Permissions"] = "Modifica i permessi"; +App::$strings["Fetch updated permissions"] = "Guarda e modifica i permessi assegnati"; +App::$strings["Recent Activity"] = "Attività recenti"; +App::$strings["View recent posts and comments"] = "Leggi i post recenti e i commenti"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blocca ogni interazione con questo contatto (abilita/disabilita)"; +App::$strings["This connection is blocked!"] = "Questa connessione è tra quelle bloccate!"; +App::$strings["Unignore"] = "Non ignorare"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)"; +App::$strings["This connection is ignored!"] = "Questa connessione è tra quelle ignorate!"; +App::$strings["Unarchive"] = "Non archiviare"; +App::$strings["Archive"] = "Archivia"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti"; +App::$strings["This connection is archived!"] = "Questa connessione è tra quelle archiviate!"; +App::$strings["Unhide"] = "Non nascondere"; +App::$strings["Hide"] = "Nascondi"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Nascondi questo contatto a tutti gli altri (abilita/disabilita)"; +App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle nascoste!"; +App::$strings["Delete this connection"] = "Elimina questo contatto"; +App::$strings["Me"] = "Me"; +App::$strings["Family"] = "Famiglia"; +App::$strings["Acquaintances"] = "Conoscenti"; +App::$strings["Approve this connection"] = "Approva questo contatto"; +App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; +App::$strings["Set Affinity"] = "Scegli l'affinità"; +App::$strings["Set Profile"] = "Scegli il profilo da mostrare"; +App::$strings["Set Affinity & Profile"] = "Affinità e profilo"; +App::$strings["none"] = "--"; +App::$strings["Connection Default Permissions"] = "Permessi predefiniti dei nuovi contatti"; +App::$strings["Connection: %s"] = "Contatto: %s"; +App::$strings["Apply these permissions automatically"] = "Applica automaticamente questi permessi"; +App::$strings["Connection requests will be approved without your interaction"] = "Le richieste di entrare in contatto saranno approvate in automatico"; +App::$strings["This connection's primary address is"] = "Indirizzo primario di questo canale"; +App::$strings["Available locations:"] = "Indirizzi disponibili"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi."; +App::$strings["Connection Tools"] = "Gestione dei contatti"; +App::$strings["Slide to adjust your degree of friendship"] = "Trascina per restringere il grado di amicizia da mostrare"; +App::$strings["Slide to adjust your rating"] = "Trascina per cambiare la tua valutazione"; +App::$strings["Optionally explain your rating"] = "Commento facoltativo"; +App::$strings["Custom Filter"] = "Filtro personalizzato"; +App::$strings["Only import posts with this text"] = "Importa solo i post che contengono queste parole chiave"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto"; +App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; +App::$strings["This information is public!"] = "Questa informazione è pubblica!"; +App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; +App::$strings["Last update:"] = "Ultimo aggiornamento:"; +App::$strings["Apps"] = "App"; App::$strings["Continue"] = "Continua"; App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; @@ -1342,13 +1334,10 @@ App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; App::$strings["Save Bookmark"] = "Salva segnalibro"; App::$strings["URL of bookmark"] = "URL del segnalibro"; App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["Authentication failed."] = "Autenticazione fallita."; +App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; +App::$strings["Authenticate"] = "Accedi"; App::$strings["Please login."] = "Effettua l'accesso."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password."; App::$strings["Remove This Account"] = "Elimina questo account"; @@ -1372,6 +1361,11 @@ App::$strings["You may also export your posts and conversations for a particular App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2\$s "; App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"; +App::$strings["Item is not editable"] = "L'elemento non è modificabile"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; +App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; App::$strings["Thing updated"] = "L'oggetto è stato aggiornato"; App::$strings["Object store: failed"] = "Impossibile memorizzare l'oggetto."; App::$strings["Thing added"] = "L'Oggetto è stato aggiunto"; @@ -1386,22 +1380,36 @@ App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; -App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; -App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -App::$strings["Authentication failed."] = "Autenticazione fallita."; -App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; -App::$strings["Authenticate"] = "Accedi"; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; +App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; App::$strings["Files: shared with me"] = "File: condivisi con me"; App::$strings["NEW"] = "NOVITÀ"; App::$strings["Remove all files"] = "Elimina tutti i file"; App::$strings["Remove this file"] = "Elimina questo file"; -App::$strings["Channel added."] = "Canale aggiunto."; +App::$strings["Not found"] = "Non trovato"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Sandbox"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\""; +App::$strings["Revision Comparison"] = "Confronto tra revisioni"; +App::$strings["Revert"] = "Ripristina"; +App::$strings["Enter the name of your new wiki:"] = "Nome della tua nuova pagina wiki:"; +App::$strings["Enter the name of the new page:"] = "Nome della tua nuova pagina:"; +App::$strings["Enter the new name:"] = "Nuovo nome:"; +App::$strings["Embed image from photo albums"] = "Inserisci un'immagine dall'album foto"; +App::$strings["Embed an image from your albums"] = "Inserisci un'immagine dai tuoi album"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Scegli le immagini da inserire"; +App::$strings["Choose an album"] = "Scegli un album"; +App::$strings["Choose a different album..."] = "Scegli un altro album..."; +App::$strings["Error getting album list"] = "Errore nell'ottenere l'elenco degli album"; +App::$strings["Error getting photo link"] = "Errore nell'ottenere il link alla foto"; +App::$strings["Error getting album"] = "Errore nell'ottenere l'album"; App::$strings["Failed to create source. No channel selected."] = "Impossibile creare la sorgente. Nessun canale selezionato."; App::$strings["Source created."] = "Sorgente creata."; App::$strings["Source updated."] = "Sorgente aggiornata."; @@ -1429,29 +1437,25 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s App::$strings["Tag removed"] = "Tag rimosso"; App::$strings["Remove Item Tag"] = "Rimuovi il tag"; App::$strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; -App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; -App::$strings["Import completed."] = "L'importazione è terminata con successo."; -App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -App::$strings["Import Channel"] = "Importa un canale"; -App::$strings["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."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; -App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; -App::$strings["Your old login password"] = "La password per il vecchio hub"; -App::$strings["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."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; -App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; +App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; App::$strings["View Connections"] = "Elenco contatti"; App::$strings["Source of Item"] = "Sorgente"; +App::$strings["Room not found"] = "Chat non trovata"; +App::$strings["Leave Room"] = "Lascia la chat"; +App::$strings["Delete Room"] = "Elimina questa chat"; +App::$strings["I am away right now"] = "Non sono presente"; +App::$strings["I am online"] = "Sono online"; +App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["New Chatroom"] = "Nuova chat"; +App::$strings["Chatroom name"] = "Nome chat"; +App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; +App::$strings["%1\$s's Chatrooms"] = "Le chat di %1\$s"; +App::$strings["No chatrooms available"] = "Nessuna chat disponibile"; +App::$strings["Expiration"] = "Scadenza"; +App::$strings["min"] = "min"; App::$strings["Xchan Lookup"] = "Ricerca canale"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; App::$strings["Missing room name"] = "Chat senza nome"; @@ -1586,6 +1590,34 @@ App::$strings["Video"] = "Video"; App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["No Subject"] = "Nessun titolo"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; App::$strings["(Unknown)"] = "(Sconosciuto)"; App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; App::$strings["Visible to you only."] = "Visibile solo a te."; @@ -1599,94 +1631,197 @@ App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; App::$strings["Connection not found."] = "Contatto non trovato."; App::$strings["profile photo"] = "foto del profilo"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; -App::$strings["a new photo"] = "una nuova foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["General Features"] = "Funzionalità di base"; -App::$strings["Content Expiration"] = "Scadenza"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; -App::$strings["Multiple Profiles"] = "Profili multipli"; -App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; -App::$strings["Advanced Profiles"] = "Profili avanzati"; -App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; -App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; -App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; -App::$strings["Web Pages"] = "Pagine web"; -App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; -App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; -App::$strings["Hide Rating"] = "Nascondi le valutazioni"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Nascondi i bottoni delle valutazioni sul tuo canale e sul profilo. Nota: le persone potranno comunque esprimere una valutazione altrove."; -App::$strings["Private Notes"] = "Note private"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; -App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; -App::$strings["Photo Location"] = "Posizione geografica"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; -App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; -App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato"; -App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; -App::$strings["Expert Mode"] = "Modalità esperto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; -App::$strings["Premium Channel"] = "Canale premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; -App::$strings["Post Composition Features"] = "Modalità di scrittura post"; -App::$strings["Large Photos"] = "Foto grandi"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; -App::$strings["Even More Encryption"] = "Cifratura addizionale"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; -App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; -App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; -App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; -App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; -App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; -App::$strings["Search by Date"] = "Ricerca per data"; -App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; -App::$strings["Privacy Groups"] = "Gruppi di canali"; -App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +App::$strings["newer"] = "più nuovi"; +App::$strings["No connections"] = "Nessun contatto"; +App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; +App::$strings["poke"] = "poke"; +App::$strings["poked"] = "ha mandato un poke"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["Monday"] = "lunedì"; +App::$strings["Tuesday"] = "martedì"; +App::$strings["Wednesday"] = "mercoledì"; +App::$strings["Thursday"] = "giovedì"; +App::$strings["Friday"] = "venerdì"; +App::$strings["Saturday"] = "sabato"; +App::$strings["Sunday"] = "domenica"; +App::$strings["January"] = "gennaio"; +App::$strings["February"] = "febbraio"; +App::$strings["March"] = "marzo"; +App::$strings["April"] = "aprile"; +App::$strings["May"] = "Mag"; +App::$strings["June"] = "giugno"; +App::$strings["July"] = "luglio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "settembre"; +App::$strings["October"] = "ottobre"; +App::$strings["November"] = "novembre"; +App::$strings["December"] = "dicembre"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; +App::$strings["activity"] = "l'attività"; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa i file da un cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Categories"] = "Categorie"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; App::$strings["Saved Searches"] = "Ricerche salvate"; -App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; -App::$strings["Network Personal Tab"] = "Attività personale"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; -App::$strings["Network New Tab"] = "Contenuti nuovi"; -App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; -App::$strings["Affinity Tool"] = "Filtro per affinità"; -App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; -App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; -App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; -App::$strings["Community Tagging"] = "Tag della comunità"; -App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; -App::$strings["Post Categories"] = "Categorie dei post"; -App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Reazioni emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; +App::$strings["add"] = "aggiungi"; App::$strings["Saved Folders"] = "Cartelle salvate"; -App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; -App::$strings["Dislike Posts"] = "Non mi piace"; -App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; -App::$strings["Star Posts"] = "Post con stella"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; -App::$strings["Tag Cloud"] = "Nuvola di tag"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; -App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione repliche"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Chatrooms"] = "Chat"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Wiki List"] = "Elenco wiki"; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; +App::$strings["For Members"] = "Per gli utenti"; +App::$strings["For Administrators"] = "Per gli amministratori"; +App::$strings["For Developers"] = "Per sviluppatori"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Plugin Features"] = "Plugin"; +App::$strings["New window"] = "Nuova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; App::$strings["Who can see this?"] = "Chi può vederlo?"; App::$strings["Custom selection"] = "Selezione personalizzata"; App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; App::$strings["Show"] = "Mostra"; App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; +App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +App::$strings["Empty name"] = "Nome vuoto"; +App::$strings["Name too long"] = "Nome troppo lungo"; +App::$strings["No account identifier"] = "Account senza identificativo"; +App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Edit Profile"] = "Modifica il profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Status:"] = "Stato:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Like this channel"] = "Mi piace questo canale"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Compleanno:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; +App::$strings["Tags:"] = "Tag:"; +App::$strings["Political Views:"] = "Orientamento politico:"; +App::$strings["Religion:"] = "Religione:"; +App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; +App::$strings["Likes:"] = "Mi piace:"; +App::$strings["Dislikes:"] = "Non mi piace:"; +App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; +App::$strings["My other channels:"] = "I miei altri canali:"; +App::$strings["Musical interests:"] = "Gusti musicali:"; +App::$strings["Books, literature:"] = "Libri, letteratura:"; +App::$strings["Television:"] = "Televisione:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +App::$strings["Love/Romance:"] = "Amore:"; +App::$strings["Work/employment:"] = "Lavoro:"; +App::$strings["School/education:"] = "Scuola:"; +App::$strings["Like this thing"] = "Mi piace"; App::$strings["Birthday"] = "Compleanno"; App::$strings["Age: "] = "Età:"; App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; @@ -1784,142 +1919,116 @@ App::$strings["Widowed"] = "Vedovo/a"; App::$strings["Uncertain"] = "Incerto/a"; App::$strings["It's complicated"] = "Relazione complicata"; App::$strings["Don't care"] = "Chi se ne frega"; -App::$strings["Ask me"] = "Chiedimelo"; -App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; -App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -App::$strings["Protocol disabled."] = "Protocollo disabilitato."; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; -App::$strings["poke"] = "poke"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["Monday"] = "lunedì"; -App::$strings["Tuesday"] = "martedì"; -App::$strings["Wednesday"] = "mercoledì"; -App::$strings["Thursday"] = "giovedì"; -App::$strings["Friday"] = "venerdì"; -App::$strings["Saturday"] = "sabato"; -App::$strings["Sunday"] = "domenica"; -App::$strings["January"] = "gennaio"; -App::$strings["February"] = "febbraio"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "aprile"; -App::$strings["May"] = "Mag"; -App::$strings["June"] = "giugno"; -App::$strings["July"] = "luglio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "settembre"; -App::$strings["October"] = "ottobre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "dicembre"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa i file da un cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Logout"] = "Esci"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Your chatrooms"] = "Le tue chat"; -App::$strings["Bookmarks"] = "Segnalibri"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Your wiki"] = "La tua wiki"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["%s - click to logout"] = "%s - clicca per uscire"; -App::$strings["Remote authentication"] = "Accedi dal tuo hub"; -App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Your grid"] = "La tua rete"; -App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Private mail"] = "Messaggi privati"; -App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; -App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Event Calendar"] = "Calendario"; -App::$strings["See all events"] = "Guarda tutti gli eventi"; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["Ask me"] = "Chiedimelo"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; +App::$strings["a new photo"] = "una nuova foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Upload New Photos"] = "Carica nuove foto"; +App::$strings["guest:"] = "ospite:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +App::$strings["Categories:"] = "Categorie:"; +App::$strings["Filed under:"] = "Classificato come:"; +App::$strings["View in context"] = "Vedi nel contesto"; +App::$strings["remove"] = "rimuovi"; App::$strings["Loading..."] = "Caricamento in corso..."; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; +App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +App::$strings["View Source"] = "Vedi il sorgente"; +App::$strings["Follow Thread"] = "Segui la discussione"; +App::$strings["Unfollow Thread"] = "Non seguire la discussione"; +App::$strings["Activity/Posts"] = "Attività e Post"; +App::$strings["Edit Connection"] = "Modifica il contatto"; +App::$strings["Message"] = "Messaggio"; +App::$strings["%s likes this."] = "Piace a %s."; +App::$strings["%s doesn't like this."] = "Non piace a %s."; +App::$strings["%2\$d people like this."] = array( + 0 => "", + 1 => "Piace a %2\$d persone.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "", + 1 => "Non piace a %2\$d persone.", +); +App::$strings["and"] = "e"; +App::$strings[", and %d other people"] = array( + 0 => "", + 1 => "e altre %d persone", +); +App::$strings["%s like this."] = "Piace a %s."; +App::$strings["%s don't like this."] = "Non piace a %s."; +App::$strings["Set your location"] = "La tua località"; +App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Dove sei ora?"; +App::$strings["Comments enabled"] = "Commenti abilitati"; +App::$strings["Comments disabled"] = "Commenti disabilitati"; +App::$strings["Page link name"] = "Nome del link alla pagina"; +App::$strings["Post as"] = "Pubblica come "; +App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; +App::$strings["Disable comments"] = "Disabilita i commenti"; +App::$strings["Toggle comments"] = "Abilita/disabilita i commenti"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Other networks and post services"] = "Invio ad altre reti o a siti esterni"; +App::$strings["Set publish date"] = "Data di uscita programmata"; +App::$strings["Discover"] = "Scopri"; +App::$strings["Imported public streams"] = "Contenuti pubblici importati"; +App::$strings["Commented Order"] = "Commenti recenti"; +App::$strings["Sort by Comment Date"] = "Per data del commento"; +App::$strings["Posted Order"] = "Post recenti"; +App::$strings["Sort by Post Date"] = "Per data di creazione"; +App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; +App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; +App::$strings["Starred"] = "Preferiti"; +App::$strings["Favourite Posts"] = "Post preferiti"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; +App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; +App::$strings["About"] = "Informazioni"; +App::$strings["Profile Details"] = "Dettagli del profilo"; +App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; +App::$strings["Manage Webpages"] = "Gestisci le pagine web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "D'accordo", + 1 => "D'accordo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "Non d'accordo", + 1 => "Non d'accordo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "Astenuto", + 1 => "Astenuti", +); App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; +App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; +App::$strings["edit"] = "modifica"; +App::$strings["Privacy Groups"] = "Gruppi di canali"; +App::$strings["Edit group"] = "Modifica il gruppo"; +App::$strings["Add privacy group"] = "Crea un gruppo di canali"; +App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; App::$strings["Starts:"] = "Inizio:"; App::$strings["Finishes:"] = "Fine:"; @@ -1929,66 +2038,6 @@ App::$strings["Needs Action"] = "Necessita di un intervento"; App::$strings["Completed"] = "Completato"; App::$strings["In Process"] = "In corso"; App::$strings["Cancelled"] = "Annullato"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; -App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; -App::$strings["edit"] = "modifica"; -App::$strings["Edit group"] = "Modifica il gruppo"; -App::$strings["Add privacy group"] = "Crea un gruppo di canali"; -App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; -App::$strings["add"] = "aggiungi"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; -App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -App::$strings["Empty name"] = "Nome vuoto"; -App::$strings["Name too long"] = "Nome troppo lungo"; -App::$strings["No account identifier"] = "Account senza identificativo"; -App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Like this channel"] = "Mi piace questo canale"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Compleanno:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; -App::$strings["Likes:"] = "Mi piace:"; -App::$strings["Dislikes:"] = "Non mi piace:"; -App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; -App::$strings["My other channels:"] = "I miei altri canali:"; -App::$strings["Musical interests:"] = "Gusti musicali:"; -App::$strings["Books, literature:"] = "Libri, letteratura:"; -App::$strings["Television:"] = "Televisione:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -App::$strings["Love/Romance:"] = "Amore:"; -App::$strings["Work/employment:"] = "Lavoro:"; -App::$strings["School/education:"] = "Scuola:"; -App::$strings["Like this thing"] = "Mi piace"; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; App::$strings["Attachments:"] = "Allegati:"; App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; @@ -2049,8 +2098,116 @@ App::$strings["__ctx:calendar__ month"] = "mese"; App::$strings["__ctx:calendar__ week"] = "settimana"; App::$strings["__ctx:calendar__ day"] = "giorno"; App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; -App::$strings["guest:"] = "ospite:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; +App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +App::$strings["Item was not found."] = "Elemento non trovato."; +App::$strings["No source file."] = "Nessun file di origine."; +App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +App::$strings["Path not available."] = "Percorso non disponibile."; +App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; +App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +App::$strings["Path not found."] = "Percorso del file non trovato."; +App::$strings["mkdir failed."] = "mkdir fallito."; +App::$strings["database storage failed."] = "scrittura su database fallita."; +App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["Logged out."] = "Uscita effettuata."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Login failed."] = "Accesso fallito."; +App::$strings[" and "] = "e"; +App::$strings["public profile"] = "profilo pubblico"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; +App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; +App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["General Features"] = "Funzionalità di base"; +App::$strings["Content Expiration"] = "Scadenza"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; +App::$strings["Multiple Profiles"] = "Profili multipli"; +App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +App::$strings["Advanced Profiles"] = "Profili avanzati"; +App::$strings["Additional profile sections and selections"] = "Informazioni aggiuntive del profilo"; +App::$strings["Profile Import/Export"] = "Importa/esporta il profilo"; +App::$strings["Save and load profile details across sites/channels"] = "Salva o ripristina le informazioni del profilo su siti diversi"; +App::$strings["Web Pages"] = "Pagine web"; +App::$strings["Provide managed web pages on your channel"] = "Attiva la creazione di pagine web sul tuo canale"; +App::$strings["Provide a wiki for your channel"] = "Fornisce una wiki per il tuo canale"; +App::$strings["Private Notes"] = "Note private"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Abilita il riquadro per scrivere annotazioni (in chiaro)"; +App::$strings["Navigation Channel Select"] = "Scegli il canale attivo dal menu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Scegli il canale attivo direttamente dal menu di navigazione"; +App::$strings["Photo Location"] = "Posizione geografica"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; +App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; +App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato"; +App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; +App::$strings["Expert Mode"] = "Modalità esperto"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; +App::$strings["Post Composition Features"] = "Modalità di scrittura post"; +App::$strings["Large Photos"] = "Foto grandi"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; +App::$strings["Even More Encryption"] = "Cifratura addizionale"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi"; +App::$strings["Enable Voting Tools"] = "Permetti i post con votazione"; +App::$strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; +App::$strings["Disable Comments"] = "Disabilita i commenti"; +App::$strings["Provide the option to disable comments for a post"] = "Permetti di disabilitare i commenti"; +App::$strings["Delayed Posting"] = "Pubblicazione ritardata"; +App::$strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Impedisci post e commenti duplicati"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima."; +App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; +App::$strings["Search by Date"] = "Ricerca per data"; +App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; +App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; +App::$strings["Network Personal Tab"] = "Attività personale"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; +App::$strings["Network New Tab"] = "Contenuti nuovi"; +App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; +App::$strings["Affinity Tool"] = "Filtro per affinità"; +App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; +App::$strings["Connection Filtering"] = "Filtro sui contatti"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; +App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; +App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; +App::$strings["Community Tagging"] = "Tag della comunità"; +App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; +App::$strings["Post Categories"] = "Categorie dei post"; +App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; +App::$strings["Emoji Reactions"] = "Reazioni emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; +App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; +App::$strings["Dislike Posts"] = "Non mi piace"; +App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; +App::$strings["Star Posts"] = "Post con stella"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; +App::$strings["Tag Cloud"] = "Nuvola di tag"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; +App::$strings["Premium Channel"] = "Canale premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; +App::$strings["Tags"] = "Tag"; +App::$strings["Keywords"] = "Parole chiave"; +App::$strings["have"] = "ho"; +App::$strings["has"] = "ha"; +App::$strings["want"] = "voglio"; +App::$strings["wants"] = "vuole"; +App::$strings["likes"] = "gli piace"; +App::$strings["dislikes"] = "non gli piace"; App::$strings["Not a valid email address"] = "Email non valida"; App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; @@ -2074,189 +2231,7 @@ App::$strings["This post contains an installable %s element, however you lack pe App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -App::$strings["Categories:"] = "Categorie:"; -App::$strings["Filed under:"] = "Classificato come:"; -App::$strings["View in context"] = "Vedi nel contesto"; -App::$strings["remove"] = "rimuovi"; -App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; -App::$strings["View Source"] = "Vedi il sorgente"; -App::$strings["Follow Thread"] = "Segui la discussione"; -App::$strings["Unfollow Thread"] = "Non seguire la discussione"; -App::$strings["Activity/Posts"] = "Attività e Post"; -App::$strings["Edit Connection"] = "Modifica il contatto"; -App::$strings["Message"] = "Messaggio"; -App::$strings["%s likes this."] = "Piace a %s."; -App::$strings["%s doesn't like this."] = "Non piace a %s."; -App::$strings["%2\$d people like this."] = array( - 0 => "", - 1 => "Piace a %2\$d persone.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "", - 1 => "Non piace a %2\$d persone.", -); -App::$strings["and"] = "e"; -App::$strings[", and %d other people"] = array( - 0 => "", - 1 => "e altre %d persone", -); -App::$strings["%s like this."] = "Piace a %s."; -App::$strings["%s don't like this."] = "Non piace a %s."; -App::$strings["Set your location"] = "La tua località"; -App::$strings["Clear browser location"] = "Rimuovi la località data dal browser"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Dove sei ora?"; -App::$strings["Page link name"] = "Nome del link alla pagina"; -App::$strings["Post as"] = "Pubblica come "; -App::$strings["Toggle voting"] = "Abilita/disabilita il voto"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Set publish date"] = "Data di uscita programmata"; -App::$strings["Discover"] = "Scopri"; -App::$strings["Imported public streams"] = "Contenuti pubblici importati"; -App::$strings["Commented Order"] = "Commenti recenti"; -App::$strings["Sort by Comment Date"] = "Per data del commento"; -App::$strings["Posted Order"] = "Post recenti"; -App::$strings["Sort by Post Date"] = "Per data di creazione"; -App::$strings["Posts that mention or involve you"] = "Post che ti riguardano"; -App::$strings["Activity Stream - by date"] = "Elenco attività - per data"; -App::$strings["Starred"] = "Preferiti"; -App::$strings["Favourite Posts"] = "Post preferiti"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Post marcati come spam"; -App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; -App::$strings["About"] = "Informazioni"; -App::$strings["Profile Details"] = "Dettagli del profilo"; -App::$strings["Files and Storage"] = "Archivio file"; -App::$strings["Chatrooms"] = "Chat"; -App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; -App::$strings["Manage Webpages"] = "Gestisci le pagine web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Partecipa", - 1 => "Partecipano", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "Non partecipa", - 1 => "Non partecipano", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisi", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "D'accordo", - 1 => "D'accordo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "Non d'accordo", - 1 => "Non d'accordo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "Astenuto", - 1 => "Astenuti", -); -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings[" and "] = "e"; -App::$strings["public profile"] = "profilo pubblico"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -App::$strings["Categories"] = "Categorie"; -App::$strings["Tags"] = "Tag"; -App::$strings["Keywords"] = "Parole chiave"; -App::$strings["have"] = "ho"; -App::$strings["has"] = "ha"; -App::$strings["want"] = "voglio"; -App::$strings["wants"] = "vuole"; -App::$strings["likes"] = "gli piace"; -App::$strings["dislikes"] = "non gli piace"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Plugin Features"] = "Plugin"; -App::$strings["Item was not found."] = "Elemento non trovato."; -App::$strings["No source file."] = "Nessun file di origine."; -App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -App::$strings["Path not available."] = "Percorso non disponibile."; -App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; -App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -App::$strings["Path not found."] = "Percorso del file non trovato."; -App::$strings["mkdir failed."] = "mkdir fallito."; -App::$strings["database storage failed."] = "scrittura su database fallita."; -App::$strings["Empty path"] = "La posizione è vuota"; App::$strings["%d invitation available"] = array( 0 => "%d invito disponibile", 1 => "%d inviti disponibili", @@ -2281,19 +2256,51 @@ App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; App::$strings["[no subject]"] = "[nessun titolo]"; App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings["New window"] = "Nuova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; -App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["Logout"] = "Esci"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Your photos"] = "Le tue foto"; +App::$strings["Your files"] = "I tuoi file"; +App::$strings["Your chatrooms"] = "Le tue chat"; +App::$strings["Your bookmarks"] = "I tuoi segnalibri"; +App::$strings["Your webpages"] = "Le tue pagine web"; +App::$strings["Your wiki"] = "La tua wiki"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["%s - click to logout"] = "%s - clicca per uscire"; +App::$strings["Remote authentication"] = "Accedi dal tuo hub"; +App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +App::$strings["Home Page"] = "Bacheca"; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Your grid"] = "La tua rete"; +App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +App::$strings["Channel home"] = "Bacheca del canale"; +App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +App::$strings["Notices"] = "Avvisi"; +App::$strings["Notifications"] = "Notifiche"; +App::$strings["See all notifications"] = "Vedi tutte le notifiche"; +App::$strings["Private mail"] = "Messaggi privati"; +App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; +App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +App::$strings["Event Calendar"] = "Calendario"; +App::$strings["See all events"] = "Guarda tutti gli eventi"; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; App::$strings["Theme settings"] = "Impostazioni del tema"; -App::$strings["Select scheme"] = "Scegli uno schema"; App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; App::$strings["Navigation bar gradient top color"] = "Barra di navigazione: Gradiente superiore"; -- cgit v1.2.3 From b775a1aa0e36a74f0f937d85f458fd12af18a264 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 30 Aug 2016 21:43:33 -0700 Subject: The 'save to folder' modal dialog looked like crap. Now it only looks like dung. --- view/css/conversation.css | 8 ++++++++ view/tpl/field_combobox.tpl | 10 +++++----- view/tpl/filer_dialog.tpl | 2 ++ 3 files changed, 15 insertions(+), 5 deletions(-) (limited to 'view') diff --git a/view/css/conversation.css b/view/css/conversation.css index 6c5171545..677198149 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -319,3 +319,11 @@ img.smiley.emoji:hover { width: 32px; height: 32px; } + +.combobox { + padding: 15px; +} + +#filer_save { + margin-left: 15px; +} \ No newline at end of file diff --git a/view/tpl/field_combobox.tpl b/view/tpl/field_combobox.tpl index 337c60673..523595c0b 100755 --- a/view/tpl/field_combobox.tpl +++ b/view/tpl/field_combobox.tpl @@ -1,13 +1,13 @@ -
    +
    - {{* html5 don't work on Chrome, Safari and IE9 see https://github.com/thgreasi/datalist-polyfill + {{* {{foreach $field.4 as $opt=>$val}} *}} + *}} - - + diff --git a/view/tpl/filer_dialog.tpl b/view/tpl/filer_dialog.tpl index ae59ab713..71e075958 100755 --- a/view/tpl/filer_dialog.tpl +++ b/view/tpl/filer_dialog.tpl @@ -1,4 +1,6 @@ +
    {{include file="field_combobox.tpl"}}
    +
    -- cgit v1.2.3 From 2b9322fc7d879fecbe334083bbd028538c985c54 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 31 Aug 2016 09:38:47 +0200 Subject: provide a possibility to create checklists in bbcode [x] creates a checked checkbox, [] creates an unchecked checkbox --- view/css/conversation.css | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'view') diff --git a/view/css/conversation.css b/view/css/conversation.css index 6c5171545..fe89e2536 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -319,3 +319,8 @@ img.smiley.emoji:hover { width: 32px; height: 32px; } + +input.listcheckbox { + margin: 0px; + vertical-align: middle; +} -- cgit v1.2.3 From 37ad734cead89df63edd75a4c3c3a4fb5b4847bc Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Wed, 31 Aug 2016 13:17:23 +0200 Subject: Dutch and Spanish string update --- view/es-es/hmessages.po | 12461 +++++++++++++++++++++++----------------------- view/es-es/hstrings.php | 3118 ++++++------ view/nl/hmessages.po | 12257 +++++++++++++++++++++++---------------------- view/nl/hstrings.php | 3986 +++++++-------- 4 files changed, 16046 insertions(+), 15776 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 0c3c85159..0e6b25df5 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-07-22 00:02-0700\n" -"PO-Revision-Date: 2016-07-29 07:05+0000\n" +"POT-Creation-Date: 2016-08-26 00:02-0700\n" +"PO-Revision-Date: 2016-08-31 06:34+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -24,83 +24,84 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social Networking" msgstr "Redes sociales" #: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social - Mostly Public" msgstr "Social - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social - Restricted" msgstr "Social - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:904 +#: ../../include/permissions.php:939 msgid "Social - Private" msgstr "Social - Privado" #: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Community Forum" msgstr "Foro de discusión" #: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Forum - Mostly Public" msgstr "Foro - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Forum - Restricted" msgstr "Foro - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:905 +#: ../../include/permissions.php:940 msgid "Forum - Private" msgstr "Foro - Privado" #: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:906 +#: ../../include/permissions.php:941 msgid "Feed Republish" msgstr "Republicar un \"feed\"" #: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:906 +#: ../../include/permissions.php:941 msgid "Feed - Mostly Public" msgstr "Feed - Público en su mayor parte" #: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:906 +#: ../../include/permissions.php:941 msgid "Feed - Restricted" msgstr "Feed - Restringido" #: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:907 +#: ../../include/permissions.php:942 msgid "Special Purpose" msgstr "Propósito especial" #: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:907 +#: ../../include/permissions.php:942 msgid "Special - Celebrity/Soapbox" msgstr "Especial - Celebridad / Tribuna improvisada" #: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:907 +#: ../../include/permissions.php:942 msgid "Special - Group Repository" msgstr "Especial - Repositorio de grupo" -#: ../../Zotlabs/Access/PermissionRoles.php:204 ../../include/selectors.php:49 +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../include/permissions.php:943 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/permissions.php:908 +#: ../../include/selectors.php:140 msgid "Other" msgstr "Otro" #: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:908 +#: ../../include/permissions.php:943 msgid "Custom/Expert Mode" msgstr "Modo personalizado/experto" @@ -108,19 +109,19 @@ msgstr "Modo personalizado/experto" msgid "Can view my channel stream and posts" msgstr "Pueden verse la actividad y publicaciones de mi canal" -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:33 +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 msgid "Can send me their channel stream and posts" msgstr "Se me pueden enviar entradas y contenido de un canal" -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:27 +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 msgid "Can view my default channel profile" msgstr "Puede verse mi perfil de canal predeterminado." -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:28 +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 msgid "Can view my connections" msgstr "Pueden verse mis conexiones" -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:29 +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 msgid "Can view my file storage and photos" msgstr "Pueden verse mi repositorio de ficheros y mis fotos" @@ -140,11 +141,11 @@ msgstr "Pueden crearse / modificarse páginas personales en mi canal" msgid "Can post on my channel (wall) page" msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:35 +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 msgid "Can comment on or like my posts" msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 msgid "Can send me private mail messages" msgstr "Se me pueden enviar mensajes privados" @@ -160,7 +161,7 @@ msgstr "Pueden reenviarse publicaciones a todas las conexiones de mi canal a tra msgid "Can chat with me" msgstr "Se puede chatear conmigo" -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:44 +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 msgid "Can source my public posts in derived channels" msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" @@ -172,7 +173,7 @@ msgstr "Se puede administrar mi canal" msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2605 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 msgid "Collection" msgstr "Colección" @@ -196,17 +197,17 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:796 -#: ../../Zotlabs/Module/Photos.php:1241 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1035 -#: ../../include/widgets.php:1599 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "Desconocido" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:93 -#: ../../include/conversation.php:1654 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 +#: ../../include/nav.php:95 msgid "Files" msgstr "Ficheros" @@ -218,25 +219,24 @@ msgstr "Total" msgid "Shared" msgstr "Compartido" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Layouts.php:184 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 #: ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Webpages.php:193 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" msgstr "Crear" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:823 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1612 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 msgid "Upload" msgstr "Subir" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:646 -#: ../../Zotlabs/Module/Settings.php:672 -#: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 +#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Nombre" @@ -245,7 +245,7 @@ msgid "Type" msgstr "Tipo" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1324 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 msgid "Size" msgstr "Tamaño" @@ -254,124 +254,121 @@ msgstr "Tamaño" msgid "Last Modified" msgstr "Última modificación" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 -#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Settings.php:706 ../../Zotlabs/Module/Thing.php:260 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/channel.php:976 -#: ../../include/channel.php:980 ../../include/menu.php:108 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 +#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:169 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1171 ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Settings.php:707 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:196 ../../Zotlabs/Lib/Apps.php:342 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Editwebpage.php:170 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 +#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "Eliminar" -#: ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Storage/Browser.php:301 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Está usando %1$s de su espacio disponible para ficheros." -#: ../../Zotlabs/Storage/Browser.php:290 +#: ../../Zotlabs/Storage/Browser.php:306 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Está usando %1$s de %2$s que tiene a su disposición para ficheros. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:302 +#: ../../Zotlabs/Storage/Browser.php:317 msgid "WARNING:" msgstr "ATENCIÓN:" -#: ../../Zotlabs/Storage/Browser.php:305 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Create new folder" msgstr "Crear nueva carpeta" -#: ../../Zotlabs/Storage/Browser.php:307 +#: ../../Zotlabs/Storage/Browser.php:324 msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Module/Import_items.php:114 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 -msgid "Permission denied" -msgstr "Permiso denegado" +#: ../../Zotlabs/Storage/Browser.php:337 +msgid "Drop files here to immediately upload" +msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Connedit.php:390 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Events.php:264 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 +#: ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 #: ../../Zotlabs/Module/Editwebpage.php:68 #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 #: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Item.php:213 ../../Zotlabs/Module/Item.php:221 -#: ../../Zotlabs/Module/Item.php:1071 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:91 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:121 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Channel.php:104 -#: ../../Zotlabs/Module/Channel.php:225 ../../Zotlabs/Module/Channel.php:266 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:626 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Webpages.php:73 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Api.php:13 -#: ../../Zotlabs/Module/Api.php:18 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/photos.php:27 ../../include/attach.php:141 -#: ../../include/attach.php:189 ../../include/attach.php:252 -#: ../../include/attach.php:266 ../../include/attach.php:273 -#: ../../include/attach.php:338 ../../include/attach.php:352 -#: ../../include/attach.php:359 ../../include/attach.php:439 -#: ../../include/attach.php:901 ../../include/attach.php:972 -#: ../../include/attach.php:1124 ../../include/items.php:3448 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/attach.php:142 ../../include/attach.php:190 +#: ../../include/attach.php:253 ../../include/attach.php:267 +#: ../../include/attach.php:274 ../../include/attach.php:339 +#: ../../include/attach.php:353 ../../include/attach.php:360 +#: ../../include/attach.php:440 ../../include/attach.php:902 +#: ../../include/attach.php:973 ../../include/attach.php:1125 msgid "Permission denied." msgstr "Acceso denegado." @@ -379,31 +376,40 @@ msgstr "Acceso denegado." msgid "Not Found" msgstr "No encontrado" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:118 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 #: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 #: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Página no encontrada." +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:384 +msgid "Permission denied" +msgstr "Permiso denegado" + #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 +#: ../../Zotlabs/Zot/Auth.php:246 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." #: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:876 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." @@ -419,1200 +425,1288 @@ msgstr "Ausente" msgid "Online" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Mensaje no válido" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "sin resultados" -#: ../../Zotlabs/Module/Connedit.php:248 -msgid "Connection updated." -msgstr "Conexión actualizada." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" -#: ../../Zotlabs/Module/Connedit.php:250 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "encolado" -#: ../../Zotlabs/Module/Connedit.php:300 -msgid "is now connected to" -msgstr "ahora está conectado/a" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "enviado" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Connedit.php:685 -#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:89 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "aceptado para el envío" -#: ../../Zotlabs/Module/Connedit.php:403 ../../Zotlabs/Module/Events.php:458 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 -#: ../../Zotlabs/Module/Filestorage.php:156 -#: ../../Zotlabs/Module/Filestorage.php:164 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:159 -#: ../../Zotlabs/Module/Mitem.php:232 ../../Zotlabs/Module/Mitem.php:233 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Settings.php:635 ../../Zotlabs/Module/Api.php:88 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1708 -msgid "Yes" -msgstr "Sí" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "actualizado" -#: ../../Zotlabs/Module/Connedit.php:435 -msgid "Could not access address book record." -msgstr "No se pudo acceder al registro en su libreta de direcciones." +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "actualización ignorada" -#: ../../Zotlabs/Module/Connedit.php:455 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar el canal en este momento." +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permiso denegado" -#: ../../Zotlabs/Module/Connedit.php:470 ../../Zotlabs/Module/Connedit.php:479 -#: ../../Zotlabs/Module/Connedit.php:488 ../../Zotlabs/Module/Connedit.php:497 -#: ../../Zotlabs/Module/Connedit.php:510 -msgid "Unable to set address book parameters." -msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "destinatario no encontrado" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "mensaje de correo revocado" -#: ../../Zotlabs/Module/Connedit.php:549 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:86 ../../include/conversation.php:957 -msgid "View Profile" -msgstr "Ver el perfil" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" + +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "correo enviado" -#: ../../Zotlabs/Module/Connedit.php:552 +#: ../../Zotlabs/Module/Dreport.php:146 #, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" +msgid "Delivery report for %1$s" +msgstr "Informe de entrega para %1$s" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opciones" -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Volver a enviar" -#: ../../Zotlabs/Module/Connedit.php:563 -msgid "Recent Activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" -#: ../../Zotlabs/Module/Connedit.php:566 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Desbloquear" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" -#: ../../Zotlabs/Module/Connedit.php:570 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Bloquear" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Connedit.php:573 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" -#: ../../Zotlabs/Module/Connedit.php:574 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Sí" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Unignore" -msgstr "Dejar de ignorar" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Connedit.php:578 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorar" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:581 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Connedit.php:582 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Unarchive" -msgstr "Desarchivar" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Archive" -msgstr "Archivar" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" -#: ../../Zotlabs/Module/Connedit.php:589 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 +#: ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 +#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 +#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Enviar" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 +msgid "Public Hubs" +msgstr "Servidores públicos" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Unhide" -msgstr "Mostrar" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "Hide" -msgstr "Ocultar" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Dirección del hub" -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo de acceso" -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Normas de registro" -#: ../../Zotlabs/Module/Connedit.php:605 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Estadísticas" -#: ../../Zotlabs/Module/Connedit.php:620 ../../include/widgets.php:493 -msgid "Me" -msgstr "Yo" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Connedit.php:621 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familia" +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valoraciones" -#: ../../Zotlabs/Module/Connedit.php:622 ../../Zotlabs/Module/Settings.php:391 -#: ../../Zotlabs/Module/Settings.php:395 ../../Zotlabs/Module/Settings.php:396 -#: ../../Zotlabs/Module/Settings.php:399 ../../Zotlabs/Module/Settings.php:410 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:495 -msgid "Friends" -msgstr "Amigos/as" +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Valorar" -#: ../../Zotlabs/Module/Connedit.php:623 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Conocidos/as" +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicación" -#: ../../Zotlabs/Module/Connedit.php:624 -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 -msgid "All" -msgstr "Todos/as" +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ver" -#: ../../Zotlabs/Module/Connedit.php:685 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" +#: ../../Zotlabs/Module/Register.php:49 +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/Connedit.php:685 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" +#: ../../Zotlabs/Module/Register.php:55 +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/Connedit.php:690 -msgid "Set Affinity" -msgstr "Ajustar la afinidad" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." -#: ../../Zotlabs/Module/Connedit.php:693 -msgid "Set Profile" -msgstr "Ajustar el perfil" +#: ../../Zotlabs/Module/Register.php:131 +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/Connedit.php:696 -msgid "Set Affinity & Profile" -msgstr "Ajustar la afinidad y el perfil" +#: ../../Zotlabs/Module/Register.php:137 +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/Connedit.php:745 -msgid "none" -msgstr "-" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Su registro no puede ser procesado." -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/widgets.php:623 -msgid "Connection Default Permissions" -msgstr "Permisos predeterminados de conexión" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Connedit.php:749 ../../include/items.php:3935 -#, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../Zotlabs/Module/Connedit.php:750 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrarse en otro hub afiliado." -#: ../../Zotlabs/Module/Connedit.php:750 -msgid "Connection requests will be approved without your interaction" -msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" +#: ../../Zotlabs/Module/Register.php:204 +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/Connedit.php:752 -msgid "This connection's primary address is" -msgstr "La dirección primaria de esta conexión es" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "Available locations:" -msgstr "Ubicaciones disponibles:" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Connedit.php:757 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "Connection Tools" -msgstr "Gestión de las conexiones" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Connedit.php:760 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Connedit.php:761 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valoración" +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Connedit.php:762 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Connedit.php:763 ../../Zotlabs/Module/Connedit.php:768 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Name or caption" +msgstr "Nombre o descripción" -#: ../../Zotlabs/Module/Connedit.php:765 -msgid "Custom Filter" -msgstr "Filtro personalizado" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/Connedit.php:766 ../../Zotlabs/Module/Connedit.php:767 +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +#, php-format msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo" - -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contengan este texto" +"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" -#: ../../Zotlabs/Module/Connedit.php:769 -msgid "This information is public!" -msgstr "¡Esta información es pública!" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" -#: ../../Zotlabs/Module/Connedit.php:774 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Select a channel role with your privacy requirements." +msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../Zotlabs/Module/Connedit.php:777 -msgid "inherited" -msgstr "heredado" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" -#: ../../Zotlabs/Module/Connedit.php:778 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Events.php:474 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:238 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:161 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Photos.php:675 ../../Zotlabs/Module/Photos.php:1050 -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Admin.php:492 -#: ../../Zotlabs/Module/Admin.php:688 ../../Zotlabs/Module/Admin.php:771 -#: ../../Zotlabs/Module/Admin.php:1032 ../../Zotlabs/Module/Admin.php:1211 -#: ../../Zotlabs/Module/Admin.php:1421 ../../Zotlabs/Module/Admin.php:1648 -#: ../../Zotlabs/Module/Admin.php:1733 ../../Zotlabs/Module/Admin.php:2116 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:170 ../../Zotlabs/Module/Settings.php:644 -#: ../../Zotlabs/Module/Settings.php:757 ../../Zotlabs/Module/Settings.php:806 -#: ../../Zotlabs/Module/Settings.php:832 ../../Zotlabs/Module/Settings.php:855 -#: ../../Zotlabs/Module/Settings.php:943 -#: ../../Zotlabs/Module/Settings.php:1129 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:763 -#: ../../include/js_strings.php:22 ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Connedit.php:779 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "sí" -#: ../../Zotlabs/Module/Connedit.php:781 -msgid "Their Settings" -msgstr "Sus ajustes" +#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 +msgid "Registration" +msgstr "Registro" -#: ../../Zotlabs/Module/Connedit.php:782 -msgid "My Settings" -msgstr "Mis ajustes" +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." +msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Connedit.php:784 -msgid "Individual Permissions" -msgstr "Permisos individuales" +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registrarse" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Register.php:266 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones." -#: ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Marcador añadido" -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "Last update:" -msgstr "Última actualización:" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mis marcadores" + +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" #: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 #: ../../Zotlabs/Module/Search.php:17 #: ../../Zotlabs/Module/Viewconnections.php:23 msgid "Public access denied." msgstr "Acceso público denegado." #: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3369 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 msgid "Item not found." msgstr "Elemento no encontrado." -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Nombre" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1665 ../../include/nav.php:94 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Apellido" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Cancelar" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Sobrenombre o Alias" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento no válido." -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Nombre completo" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no encontrado." -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2203 -msgid "Email" -msgstr "Correo electrónico" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del perfil" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Foto del perfil 16px" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Foto del perfil 32px" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 +#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Guardar" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Foto del perfil 48px" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Foto del perfil 64px" +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Foto del perfil 80px" +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "foro" -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Foto del perfil 128px" +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Huso horario" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Dirección de la página personal" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Grupo de canales: " -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Idioma" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Conexión no válida." -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Año de nacimiento" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloqueadas" -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Mes de nacimiento" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoradas" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Día de nacimiento" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Ocultas" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Fecha de nacimiento" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archivadas" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Género" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Nuevas" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Hombre" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 +msgid "All" +msgstr "Todos/as" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Mujer" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canal añadido." +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoración" -msgstr[1] "%d valoraciones" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Todas las conexiones" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Género:" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Estado:" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Página personal:" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1223 -msgid "Age:" -msgstr "Edad:" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostrar solo las conexiones archivadas" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1066 -#: ../../include/event.php:52 ../../include/event.php:84 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Ubicación:" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descripción:" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Pendiente de aprobación" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1239 -msgid "Hometown:" -msgstr "Lugar de nacimiento:" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1247 -msgid "About:" -msgstr "Sobre mí:" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Editar conexión" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1051 -#: ../../include/connections.php:78 ../../include/conversation.php:959 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" -msgstr "Conectar" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Eliminar conexión" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Foro público:" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Dirección del canal" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Palabras clave:" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Red" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "No sugerir:" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 +msgid "Status" +msgstr "Estado" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Conexiones comunes:" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Conectado/a" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Directorio global:" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Directorio local:" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Approve" +msgstr "Aprobar" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Encontrar" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignorar esta conexión" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Encontrar:" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignorar" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Sugerencias de canales" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "siguiente página" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" +msgstr "Conexiones" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "página anterior" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 +#: ../../include/text.php:937 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:169 +msgid "Search" +msgstr "Buscar" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Ordenar opciones" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Buscar sus conexiones" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabético" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Buscar conexiones" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabético inverso" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Encontrar" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "De más nuevo a más antiguo" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "De más antiguo a más nuevo" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Imágenes de portada del perfil" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas entradas pueden estar ocultas)." +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "El ajuste del tamaño de la imagen ha fallado." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continuar" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "No ha sido posible procesar la imagen" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "La carga de la imagen ha fallado." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 +msgid "female" +msgstr "mujer" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 +msgid "male" +msgstr "hombre" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "Imagen de portada del perfil" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto no disponible." -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "No se han encontrado entradas de calendario." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Subir fichero:" -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleccionar un perfil:" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Subir imagen de portada del perfil" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento no encontrado." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "Omitir este paso" -#: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:372 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1924 ../../include/event.php:951 -msgid "event" -msgstr "evento" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "Seleccione una foto de sus álbumes de fotos" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Edit event title" -msgstr "Editar el título del evento" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Recortar imagen" -#: ../../Zotlabs/Module/Events.php:448 -msgid "Event title" -msgstr "Título del evento" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." -#: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obligatorio" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Edición completada" -#: ../../Zotlabs/Module/Events.php:450 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Instalación" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Edit Category" -msgstr "Editar la categoría" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "Could not connect to database." +msgstr "No se ha podido conectar a la base de datos." -#: ../../Zotlabs/Module/Events.php:451 -msgid "Category" -msgstr "Categoría" +#: ../../Zotlabs/Module/Setup.php:191 +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/Events.php:454 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" +#: ../../Zotlabs/Module/Setup.php:198 +msgid "Could not create table." +msgstr "No se puede crear la tabla." -#: ../../Zotlabs/Module/Events.php:454 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." +msgstr "La base de datos del sitio ha sido instalada." -#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time are not known or not relevant" -msgstr "La fecha y hora de terminación no se conocen o no son relevantes" +#: ../../Zotlabs/Module/Setup.php:207 +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/Events.php:457 -msgid "Edit finish date and time" -msgstr "Modificar la fecha y hora de terminación" +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 +#: ../../Zotlabs/Module/Setup.php:733 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Events.php:457 -msgid "Finish date and time" -msgstr "Fecha y hora de terminación" +#: ../../Zotlabs/Module/Setup.php:267 +msgid "System check" +msgstr "Verificación del sistema" -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de los husos horarios" +#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Siguiente" -#: ../../Zotlabs/Module/Events.php:459 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." +#: ../../Zotlabs/Module/Setup.php:272 +msgid "Check again" +msgstr "Verificar de nuevo" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit Description" -msgstr "Editar la descripción" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" +msgstr "Conexión a la base de datos" -#: ../../Zotlabs/Module/Events.php:461 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descripción" +#: ../../Zotlabs/Module/Setup.php:295 +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/Events.php:463 -msgid "Edit Location" -msgstr "Modificar la dirección" +#: ../../Zotlabs/Module/Setup.php:296 +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/Events.php:463 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ubicación" +#: ../../Zotlabs/Module/Setup.php:297 +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/Events.php:466 ../../Zotlabs/Module/Events.php:468 -msgid "Share this event" -msgstr "Compartir este evento" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" +msgstr "Nombre del servidor de base de datos" -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1091 -#: ../../Zotlabs/Module/Webpages.php:201 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1198 -msgid "Preview" -msgstr "Previsualizar" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" +msgstr "De forma predeterminada es 127.0.0.1" -#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1247 -msgid "Permission settings" -msgstr "Configuración de permisos" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" +msgstr "Puerto de la base de datos" -#: ../../Zotlabs/Module/Events.php:475 -msgid "Advanced Options" -msgstr "Opciones avanzadas" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" +msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../Zotlabs/Module/Events.php:587 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" -#: ../../Zotlabs/Module/Events.php:609 -msgid "Edit event" -msgstr "Editar evento" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" +msgstr "Contraseña de acceso a la base de datos" -#: ../../Zotlabs/Module/Events.php:611 -msgid "Delete event" -msgstr "Borrar evento" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" +msgstr "Nombre de la base de datos" -#: ../../Zotlabs/Module/Events.php:636 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1712 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" +msgstr "Tipo de base de datos" -#: ../../Zotlabs/Module/Events.php:645 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "Site administrator email address" +msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Editar el evento" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +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/Events.php:664 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crear un evento" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Website URL" +msgstr "Dirección del sitio web" -#: ../../Zotlabs/Module/Events.php:665 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Photos.php:947 -msgid "Previous" -msgstr "Anterior" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Please use SSL (https) URL if available." +msgstr "Por favor, use SSL (https) si está disponible." -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Photos.php:956 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Siguiente" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Exportar" +#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +msgid "Basic/Minimal Social Networking" +msgstr "Red social básica o mínima" -#: ../../Zotlabs/Module/Events.php:670 ../../Zotlabs/Module/Layouts.php:197 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Webpages.php:200 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Ver" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +msgid "Standard Configuration (default)" +msgstr "Configuración estándar (por defecto)" -#: ../../Zotlabs/Module/Events.php:671 -msgid "Month" -msgstr "Mes" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +msgid "Professional" +msgstr "Profesional" -#: ../../Zotlabs/Module/Events.php:672 -msgid "Week" -msgstr "Semana" +#: ../../Zotlabs/Module/Setup.php:343 +msgid "Site settings" +msgstr "Ajustes del sitio" -#: ../../Zotlabs/Module/Events.php:673 -msgid "Day" -msgstr "Día" +#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +msgid "Server Configuration/Role" +msgstr "Configuración del servidor" -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Hoy" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 5.5 or greater is required." +msgstr "Se requiere la versión 5.5, o superior, de PHP." -#: ../../Zotlabs/Module/Events.php:707 -msgid "Event removed" -msgstr "Evento borrado" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" +msgstr "Versión de PHP" -#: ../../Zotlabs/Module/Events.php:710 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" +#: ../../Zotlabs/Module/Setup.php:415 +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/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Marcador añadido" +#: ../../Zotlabs/Module/Setup.php:416 +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/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mis marcadores" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "PHP executable path" +msgstr "Ruta del ejecutable PHP" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" +#: ../../Zotlabs/Module/Setup.php:420 +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/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -msgid "Item not found" -msgstr "Elemento no encontrado" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "Command line PHP" +msgstr "PHP en línea de comandos" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "El elemento no es editable" +#: ../../Zotlabs/Module/Setup.php:434 +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/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:134 -msgid "Edit post" -msgstr "Editar la entrada" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:92 ../../include/conversation.php:1647 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Setup.php:438 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:645 -#: ../../Zotlabs/Module/Settings.php:671 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Wiki.php:166 -#: ../../Zotlabs/Module/Wiki.php:202 ../../include/conversation.php:1235 -#: ../../include/conversation.php:1274 -msgid "Cancel" -msgstr "Cancelar" +#: ../../Zotlabs/Module/Setup.php:456 +#, 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/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento no válido." +#: ../../Zotlabs/Module/Setup.php:461 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canal no encontrado." +#: ../../Zotlabs/Module/Setup.php:463 +msgid "PHP upload limits" +msgstr "Límites PHP de subida" -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Setup.php:486 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +"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/Filer.php:52 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" +#: ../../Zotlabs/Module/Setup.php:487 +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/Filer.php:52 -msgid "- select -" -msgstr "- seleccionar -" +#: ../../Zotlabs/Module/Setup.php:490 +msgid "Generate encryption keys" +msgstr "Generar claves de cifrado" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "libCurl PHP module" +msgstr "módulo libCurl PHP" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloqueadas" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "GD graphics PHP module" +msgstr "módulo PHP GD graphics" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignoradas" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "OpenSSL PHP module" +msgstr "módulo PHP OpenSSL" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Ocultas" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "mysqli or postgres PHP module" +msgstr "módulo PHP mysqli o postgres" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archivadas" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mb_string PHP module" +msgstr "módulo PHP mb_string" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1550 -msgid "New" -msgstr "Nuevas" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "xml PHP module" +msgstr "módulo PHP xml" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 +msgid "Apache mod_rewrite module" +msgstr "módulo Apache mod_rewrite " -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" +#: ../../Zotlabs/Module/Setup.php:511 +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/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Todas las conexiones" +#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" +#: ../../Zotlabs/Module/Setup.php:517 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" +#: ../../Zotlabs/Module/Setup.php:525 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" +#: ../../Zotlabs/Module/Setup.php:529 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Pendiente de aprobación" +#: ../../Zotlabs/Module/Setup.php:541 +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/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Setup.php:545 +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/Connections.php:255 -msgid "Edit connection" -msgstr "Editar conexión" +#: ../../Zotlabs/Module/Setup.php:563 +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/Connections.php:256 -msgid "Delete connection" -msgstr "Eliminar conexión" +#: ../../Zotlabs/Module/Setup.php:564 +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/Connections.php:265 -msgid "Channel address" -msgstr "Dirección del canal" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Red" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Estado" +#: ../../Zotlabs/Module/Setup.php:569 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permisos de escritura" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Conectado/a" +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Aprobar esta conexión" +#: ../../Zotlabs/Module/Setup.php:584 +#, 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/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Aprobar" +#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 +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/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignorar esta conexión" +#: ../../Zotlabs/Module/Setup.php:586 +#, 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/Connections.php:278 -msgid "Recent activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Setup.php:589 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/nav.php:188 ../../include/text.php:855 -msgid "Connections" -msgstr "Conexiones" +#: ../../Zotlabs/Module/Setup.php:605 +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 Red top " +"level folder" +msgstr "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:167 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/acl_selectors.php:274 -msgid "Search" -msgstr "Buscar" +#: ../../Zotlabs/Module/Setup.php:609 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Buscar sus conexiones" +#: ../../Zotlabs/Module/Setup.php:642 +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/Connections.php:308 -msgid "Connections search" -msgstr "Buscar conexiones" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "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/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Imágenes de portada del perfil" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "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/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "El ajuste del tamaño de la imagen ha fallado." +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" +#: ../../Zotlabs/Module/Setup.php:647 +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/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "La carga de la imagen ha fallado." +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "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/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "No ha sido posible procesar la imagen." +#: ../../Zotlabs/Module/Setup.php:652 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4283 -msgid "female" -msgstr "mujer" +#: ../../Zotlabs/Module/Setup.php:658 +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/Cover_photo.php:234 ../../include/items.php:4284 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Setup.php:661 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4285 -msgid "male" -msgstr "hombre" +#: ../../Zotlabs/Module/Setup.php:670 +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/Cover_photo.php:236 ../../include/items.php:4286 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." + +#: ../../Zotlabs/Module/Setup.php:731 +msgid "

    What next

    " +msgstr "

    Siguiente paso

    " + +#: ../../Zotlabs/Module/Setup.php:732 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4288 +#: ../../Zotlabs/Module/Directory.php:243 #, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s ha actualizado su %2$s" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoración" +msgstr[1] "%d valoraciones" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1726 -msgid "cover photo" -msgstr "Imagen de portada del perfil" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Género:" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto no disponible." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Estado:" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Subir fichero:" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Página personal:" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleccionar un perfil:" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Edad:" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Subir imagen de portada del perfil" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "Ubicación:" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descripción:" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "Omitir este paso" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes de fotos" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Sobre mí:" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Recortar imagen" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +msgid "Connect" +msgstr "Conectar" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Foro público:" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Edición completada" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Palabras clave:" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "página web" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "No sugerir:" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "bloque" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Conexiones comunes:" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "plantilla" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Directorio global:" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Directorio local:" -#: ../../Zotlabs/Module/Impel.php:187 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Encontrar:" -#: ../../Zotlabs/Module/Impel.php:190 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Sugerencias de canales" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permisos denegados." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "siguiente página" -#: ../../Zotlabs/Module/Cal.php:337 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "página anterior" + +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Ordenar opciones" + +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabético" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabético inverso" + +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "De más nuevo a más antiguo" + +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "De más antiguo a más nuevo" + +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas entradas pueden estar ocultas)." #: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 msgid "This site is not a directory server" @@ -1622,161 +1716,32 @@ msgstr "Este sitio no es un servidor de directorio" msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Wiki.php:20 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento no encontrado" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Sala no encontrada" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Abandonar la sala" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Insertar enlace web" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Eliminar esta sala" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Título (opcional)" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" - -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Estoy conectado/a" - -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" - -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:197 -#: ../../Zotlabs/Module/Mail.php:306 ../../include/conversation.php:1181 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" - -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:250 -#: ../../Zotlabs/Module/Mail.php:375 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1271 -msgid "Encrypt text" -msgstr "Cifrar texto" - -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:369 -#: ../../Zotlabs/Module/Editblock.php:111 ../../include/conversation.php:1146 -msgid "Insert web link" -msgstr "Insertar enlace web" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nueva sala de chat" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Nombre de la sala de chat" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Caducidad de los mensajes en los chats (en minutos)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1043 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:281 -msgid "Permissions" -msgstr "Permisos" - -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %1$s" - -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" - -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create New" -msgstr "Crear" - -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Caducidad" - -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" - -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Mensaje no válido" - -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "sin resultados" - -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" - -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "encolado" - -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "enviado" - -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "aceptado para el envío" - -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "actualizado" - -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "actualización ignorada" - -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permiso denegado" - -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "destinatario no encontrado" - -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "mensaje de correo revocado" - -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" - -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "correo enviado" - -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Informe de entrega para %1$s" - -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opciones" - -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Volver a enviar" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modificar este bloque" #: ../../Zotlabs/Module/Editlayout.php:127 #: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 @@ -1796,62 +1761,122 @@ msgstr "Modificar la plantilla" msgid "Page link" msgstr "Enlace de la página" -#: ../../Zotlabs/Module/Editwebpage.php:168 +#: ../../Zotlabs/Module/Editwebpage.php:169 msgid "Edit Webpage" msgstr "Editar la página web" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "El grupo de canales ha sido creado." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "No se puede crear el grupo de canales" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3902 -msgid "Privacy group not found." -msgstr "Grupo de canales no encontrado." +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Grupo de canales actualizado." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crear un grupo de canales." +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nombre del grupo de canales:" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Los miembros son visibles para otros canales" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Grupo de canales eliminado." +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Imposible eliminar el grupo de canales." +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor de grupos de canales" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menús" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Miembros" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Eliminar" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Todos los canales conectados" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creado" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Haga clic en un canal para agregarlo o quitarlo." +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Editado" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." #: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 msgid "App installed." @@ -1877,13 +1902,25 @@ msgstr "Crear una aplicación" msgid "Name of app" msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obligatorio" + #: ../../Zotlabs/Module/Appman.php:116 msgid "Location (URL) of app" msgstr "Dirección (URL) de la aplicación" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripción" + +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "Dirección del icono" #: ../../Zotlabs/Module/Appman.php:118 msgid "80 x 80 pixels - optional" @@ -1891,7 +1928,7 @@ msgstr "80 x 80 pixels - opcional" #: ../../Zotlabs/Module/Appman.php:119 msgid "Categories (optional, comma separated list)" -msgstr "Categorías (opcional, lista separada por comas)" +msgstr "Temas (opcional, lista separada por comas)" #: ../../Zotlabs/Module/Appman.php:120 msgid "Version ID" @@ -1916,7 +1953,7 @@ msgstr "Ayuda:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:161 +#: ../../include/nav.php:163 msgid "Help" msgstr "Ayuda" @@ -1956,13 +1993,23 @@ msgstr "Compartir contenido desde Firefox a $Projectname" msgid "Activate the Firefox $Projectname provider" msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " -#: ../../Zotlabs/Module/Acl.php:312 -msgid "network" -msgstr "red" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Acl.php:322 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" + +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." + +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visible para:" #: ../../Zotlabs/Module/Filestorage.php:87 msgid "Permission Denied." @@ -1976,636 +2023,883 @@ msgstr "Fichero no encontrado." msgid "Edit file permissions" msgstr "Modificar los permisos del fichero" -#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permisos" + +#: ../../Zotlabs/Module/Filestorage.php:159 msgid "Set/edit permissions" msgstr "Establecer/editar los permisos" -#: ../../Zotlabs/Module/Filestorage.php:156 +#: ../../Zotlabs/Module/Filestorage.php:160 msgid "Include all files and sub folders" msgstr "Incluir todos los ficheros y subcarpetas" -#: ../../Zotlabs/Module/Filestorage.php:157 +#: ../../Zotlabs/Module/Filestorage.php:161 msgid "Return to file list" msgstr "Volver a la lista de ficheros" -#: ../../Zotlabs/Module/Filestorage.php:159 +#: ../../Zotlabs/Module/Filestorage.php:163 msgid "Copy/paste this code to attach file to a post" msgstr "Copiar/pegar este código para adjuntar el fichero al envío" -#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:164 msgid "Copy/paste this URL to link file from a web page" msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" -#: ../../Zotlabs/Module/Filestorage.php:162 +#: ../../Zotlabs/Module/Filestorage.php:166 msgid "Share this file" msgstr "Compartir este fichero" -#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Module/Filestorage.php:167 msgid "Show URL to this file" msgstr "Mostrar la dirección de este fichero" -#: ../../Zotlabs/Module/Filestorage.php:164 +#: ../../Zotlabs/Module/Filestorage.php:168 msgid "Notify your contacts about this file" msgstr "Avisar a sus contactos sobre este fichero" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2240 -msgid "Layouts" -msgstr "Plantillas" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "El nombre es obligatorio" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descripción de la plantilla" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Actualizar" -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Webpages.php:205 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creado" +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Este canal tiene un límite de %d tokens" -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Webpages.php:206 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Editado" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Se requiere el nombre y la contraseña." -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1070 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Webpages.php:195 -#: ../../include/conversation.php:1219 -msgid "Share" -msgstr "Compartir" +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token salvado." -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." +msgstr "Correo electrónico no válido." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Me gusta/No me gusta" +#: ../../Zotlabs/Module/Settings.php:315 +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/Like.php:24 -msgid "This action is restricted to members." -msgstr "Esta acción está restringida solo para miembros." +#: ../../Zotlabs/Module/Settings.php:324 +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/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." +msgstr "La comprobación de la contraseña ha fallado." -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Solicitud incorrecta." +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "el canal" +#: ../../Zotlabs/Module/Settings.php:352 +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/Like.php:146 -msgid "thing" -msgstr "elemento" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." +msgstr "Contraseña cambiada." -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canal no disponible." +#: ../../Zotlabs/Module/Settings.php:368 +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/Like.php:240 -msgid "Previous action reversed." -msgstr "Acción anterior revocada." +#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 +#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 +#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 +msgid "Friends" +msgstr "Amigos/as" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1921 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." +msgstr "Ajustes actualizados." -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1927 -msgid "status" -msgstr "el mensaje de estado" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" +msgstr "Añadir aplicación" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" +msgstr "Nombre de la aplicación" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, 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" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s está de acuerdo" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no está de acuerdo" +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s se abstiene" +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" +msgstr "Redirigir" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s participa" +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no participa" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" +msgstr "Dirección del icono" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s quizá participe" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Opcional" -#: ../../Zotlabs/Module/Like.php:536 -msgid "Action completed." -msgstr "Acción completada." +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." +msgstr "Aplicación no encontrada." -#: ../../Zotlabs/Module/Like.php:537 -msgid "Thank you." -msgstr "Gracias." +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" +msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Perfil no encontrado." +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" +msgstr "La \"client key\" empieza por" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Perfil eliminado." +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" +msgstr "Sin nombre" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Perfil-" +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" +msgstr "Eliminar autorización" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "El nuevo perfil ha sido creado." +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" +msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Perfil no disponible para clonar." +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" +msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Perfil no disponible para exportar." +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" +msgstr "Configuración de la cuenta" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Se necesita el nombre del perfil." +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" +msgstr "Contraseña actual" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" +msgstr "Escribir una nueva contraseña" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Pareja sentimental" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" +msgstr "Confirmar la nueva contraseña" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" +msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Trabajo:" +#: ../../Zotlabs/Module/Settings.php:797 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Eliminar cuenta" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religión" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" +msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Settings.php:832 +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." +msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Página personal" +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Tokens de acceso para invitados" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Intereses" +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" +msgstr "Nombre de inicio de sesión" -#: ../../Zotlabs/Module/Profiles.php:470 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" +msgstr "Contraseña de inicio de sesión" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Perfil actualizado." +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" +msgstr "Expira (aaaa-mm-dd)" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Ocultar la lista de conexiones a los visitantes del perfil" +#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Sus ajustes" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modificar los detalles de este perfil" +#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Mis ajustes" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Ver este perfil" +#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "heredado" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:998 -msgid "Edit visibility" -msgstr "Editar visibilidad" +#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Permisos individuales" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestión del perfil" +#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambiar la imagen de portada del perfil" +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "Off" +msgstr "Desactivado" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:969 -msgid "Change profile photo" -msgstr "Cambiar la foto del perfil" +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "On" +msgstr "Activado" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crear un nuevo perfil usando estos ajustes" +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" +msgstr "Funcionalidades" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clonar este perfil" +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" +msgstr "Configuración del conector" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Eliminar este perfil" +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" +msgstr "Sin tema especial para dispositivos móviles" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Añadir cosas al perfil" +#: ../../Zotlabs/Module/Settings.php:984 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1541 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personales" +#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 +msgid "mobile" +msgstr "móvil" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relación" +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" +msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Varios" +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" +msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importar perfil desde un fichero" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Exportar perfil a un fichero" +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" +msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Género" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" +msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Estado civil" +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" +msgstr "Elegir un esquema" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferencia sexual" +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" +msgstr "Tema para el móvil:" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nombre del perfil" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" +msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Este es su perfil principal." +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Nombre completo" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" +msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Título o descripción" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Ciudad" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" +msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Región o Estado" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Código postal" +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" +msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "País" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" +msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Quién (si es pertinente)" +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" +msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Desde (fecha)" +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" +msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Háblenos de usted" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" +msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Lugar de nacimiento" +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" +msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Ideas políticas" +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" +msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Creencias religiosas" +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" +msgstr "Altura máxima del contenido de mi red (en píxeles)" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Palabras clave utilizadas en los listados de directorios" +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" +msgstr "Nadie excepto usted" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Por ejemplo: software de fotografía submarina" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" +msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Preferencias musicales" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" +msgstr "Conexiones aprobadas" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libros, literatura" +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" +msgstr "Cualquier conexión" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisión" +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" +msgstr "Cualquiera en este sitio web" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Cine, danza, cultura, entretenimiento" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" +msgstr "Cualquiera en esta red" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Aficiones o intereses" +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" +msgstr "Cualquiera que esté autenticado" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Vida sentimental o amorosa" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" +msgstr "Cualquiera en internet" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Estudios" - -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Información de contacto y redes sociales" +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" +msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mis otros canales" +#: ../../Zotlabs/Module/Settings.php:1176 +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/Profiles.php:767 ../../include/channel.php:994 -msgid "Profile Image" -msgstr "Imagen del perfil" +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" +msgstr "Su dirección de canal es" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:976 -msgid "Edit Profiles" -msgstr "Editar perfiles" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" +msgstr "Ajustes del canal" -#: ../../Zotlabs/Module/Import.php:33 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" +msgstr "Configuración básica" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "No hay nada para importar." +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nombre completo:" -#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" +msgstr "Su huso horario:" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" +msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../Zotlabs/Module/Import.php:123 -#: ../../Zotlabs/Module/Import_items.php:88 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" +msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" +msgstr "Usar la localización geográfica del navegador:" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" +msgstr "Contenido solo para adultos" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Importación completada." +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importar canal" +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../Zotlabs/Module/Import.php:548 -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/Settings.php:1248 +msgid "Hide my online presence" +msgstr "Ocultar mi presencia en línea" -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" +msgstr "Configuración de privacidad sencilla:" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "Su antigua contraseña" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" +msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "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/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" +msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Module/Settings.php:1256 msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" +msgstr "Configuración de privacidad avanzada" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" +msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../Zotlabs/Module/Home.php:92 +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." +msgstr "0 o en blanco para usar el límite del sitio web." + +#: ../../Zotlabs/Module/Settings.php:1260 #, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +msgid "This website expires after %d days." +msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Item.php:179 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." +msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Item.php:432 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." +msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." -#: ../../Zotlabs/Module/Item.php:472 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Item.php:856 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" +msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Item.php:989 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" +msgstr "Permisos predeterminados de entradas y publicaciones" -#: ../../Zotlabs/Module/Item.php:1242 -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/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" -#: ../../Zotlabs/Module/Item.php:1249 -#, 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/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" +msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" -#: ../../Zotlabs/Module/Item.php:1256 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" +msgstr "Categoría de los permisos del canal:" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" +msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:741 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Fotos del perfil" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" +msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Álbum no encontrado." +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" +msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Borrar álbum" +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" +msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" +msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1051 -msgid "Delete Photo" -msgstr "Borrar foto" +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" +msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" +msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" +msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" +msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" +msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Subir fotos" +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba un comentario sobre sus publicaciones" + +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" +msgstr "Reciba un mensaje privado" + +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" +msgstr "Reciba una sugerencia de amistad" + +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" +msgstr "Usted sea etiquetado en una publicación" + +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" +msgstr "Reciba un toque o incitación en una publicación" + +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" +msgstr "Mostrar notificaciones visuales que incluyan:" + +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" +msgstr "Nueva actividad en la red" + +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" +msgstr "Actividad no vista en el canal" + +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" +msgstr "Mensajes privados no leídos" + +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" +msgstr "Recomendado" + +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" +msgstr "Próximos eventos" + +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" +msgstr "Eventos de hoy" + +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" +msgstr "Próximos cumpleaños" + +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" +msgstr "No disponible en todos los temas" + +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" +msgstr "Notificaciones del sistema (personales)" + +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" +msgstr "Mensajes de información del sistema" + +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" +msgstr "Alertas críticas del sistema" + +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" +msgstr "Nuevas conexiones" + +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" +msgstr "Registros del sistema" + +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" + +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" +msgstr "Avisarme de los eventos con algunos días de antelación" + +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" +msgstr "Debe ser mayor que 0" + +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustes avanzados de la cuenta y de los tipos de página" + +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" + +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." + +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" +msgstr "Ajustes diversos" + +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" +msgstr "Carpeta por defecto de las fotos subidas" + +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" +msgstr "%Y - año en curso, %m - mes actual" + +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" +msgstr "Carpeta por defecto de los archivos subidos" + +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal que debe mostrarse en las páginas de su canal" + +#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Eliminar el canal" + +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." +msgstr "Eliminar este canal." + +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" +msgstr "Servicio de compartición de Firefox: proveedor $Projectname" + +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" +msgstr "Comenzar el calendario semanal por el lunes" + +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "red" + +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "El grupo de canales ha sido creado." + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "No se puede crear el grupo de canales" + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3931 +msgid "Privacy group not found." +msgstr "Grupo de canales no encontrado." + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Grupo de canales actualizado." + +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crear un grupo de canales." + +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nombre del grupo de canales:" + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Los miembros son visibles para otros canales" + +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Grupo de canales eliminado." + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "No se puede eliminar el grupo de canales." + +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor de grupos de canales" + +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Miembros" + +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Todos los canales conectados" + +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Haga clic en un canal para agregarlo o quitarlo." + +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." + +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Fotos del perfil" + +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Álbum no encontrado." + +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Borrar álbum" + +#: ../../Zotlabs/Module/Photos.php:151 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" + +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Borrar foto" + +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" + +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." + +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Subir fotos" + +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" #: ../../Zotlabs/Module/Photos.php:663 msgid "or select an existing album (doubleclick)" @@ -2623,240 +2917,300 @@ msgstr "Título (opcional):" msgid "Description (optional):" msgstr "Descripción (opcional):" -#: ../../Zotlabs/Module/Photos.php:693 +#: ../../Zotlabs/Module/Photos.php:697 msgid "Album name could not be decoded" msgstr "El nombre del álbum no ha podido ser descifrado" -#: ../../Zotlabs/Module/Photos.php:741 +#: ../../Zotlabs/Module/Photos.php:745 msgid "Contact Photos" msgstr "Fotos de contacto" -#: ../../Zotlabs/Module/Photos.php:764 +#: ../../Zotlabs/Module/Photos.php:768 msgid "Show Newest First" msgstr "Mostrar lo más reciente primero" -#: ../../Zotlabs/Module/Photos.php:766 +#: ../../Zotlabs/Module/Photos.php:770 msgid "Show Oldest First" msgstr "Mostrar lo más antiguo primero" -#: ../../Zotlabs/Module/Photos.php:790 ../../Zotlabs/Module/Photos.php:1329 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1593 +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 msgid "View Photo" msgstr "Ver foto" -#: ../../Zotlabs/Module/Photos.php:821 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1610 +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 msgid "Edit Album" msgstr "Editar álbum" -#: ../../Zotlabs/Module/Photos.php:868 +#: ../../Zotlabs/Module/Photos.php:872 msgid "Permission denied. Access to this item may be restricted." msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: ../../Zotlabs/Module/Photos.php:870 +#: ../../Zotlabs/Module/Photos.php:874 msgid "Photo not available" msgstr "Foto no disponible" -#: ../../Zotlabs/Module/Photos.php:928 +#: ../../Zotlabs/Module/Photos.php:932 msgid "Use as profile photo" msgstr "Usar como foto del perfil" -#: ../../Zotlabs/Module/Photos.php:929 +#: ../../Zotlabs/Module/Photos.php:933 msgid "Use as cover photo" msgstr "Usar como imagen de portada del perfil" -#: ../../Zotlabs/Module/Photos.php:936 +#: ../../Zotlabs/Module/Photos.php:940 msgid "Private Photo" msgstr "Foto privada" -#: ../../Zotlabs/Module/Photos.php:951 +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Anterior" + +#: ../../Zotlabs/Module/Photos.php:955 msgid "View Full Size" msgstr "Ver tamaño completo" -#: ../../Zotlabs/Module/Photos.php:996 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 #: ../../Zotlabs/Module/Tagrm.php:137 msgid "Remove" msgstr "Eliminar" -#: ../../Zotlabs/Module/Photos.php:1030 +#: ../../Zotlabs/Module/Photos.php:1034 msgid "Edit photo" msgstr "Editar foto" -#: ../../Zotlabs/Module/Photos.php:1032 +#: ../../Zotlabs/Module/Photos.php:1036 msgid "Rotate CW (right)" msgstr "Girar CW (a la derecha)" -#: ../../Zotlabs/Module/Photos.php:1033 +#: ../../Zotlabs/Module/Photos.php:1037 msgid "Rotate CCW (left)" msgstr "Girar CCW (a la izquierda)" -#: ../../Zotlabs/Module/Photos.php:1036 +#: ../../Zotlabs/Module/Photos.php:1040 msgid "Enter a new album name" msgstr "Introducir un nuevo nombre de álbum" -#: ../../Zotlabs/Module/Photos.php:1037 +#: ../../Zotlabs/Module/Photos.php:1041 msgid "or select an existing one (doubleclick)" msgstr "o seleccionar uno (doble click) existente" -#: ../../Zotlabs/Module/Photos.php:1040 +#: ../../Zotlabs/Module/Photos.php:1044 msgid "Caption" msgstr "Título" -#: ../../Zotlabs/Module/Photos.php:1042 +#: ../../Zotlabs/Module/Photos.php:1046 msgid "Add a Tag" msgstr "Añadir una etiqueta" -#: ../../Zotlabs/Module/Photos.php:1046 +#: ../../Zotlabs/Module/Photos.php:1054 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" -#: ../../Zotlabs/Module/Photos.php:1049 +#: ../../Zotlabs/Module/Photos.php:1057 msgid "Flag as adult in album view" msgstr "Marcar como \"solo para adultos\" en el álbum" -#: ../../Zotlabs/Module/Photos.php:1068 ../../Zotlabs/Lib/ThreadItem.php:261 +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 msgid "I like this (toggle)" msgstr "Me gusta (cambiar)" -#: ../../Zotlabs/Module/Photos.php:1069 ../../Zotlabs/Lib/ThreadItem.php:262 +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 msgid "I don't like this (toggle)" msgstr "No me gusta esto (cambiar)" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:397 +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Compartir" + +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 #: ../../include/conversation.php:743 msgid "Please wait" msgstr "Espere por favor" -#: ../../Zotlabs/Module/Photos.php:1087 ../../Zotlabs/Module/Photos.php:1205 -#: ../../Zotlabs/Lib/ThreadItem.php:707 +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 msgid "This is you" msgstr "Este es usted" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 msgid "Comment" msgstr "Comentar" -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "Previsualizar" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1105 ../../include/conversation.php:577 +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Agree" msgstr "De acuerdo" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Disagree" msgstr "En desacuerdo" -#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:578 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Abstain" msgstr "Abstención" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Attending" msgstr "Participaré" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Not attending" msgstr "No participaré" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:579 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Might attend" msgstr "Quizá participe" -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1136 +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 #: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1738 +#: ../../include/conversation.php:1756 msgid "View all" msgstr "Ver todo" -#: ../../Zotlabs/Module/Photos.php:1128 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/channel.php:1198 -#: ../../include/conversation.php:1762 +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1780 +#: ../../include/taxonomy.php:403 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "Me gusta" msgstr[1] "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1133 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1765 +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "No me gusta" msgstr[1] "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1233 +#: ../../Zotlabs/Module/Photos.php:1241 msgid "Photo Tools" msgstr "Gestión de las fotos" -#: ../../Zotlabs/Module/Photos.php:1242 +#: ../../Zotlabs/Module/Photos.php:1250 msgid "In This Photo:" msgstr "En esta foto:" -#: ../../Zotlabs/Module/Photos.php:1247 +#: ../../Zotlabs/Module/Photos.php:1255 msgid "Map" msgstr "Mapa" -#: ../../Zotlabs/Module/Photos.php:1255 ../../Zotlabs/Lib/ThreadItem.php:386 +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 msgctxt "noun" msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1256 ../../Zotlabs/Lib/ThreadItem.php:387 +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 msgctxt "noun" msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1261 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:283 +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:181 msgid "Close" msgstr "Cerrar" -#: ../../Zotlabs/Module/Photos.php:1335 +#: ../../Zotlabs/Module/Photos.php:1343 msgid "View Album" msgstr "Ver álbum" -#: ../../Zotlabs/Module/Photos.php:1346 ../../Zotlabs/Module/Photos.php:1359 -#: ../../Zotlabs/Module/Photos.php:1360 +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 msgid "Recent Photos" msgstr "Fotos recientes" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." - -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visible para:" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "página web" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importación completada" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "bloque" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importar elementos" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "plantilla" -#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menú" + +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" + +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" + +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." +msgstr "No hay nada para importar." + +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" + +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." + +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." + +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importación completada" + +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importar elementos" + +#: ../../Zotlabs/Module/Import_items.php:120 msgid "" "Use this form to import existing posts and content from an export file." msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" +msgstr "Fichero para subir" + #: ../../Zotlabs/Module/Invite.php:29 msgid "Total invitation limit exceeded." msgstr "Se ha superado el límite máximo de invitaciones." @@ -2943,7 +3297,7 @@ msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo e #: ../../Zotlabs/Module/Locs.php:95 msgid "Syncing locations" -msgstr "Sincronización de ubicaciones" +msgstr "Sincronizando ubicaciones" #: ../../Zotlabs/Module/Locs.php:105 msgid "No locations found." @@ -2953,14 +3307,15 @@ msgstr "No encontrada ninguna dirección." msgid "Manage Channel Locations" msgstr "Gestionar las direcciones del canal" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Dirección" + #: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" msgstr "Primario" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Eliminar" - #: ../../Zotlabs/Module/Locs.php:122 msgid "Sync Now" msgstr "Sincronizar ahora" @@ -2983,102 +3338,105 @@ msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no est msgid "Hub not found." msgstr "Servidor no encontrado" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." - -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." - -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Me gusta/No me gusta" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Esta acción está restringida solo para miembros." -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Mensajes" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Mensaje revocado." +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Solicitud incorrecta." -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversación eliminada." +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "el canal" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "elemento" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canal no disponible." -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "Para:" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "foto" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Asunto:" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "el mensaje de estado" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1231 -msgid "Attach file" -msgstr "Adjuntar fichero" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "evento" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Enviar" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1266 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, 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" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Borrar mensaje" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Informe de transmisión" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revocar el mensaje" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Eliminar conversación" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no participa" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Responder" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Acción completada." -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Gracias." #: ../../Zotlabs/Module/Manage.php:136 #: ../../Zotlabs/Module/New_channel.php:121 @@ -3090,8 +3448,13 @@ msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." msgid "Create a new channel" msgstr "Crear un nuevo canal" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crear" + #: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:208 +#: ../../include/nav.php:210 msgid "Channel Manager" msgstr "Administración de canales" @@ -3125,370 +3488,115 @@ msgstr "%d nuevas isolicitudes de conexión" msgid "Delegated Channel" msgstr "Canal delegado" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "No se puede crear el elemento." -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nombre del menú" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Título del menú" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nombre del enlace" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Enviar y proceder" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2239 -msgid "Menus" -msgstr "Menús" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Orden en la lista" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Los números más altos irán al final de la lista" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Borrar este menú" - -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" - -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modificar este menú" - -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." - -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menú no encontrado" - -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modificar el menú" - -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nombre del menú" - -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Título del menú" - -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" - -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" - -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "No encontrado." - -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." - -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." - -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" - -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1712 -msgid "Password Reset" -msgstr "Restablecer la contraseña" - -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." - -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Su nueva contraseña es" - -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" - -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "pulse aquí para conectarse" - -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." - -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" - -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" - -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." - -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Dirección de correo electrónico" - -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reiniciar" - -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" - -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Estado de ánimo" - -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" - -#: ../../Zotlabs/Module/Network.php:94 -msgid "No such group" -msgstr "No se encuentra el grupo" - -#: ../../Zotlabs/Module/Network.php:134 -msgid "No such channel" -msgstr "No se encuentra el canal" - -#: ../../Zotlabs/Module/Network.php:139 -msgid "forum" -msgstr "foro" - -#: ../../Zotlabs/Module/Network.php:151 -msgid "Search Results For:" -msgstr "Buscar resultados para:" - -#: ../../Zotlabs/Module/Network.php:215 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" - -#: ../../Zotlabs/Module/Network.php:224 -msgid "Privacy group: " -msgstr "Grupo de canales: " - -#: ../../Zotlabs/Module/Network.php:250 -msgid "Invalid connection." -msgstr "Conexión no válida." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notificaciones del sistema" - -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Perfil compatible" - -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." - -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "está interesado en:" - -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" - -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" - -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo publicaciones" - -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1163 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Nombre del enlace" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Orden en la lista" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Los números más altos irán al final de la lista" - -#: ../../Zotlabs/Module/Mitem.php:161 +#: ../../Zotlabs/Module/Mitem.php:165 msgid "Submit and finish" msgstr "Enviar y terminar" -#: ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:166 msgid "Submit and continue" msgstr "Enviar y continuar" -#: ../../Zotlabs/Module/Mitem.php:170 +#: ../../Zotlabs/Module/Mitem.php:174 msgid "Menu:" msgstr "Menú:" -#: ../../Zotlabs/Module/Mitem.php:173 +#: ../../Zotlabs/Module/Mitem.php:177 msgid "Link Target" msgstr "Destino del enlace" -#: ../../Zotlabs/Module/Mitem.php:176 +#: ../../Zotlabs/Module/Mitem.php:180 msgid "Edit menu" msgstr "Editar menú" -#: ../../Zotlabs/Module/Mitem.php:179 +#: ../../Zotlabs/Module/Mitem.php:183 msgid "Edit element" msgstr "Editar el elemento" -#: ../../Zotlabs/Module/Mitem.php:180 +#: ../../Zotlabs/Module/Mitem.php:184 msgid "Drop element" msgstr "Eliminar el elemento" -#: ../../Zotlabs/Module/Mitem.php:181 +#: ../../Zotlabs/Module/Mitem.php:185 msgid "New element" msgstr "Nuevo elemento" -#: ../../Zotlabs/Module/Mitem.php:182 +#: ../../Zotlabs/Module/Mitem.php:186 msgid "Edit this menu container" msgstr "Modificar el contenedor del menú" -#: ../../Zotlabs/Module/Mitem.php:183 +#: ../../Zotlabs/Module/Mitem.php:187 msgid "Add menu element" msgstr "Añadir un elemento al menú" -#: ../../Zotlabs/Module/Mitem.php:184 +#: ../../Zotlabs/Module/Mitem.php:188 msgid "Delete this menu item" msgstr "Eliminar este elemento del menú" -#: ../../Zotlabs/Module/Mitem.php:185 +#: ../../Zotlabs/Module/Mitem.php:189 msgid "Edit this menu item" msgstr "Modificar este elemento del menú" -#: ../../Zotlabs/Module/Mitem.php:202 +#: ../../Zotlabs/Module/Mitem.php:206 msgid "Menu item not found." msgstr "Este elemento del menú no se ha encontrado" -#: ../../Zotlabs/Module/Mitem.php:215 +#: ../../Zotlabs/Module/Mitem.php:219 msgid "Menu item deleted." msgstr "Este elemento del menú ha sido borrado" -#: ../../Zotlabs/Module/Mitem.php:217 +#: ../../Zotlabs/Module/Mitem.php:221 msgid "Menu item could not be deleted." msgstr "Este elemento del menú no puede ser borrado." -#: ../../Zotlabs/Module/Mitem.php:224 +#: ../../Zotlabs/Module/Mitem.php:228 msgid "Edit Menu Element" msgstr "Editar elemento del menú" -#: ../../Zotlabs/Module/Mitem.php:230 +#: ../../Zotlabs/Module/Mitem.php:238 msgid "Link text" msgstr "Texto del enlace" @@ -3532,12 +3640,12 @@ msgstr "Mensajes en cola" msgid "Your software should be updated" msgstr "Debe actualizar su software" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 +#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 +#: ../../Zotlabs/Module/Admin.php:1745 msgid "Administration" msgstr "Administración" @@ -3549,7 +3657,7 @@ msgstr "Sumario" msgid "Registered accounts" msgstr "Cuentas registradas" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 msgid "Pending registrations" msgstr "Registros pendientes" @@ -3557,7 +3665,7 @@ msgstr "Registros pendientes" msgid "Registered channels" msgstr "Canales registrados" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 msgid "Active plugins" msgstr "Extensiones (plugins) activas" @@ -3573,2677 +3681,2446 @@ msgstr "Versión del repositorio (master)" msgid "Repository version (dev)" msgstr "Versión del repositorio (dev)" -#: ../../Zotlabs/Module/Admin.php:373 +#: ../../Zotlabs/Module/Admin.php:377 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2829 +#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:899 -msgid "mobile" -msgstr "móvil" - -#: ../../Zotlabs/Module/Admin.php:412 +#: ../../Zotlabs/Module/Admin.php:416 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin.php:414 +#: ../../Zotlabs/Module/Admin.php:418 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin.php:460 +#: ../../Zotlabs/Module/Admin.php:464 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin.php:466 +#: ../../Zotlabs/Module/Admin.php:470 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin.php:467 +#: ../../Zotlabs/Module/Admin.php:471 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin.php:468 +#: ../../Zotlabs/Module/Admin.php:472 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin.php:469 +#: ../../Zotlabs/Module/Admin.php:473 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1476 +#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 msgid "Site" msgstr "Sitio" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registro" - -#: ../../Zotlabs/Module/Admin.php:494 +#: ../../Zotlabs/Module/Admin.php:504 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin.php:495 +#: ../../Zotlabs/Module/Admin.php:505 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Avanzado" -#: ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:510 msgid "Site name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Admin.php:501 +#: ../../Zotlabs/Module/Admin.php:514 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 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.php:503 +#: ../../Zotlabs/Module/Admin.php:516 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 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.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Mobile system theme" msgstr "Tema del sistema para móviles" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 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.php:509 +#: ../../Zotlabs/Module/Admin.php:522 msgid "Does this site allow new member registration?" msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "Invitation only" msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 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.php:511 +#: ../../Zotlabs/Module/Admin.php:524 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.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 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.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 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.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 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.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 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.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "Allowed email domains" msgstr "Se aceptan dominios de correo electrónico" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "Not allowed email domains" msgstr "No se permiten dominios de correo electrónico" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "" "Comma separated list of domains which are not allowed in email addresses for" " registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "Verify Email Addresses" msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 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.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 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.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 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.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 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.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 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.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin.php:527 +#: ../../Zotlabs/Module/Admin.php:540 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Admin.php:541 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 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.php:530 +#: ../../Zotlabs/Module/Admin.php:543 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 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.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 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.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 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.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 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.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "Expiration period in days for imported (grid/network) content" msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "Off" -msgstr "Desactivado" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:823 -msgid "On" -msgstr "Activado" - -#: ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Admin.php:691 #, php-format msgid "Lock feature %s" msgstr "Bloquear la funcionalidad %s" -#: ../../Zotlabs/Module/Admin.php:686 +#: ../../Zotlabs/Module/Admin.php:699 msgid "Manage Additional Features" msgstr "Gestionar las funcionalidades" -#: ../../Zotlabs/Module/Admin.php:703 +#: ../../Zotlabs/Module/Admin.php:716 msgid "No server found" msgstr "Servidor no encontrado" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "for channel" msgstr "por canal" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "on server" msgstr "en el servidor" -#: ../../Zotlabs/Module/Admin.php:712 +#: ../../Zotlabs/Module/Admin.php:725 msgid "Server" msgstr "Servidor" -#: ../../Zotlabs/Module/Admin.php:746 +#: ../../Zotlabs/Module/Admin.php:759 msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." msgstr "De forma predeterminada, el HTML sin filtrar está permitido en el contenido multimedia incorporado en una publicación. Esto es siempre inseguro." -#: ../../Zotlabs/Module/Admin.php:749 +#: ../../Zotlabs/Module/Admin.php:762 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" msgstr "La configuración recomendada es que sólo se permita HTML sin filtrar desde los siguientes sitios: " -#: ../../Zotlabs/Module/Admin.php:750 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" "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/
    " -#: ../../Zotlabs/Module/Admin.php:751 +#: ../../Zotlabs/Module/Admin.php:764 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." msgstr "El resto del contenido incrustado se filtrará, excepto si el contenido incorporado desde ese sitio está bloqueado de forma explícita." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1479 +#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 msgid "Security" msgstr "Seguridad" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "Block public" msgstr "Bloquear páginas públicas" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." -#: ../../Zotlabs/Module/Admin.php:759 +#: ../../Zotlabs/Module/Admin.php:772 msgid "Set \"Transport Security\" HTTP header" msgstr "Habilitar \"Seguridad de transporte\" (\"Transport Security\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Admin.php:760 +#: ../../Zotlabs/Module/Admin.php:773 msgid "Set \"Content Security Policy\" HTTP header" msgstr "Habilitar la \"Política de seguridad del contenido\" (\"Content Security Policy\") en la cabecera HTTP" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "Allow communications only from these sites" msgstr "Permitir la comunicación solo desde estos sitios" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "" "One site per line. Leave empty to allow communication from anywhere by " "default" msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Admin.php:762 +#: ../../Zotlabs/Module/Admin.php:775 msgid "Block communications from these sites" msgstr "Bloquear la comunicación desde estos sitios" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "Allow communications only from these channels" msgstr "Permitir la comunicación solo desde estos canales" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "" "One channel (hash) per line. Leave empty to allow from any channel by " "default" msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../Zotlabs/Module/Admin.php:764 +#: ../../Zotlabs/Module/Admin.php:777 msgid "Block communications from these channels" msgstr "Bloquear la comunicación desde estos canales" -#: ../../Zotlabs/Module/Admin.php:765 +#: ../../Zotlabs/Module/Admin.php:778 msgid "Only allow embeds from secure (SSL) websites and links." msgstr "Sólo se permite contenido multimedia incorporado desde sitios y enlaces seguros (SSL)." -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "Permitir contenido HTML sin filtrar sólo desde estos dominios " -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "One site per line. By default embedded content is filtered." msgstr "Un sitio por línea. El contenido incorporado se filtra de forma predeterminada." -#: ../../Zotlabs/Module/Admin.php:767 +#: ../../Zotlabs/Module/Admin.php:780 msgid "Block embedded HTML from these domains" msgstr "Bloquear contenido con HTML incorporado desde estos dominios" -#: ../../Zotlabs/Module/Admin.php:785 +#: ../../Zotlabs/Module/Admin.php:798 msgid "Update has been marked successful" msgstr "La actualización ha sido marcada como exitosa" -#: ../../Zotlabs/Module/Admin.php:795 +#: ../../Zotlabs/Module/Admin.php:808 #, php-format msgid "Executing %s failed. Check system logs." msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." -#: ../../Zotlabs/Module/Admin.php:798 +#: ../../Zotlabs/Module/Admin.php:811 #, php-format msgid "Update %s was successfully applied." msgstr "La actualización de %s se ha realizado exitosamente." -#: ../../Zotlabs/Module/Admin.php:802 +#: ../../Zotlabs/Module/Admin.php:815 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." -#: ../../Zotlabs/Module/Admin.php:805 +#: ../../Zotlabs/Module/Admin.php:818 #, php-format msgid "Update function %s could not be found." msgstr "No se encuentra la función de actualización de %s." -#: ../../Zotlabs/Module/Admin.php:821 +#: ../../Zotlabs/Module/Admin.php:834 msgid "No failed updates." msgstr "No ha fallado ninguna actualización." -#: ../../Zotlabs/Module/Admin.php:825 +#: ../../Zotlabs/Module/Admin.php:838 msgid "Failed Updates" msgstr "Han fallado las actualizaciones" -#: ../../Zotlabs/Module/Admin.php:827 +#: ../../Zotlabs/Module/Admin.php:840 msgid "Mark success (if update was manually applied)" msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" -#: ../../Zotlabs/Module/Admin.php:828 +#: ../../Zotlabs/Module/Admin.php:841 msgid "Attempt to execute this update step automatically" msgstr "Intentar ejecutar este paso de actualización automáticamente" -#: ../../Zotlabs/Module/Admin.php:859 +#: ../../Zotlabs/Module/Admin.php:872 msgid "Queue Statistics" msgstr "Estadísticas de la cola" -#: ../../Zotlabs/Module/Admin.php:860 +#: ../../Zotlabs/Module/Admin.php:873 msgid "Total Entries" msgstr "Total de entradas" -#: ../../Zotlabs/Module/Admin.php:861 +#: ../../Zotlabs/Module/Admin.php:874 msgid "Priority" msgstr "Prioridad" -#: ../../Zotlabs/Module/Admin.php:862 +#: ../../Zotlabs/Module/Admin.php:875 msgid "Destination URL" msgstr "Dirección de destino" -#: ../../Zotlabs/Module/Admin.php:863 +#: ../../Zotlabs/Module/Admin.php:876 msgid "Mark hub permanently offline" msgstr "Marcar el servidor como permanentemente fuera de línea" -#: ../../Zotlabs/Module/Admin.php:864 +#: ../../Zotlabs/Module/Admin.php:877 msgid "Empty queue for this hub" msgstr "Vaciar la cola para este servidor" -#: ../../Zotlabs/Module/Admin.php:865 +#: ../../Zotlabs/Module/Admin.php:878 msgid "Last known contact" msgstr "Último contacto conocido" -#: ../../Zotlabs/Module/Admin.php:901 +#: ../../Zotlabs/Module/Admin.php:914 #, 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.php:908 +#: ../../Zotlabs/Module/Admin.php:921 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s cuentas eliminadas" msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Admin.php:944 +#: ../../Zotlabs/Module/Admin.php:957 msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin.php:955 +#: ../../Zotlabs/Module/Admin.php:968 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" -#: ../../Zotlabs/Module/Admin.php:963 +#: ../../Zotlabs/Module/Admin.php:976 #, php-format msgid "Account '%s' blocked" msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Admin.php:971 +#: ../../Zotlabs/Module/Admin.php:984 #, php-format msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1477 +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1491 msgid "Accounts" msgstr "Cuentas" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 msgid "select all" msgstr "seleccionar todo" -#: ../../Zotlabs/Module/Admin.php:1034 +#: ../../Zotlabs/Module/Admin.php:1047 msgid "Registrations waiting for confirm" msgstr "Inscripciones en espera de confirmación" -#: ../../Zotlabs/Module/Admin.php:1035 +#: ../../Zotlabs/Module/Admin.php:1048 msgid "Request date" msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Admin.php:1036 +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "Correo electrónico" + +#: ../../Zotlabs/Module/Admin.php:1049 msgid "No registrations." msgstr "Sin registros." -#: ../../Zotlabs/Module/Admin.php:1038 +#: ../../Zotlabs/Module/Admin.php:1051 msgid "Deny" msgstr "Rechazar" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Bloquear" + +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Desbloquear" + +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 msgid "All Channels" msgstr "Todos los canales" -#: ../../Zotlabs/Module/Admin.php:1049 +#: ../../Zotlabs/Module/Admin.php:1062 msgid "Register date" msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Admin.php:1050 +#: ../../Zotlabs/Module/Admin.php:1063 msgid "Last login" msgstr "Último acceso" -#: ../../Zotlabs/Module/Admin.php:1051 +#: ../../Zotlabs/Module/Admin.php:1064 msgid "Expires" msgstr "Caduca" -#: ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1065 msgid "Service Class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Admin.php:1067 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.php:1055 +#: ../../Zotlabs/Module/Admin.php:1068 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.php:1091 +#: ../../Zotlabs/Module/Admin.php:1104 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s canales censurados/no censurados" msgstr[1] "%s canales censurados/no censurados" -#: ../../Zotlabs/Module/Admin.php:1100 +#: ../../Zotlabs/Module/Admin.php:1113 #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" msgstr[0] "%s código permitido/no permitido al canal" msgstr[1] "%s código permitido/no permitido al canal" -#: ../../Zotlabs/Module/Admin.php:1106 +#: ../../Zotlabs/Module/Admin.php:1119 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s canales eliminados" msgstr[1] "%s canales eliminados" -#: ../../Zotlabs/Module/Admin.php:1126 +#: ../../Zotlabs/Module/Admin.php:1139 msgid "Channel not found" msgstr "Canal no encontrado" -#: ../../Zotlabs/Module/Admin.php:1136 +#: ../../Zotlabs/Module/Admin.php:1149 #, php-format msgid "Channel '%s' deleted" msgstr "Canal '%s' eliminado" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' censored" msgstr "Canal '%s' censurado" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' uncensored" msgstr "Canal '%s' no censurado" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code allowed" msgstr "Código permitido al canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code disallowed" msgstr "Código no permitido al canal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1478 +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 msgid "Channels" msgstr "Canales" -#: ../../Zotlabs/Module/Admin.php:1214 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "Censor" msgstr "Censurar" -#: ../../Zotlabs/Module/Admin.php:1215 +#: ../../Zotlabs/Module/Admin.php:1228 msgid "Uncensor" msgstr "No censurar" -#: ../../Zotlabs/Module/Admin.php:1216 +#: ../../Zotlabs/Module/Admin.php:1229 msgid "Allow Code" msgstr "Permitir código" -#: ../../Zotlabs/Module/Admin.php:1217 +#: ../../Zotlabs/Module/Admin.php:1230 msgid "Disallow Code" msgstr "No permitir código" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1626 +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 msgid "Channel" msgstr "Canal" -#: ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1235 msgid "UID" msgstr "UID" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:1239 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:1240 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin.php:1284 +#: ../../Zotlabs/Module/Admin.php:1297 #, php-format msgid "Plugin %s disabled." msgstr "Extensión %s desactivada." -#: ../../Zotlabs/Module/Admin.php:1288 +#: ../../Zotlabs/Module/Admin.php:1301 #, php-format msgid "Plugin %s enabled." msgstr "Extensión %s activada." -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 msgid "Disable" msgstr "Desactivar" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 msgid "Enable" msgstr "Activar" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1481 +#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 +#: ../../include/widgets.php:1495 msgid "Plugins" msgstr "Extensiones (plugins)" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 msgid "Toggle" msgstr "Cambiar" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:210 -#: ../../include/widgets.php:647 +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:212 msgid "Settings" msgstr "Ajustes" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 msgid "Author: " msgstr "Autor:" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 msgid "Maintainer: " msgstr "Mantenedor:" -#: ../../Zotlabs/Module/Admin.php:1341 +#: ../../Zotlabs/Module/Admin.php:1354 msgid "Minimum project version: " msgstr "Versión mínima del proyecto:" -#: ../../Zotlabs/Module/Admin.php:1342 +#: ../../Zotlabs/Module/Admin.php:1355 msgid "Maximum project version: " msgstr "Versión máxima del proyecto:" -#: ../../Zotlabs/Module/Admin.php:1343 +#: ../../Zotlabs/Module/Admin.php:1356 msgid "Minimum PHP version: " msgstr "Versión mínima de PHP:" -#: ../../Zotlabs/Module/Admin.php:1344 +#: ../../Zotlabs/Module/Admin.php:1357 +msgid "Compatible Server Roles: " +msgstr "Configuraciones compatibles con este servidor:" + +#: ../../Zotlabs/Module/Admin.php:1358 msgid "Requires: " msgstr "Se requiere:" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 msgid "Disabled - version incompatibility" msgstr "Deshabilitado - versiones incompatibles" -#: ../../Zotlabs/Module/Admin.php:1394 +#: ../../Zotlabs/Module/Admin.php:1408 msgid "Enter the public git repository URL of the plugin repo." msgstr "Escriba la URL pública del repositorio git del plugin." -#: ../../Zotlabs/Module/Admin.php:1395 +#: ../../Zotlabs/Module/Admin.php:1409 msgid "Plugin repo git URL" msgstr "URL del repositorio git del plugin" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "Custom repo name" msgstr "Nombre personalizado del repositorio" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "(optional)" msgstr "(opcional)" -#: ../../Zotlabs/Module/Admin.php:1397 +#: ../../Zotlabs/Module/Admin.php:1411 msgid "Download Plugin Repo" msgstr "Descargar el repositorio" -#: ../../Zotlabs/Module/Admin.php:1404 +#: ../../Zotlabs/Module/Admin.php:1418 msgid "Install new repo" msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Instalar" -#: ../../Zotlabs/Module/Admin.php:1427 +#: ../../Zotlabs/Module/Admin.php:1441 msgid "Manage Repos" msgstr "Gestionar los repositorios" -#: ../../Zotlabs/Module/Admin.php:1428 +#: ../../Zotlabs/Module/Admin.php:1442 msgid "Installed Plugin Repositories" msgstr "Repositorios de los plugins instalados" -#: ../../Zotlabs/Module/Admin.php:1429 +#: ../../Zotlabs/Module/Admin.php:1443 msgid "Install a New Plugin Repository" msgstr "Instalar un nuevo repositorio de plugins" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:72 -#: ../../Zotlabs/Module/Settings.php:670 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Actualizar" - -#: ../../Zotlabs/Module/Admin.php:1436 +#: ../../Zotlabs/Module/Admin.php:1450 msgid "Switch branch" msgstr "Cambiar la rama" -#: ../../Zotlabs/Module/Admin.php:1550 +#: ../../Zotlabs/Module/Admin.php:1564 msgid "No themes found." msgstr "No se han encontrado temas." -#: ../../Zotlabs/Module/Admin.php:1606 +#: ../../Zotlabs/Module/Admin.php:1620 msgid "Screenshot" msgstr "Instantánea de pantalla" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1482 +#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 +#: ../../include/widgets.php:1496 msgid "Themes" msgstr "Temas" -#: ../../Zotlabs/Module/Admin.php:1652 +#: ../../Zotlabs/Module/Admin.php:1666 msgid "[Experimental]" msgstr "[Experimental]" -#: ../../Zotlabs/Module/Admin.php:1653 +#: ../../Zotlabs/Module/Admin.php:1667 msgid "[Unsupported]" msgstr "[No soportado]" -#: ../../Zotlabs/Module/Admin.php:1677 +#: ../../Zotlabs/Module/Admin.php:1691 msgid "Log settings updated." msgstr "Actualizado el informe de configuraciones." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1503 -#: ../../include/widgets.php:1513 +#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 msgid "Logs" msgstr "Informes" -#: ../../Zotlabs/Module/Admin.php:1734 +#: ../../Zotlabs/Module/Admin.php:1748 msgid "Clear" msgstr "Vaciar" -#: ../../Zotlabs/Module/Admin.php:1740 +#: ../../Zotlabs/Module/Admin.php:1754 msgid "Debugging" msgstr "Depuración" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "Log file" msgstr "Fichero de informe" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio web principal." -#: ../../Zotlabs/Module/Admin.php:1742 +#: ../../Zotlabs/Module/Admin.php:1756 msgid "Log level" msgstr "Nivel de depuración" -#: ../../Zotlabs/Module/Admin.php:2028 +#: ../../Zotlabs/Module/Admin.php:2042 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "Field nickname" msgstr "Alias del campo" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "System name of field" msgstr "Nombre del campo en el sistema" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 msgid "Input type" msgstr "Tipo de entrada" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Field Name" msgstr "Nombre del campo" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Label on profile pages" msgstr "Etiqueta a mostrar en la página del perfil" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Help text" msgstr "Texto de ayuda" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Additional info (optional)" msgstr "Información adicional (opcional)" -#: ../../Zotlabs/Module/Admin.php:2042 +#: ../../Zotlabs/Module/Admin.php:2056 msgid "Field definition not found" msgstr "Definición del campo no encontrada" -#: ../../Zotlabs/Module/Admin.php:2048 +#: ../../Zotlabs/Module/Admin.php:2062 msgid "Edit Profile Field" msgstr "Modificar el campo del perfil" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1484 +#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 msgid "Profile Fields" msgstr "Campos del perfil" -#: ../../Zotlabs/Module/Admin.php:2107 +#: ../../Zotlabs/Module/Admin.php:2121 msgid "Basic Profile Fields" msgstr "Campos básicos del perfil" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "Advanced Profile Fields" msgstr "Campos avanzados del perfil" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "(In addition to basic fields)" msgstr "(Además de los campos básicos)" -#: ../../Zotlabs/Module/Admin.php:2110 +#: ../../Zotlabs/Module/Admin.php:2124 msgid "All available fields" msgstr "Todos los campos disponibles" -#: ../../Zotlabs/Module/Admin.php:2111 +#: ../../Zotlabs/Module/Admin.php:2125 msgid "Custom Fields" msgstr "Campos personalizados" -#: ../../Zotlabs/Module/Admin.php:2115 +#: ../../Zotlabs/Module/Admin.php:2129 msgid "Create Custom Field" msgstr "Crear un campo personalizado" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Nombre o descripción" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/Lostpass.php:44 #, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" + +#: ../../Zotlabs/Module/Lostpass.php:67 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" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 +msgid "Password Reset" +msgstr "Restablecer la contraseña" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Crear un canal" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Lostpass.php:95 msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[hoy]" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "publicó un evento" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Descartar" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Estado de ánimo" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:193 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:963 -msgid "Poke" -msgstr "Toques y otras cosas" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Perfil no encontrado." -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Perfil eliminado." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Toque/Incitación" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Perfil-" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "El nuevo perfil ha sido creado." -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Perfil no disponible para clonar." -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Perfil no disponible para exportar." -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Convertir en privado este envío" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Se necesita el nombre del perfil." -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Enviado con éxito." +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Pareja sentimental" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Me gusta" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:285 -msgid "Login failed." -msgstr "El acceso ha fallado." +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "No me gusta" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Trabajo:" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religión" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1290 -msgid "Profile" -msgstr "Perfil" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Género" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visible para" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Página personal" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor de configuración" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Intereses" -#: ../../Zotlabs/Module/Pconfig.php:49 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Perfil actualizado." -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Ocultar la lista de conexiones a los visitantes del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versión %s" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modificar los detalles de este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Ver este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Editar visibilidad" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestión del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Etiqueta:" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carga media actual:" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crear un nuevo perfil usando estos ajustes" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clonar este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Eliminar este perfil" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problemas en $projectname" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1559 +msgid "Personal" +msgstr "Personales" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relación" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Administradores del sitio" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Varios" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importar perfil desde un fichero" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "El mensaje de error fue:" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Exportar perfil a un fichero" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Falló la autenticación." +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Género" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Estado civil" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Acceder" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nombre del perfil" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1337 -msgid "Public Hubs" -msgstr "Servidores públicos" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Este es su perfil principal." -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Nombre completo" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Dirección del hub" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Título o descripción" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Tipo de acceso" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Dirección" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Normas de registro" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Ciudad" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Estadísticas" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Región o Estado" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Código postal" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:962 -msgid "Ratings" -msgstr "Valoraciones" - -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Valorar" - -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." - -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" - -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Nombre del bloque" - -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2238 -msgid "Blocks" -msgstr "Bloques" - -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Título del bloque" - -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" - -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" - -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Ninguna valoración" - -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Valoración:" - -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Sitio web:" - -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Descripción:" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/nav.php:165 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "Aplicaciones (apps)" - -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1243 -msgid "Title (optional)" -msgstr "Título (opcional)" - -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modificar este bloque" - -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Ningún canal." - -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Conexiones comunes" - -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Ninguna conexión en común." - -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" - -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Guardar marcador" - -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "Dirección del marcador" - -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" - -#: ../../Zotlabs/Module/Register.php:49 -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:55 -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:89 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." - -#: ../../Zotlabs/Module/Register.php:131 -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:137 -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:140 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." - -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "El registro está deshabilitado en este sitio." - -#: ../../Zotlabs/Module/Register.php:193 -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:194 -msgid "Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." - -#: ../../Zotlabs/Module/Register.php:204 -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:215 -msgid "Terms of Service" -msgstr "Términos del servicio" - -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" - -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" - -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" - -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Elija una contraseña" - -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "País" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Quién (si es pertinente)" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sí" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Desde (fecha)" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Háblenos de usted" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:149 -#: ../../boot.php:1686 -msgid "Register" -msgstr "Registrarse" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Dirección de la página personal" -#: ../../Zotlabs/Module/Register.php:263 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Lugar de nacimiento" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Por favor, inicie sesión." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Creencias religiosas" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Palabras clave utilizadas en los listados de directorios" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATENCIÓN:" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Por ejemplo: software de fotografía submarina" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Preferencias musicales" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libros, literatura" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisión" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Cine, danza, cultura, entretenimiento" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Aficiones o intereses" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings.php:759 -msgid "Remove Account" -msgstr "Eliminar cuenta" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Vida sentimental o amorosa" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Estudios" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Eliminar este canal" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Información de contacto y redes sociales" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red." +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Imagen del perfil" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:90 +msgid "Edit Profiles" +msgstr "Editar perfiles" -#: ../../Zotlabs/Module/Removeme.php:64 ../../Zotlabs/Module/Settings.php:1219 -msgid "Remove Channel" -msgstr "Eliminar el canal" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Exportar el canal" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Uexport.php:57 -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/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Exportar contenidos" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "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/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "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/Webpages.php:53 +msgid "Import Webpage Elements" +msgstr "Importar elementos de una página web" -#: ../../Zotlabs/Module/Uexport.php:63 -#, 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/Webpages.php:54 +msgid "Import selected" +msgstr "Importar elementos seleccionados" -#: ../../Zotlabs/Module/Uexport.php:64 -#, 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/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1718 ../../include/nav.php:108 +msgid "Webpages" +msgstr "Páginas web" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Acciones" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" +msgstr "Título de página" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." +msgstr "Tipo de fichero no válido." -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "El nombre es obligatorio" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" +msgstr "Error al abrir el fichero comprimido zip" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." +msgstr "La ruta de la carpeta no es válida." -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Este canal tiene un límite de %d tokens" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." +msgstr "No se han detectado elementos de ninguna página web." -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Se requiere el nombre y la contraseña." +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." +msgstr "Importación completada." -#: ../../Zotlabs/Module/Settings.php:168 -msgid "Token saved." -msgstr "Token salvado." +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Entradas de calendario importadas." -#: ../../Zotlabs/Module/Settings.php:274 -msgid "Not valid email." -msgstr "Correo electrónico no válido." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "No se han encontrado entradas de calendario." -#: ../../Zotlabs/Module/Settings.php:277 -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/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." -#: ../../Zotlabs/Module/Settings.php:286 -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/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." -#: ../../Zotlabs/Module/Settings.php:303 -msgid "Password verification failed." -msgstr "La comprobación de la contraseña ha fallado." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Se requieren el título del evento y su hora de inicio." -#: ../../Zotlabs/Module/Settings.php:310 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento no encontrado." -#: ../../Zotlabs/Module/Settings.php:314 -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/Events.php:452 +msgid "Edit event title" +msgstr "Editar el título del evento" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "Password changed." -msgstr "Contraseña cambiada." +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Título del evento" -#: ../../Zotlabs/Module/Settings.php:330 -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/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Temas (lista separada por comas)" -#: ../../Zotlabs/Module/Settings.php:579 -msgid "Settings updated." -msgstr "Ajustes actualizados." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Modificar el tema" -#: ../../Zotlabs/Module/Settings.php:643 ../../Zotlabs/Module/Settings.php:669 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Add application" -msgstr "Añadir aplicación" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Tema" -#: ../../Zotlabs/Module/Settings.php:646 -msgid "Name of application" -msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:673 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" -#: ../../Zotlabs/Module/Settings.php:647 ../../Zotlabs/Module/Settings.php:648 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "La fecha y hora de terminación no se conocen o no son relevantes" -#: ../../Zotlabs/Module/Settings.php:648 ../../Zotlabs/Module/Settings.php:674 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" -#: ../../Zotlabs/Module/Settings.php:649 ../../Zotlabs/Module/Settings.php:675 -msgid "Redirect" -msgstr "Redirigir" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" + +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de los husos horarios" -#: ../../Zotlabs/Module/Settings.php:649 +#: ../../Zotlabs/Module/Events.php:463 msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Settings.php:676 -msgid "Icon url" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Editar la descripción" -#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Opcional" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Modificar la dirección" -#: ../../Zotlabs/Module/Settings.php:661 -msgid "Application not found." -msgstr "Aplicación no encontrada." +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Compartir este evento" -#: ../../Zotlabs/Module/Settings.php:704 -msgid "Connected Apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +msgid "Permission settings" +msgstr "Configuración de permisos" -#: ../../Zotlabs/Module/Settings.php:708 -msgid "Client key starts with" -msgstr "La \"client key\" empieza por" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Opciones avanzadas" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "No name" -msgstr "Sin nombre" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Settings.php:710 -msgid "Remove authorization" -msgstr "Eliminar autorización" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Editar evento" -#: ../../Zotlabs/Module/Settings.php:723 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de los complementos" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Borrar evento" -#: ../../Zotlabs/Module/Settings.php:730 -msgid "Feature/Addon Settings" -msgstr "Ajustes de los complementos" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Account Settings" -msgstr "Configuración de la cuenta" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "calendario" -#: ../../Zotlabs/Module/Settings.php:754 -msgid "Current Password" -msgstr "Contraseña actual" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Editar el evento" -#: ../../Zotlabs/Module/Settings.php:755 -msgid "Enter New Password" -msgstr "Escribir una nueva contraseña" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crear un evento" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Confirm New Password" -msgstr "Confirmar la nueva contraseña" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exportar" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Mes" -#: ../../Zotlabs/Module/Settings.php:758 -#: ../../Zotlabs/Module/Settings.php:1136 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Semana" -#: ../../Zotlabs/Module/Settings.php:760 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Día" -#: ../../Zotlabs/Module/Settings.php:789 -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 the private content." -msgstr "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros. Estas identidades se pueden usar en las Listas de control de acceso y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado." +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Hoy" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: " +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento borrado" -#: ../../Zotlabs/Module/Settings.php:796 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Tokens de acceso para invitados" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Login Name" -msgstr "Nombre de inicio de sesión" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../Zotlabs/Module/Settings.php:804 -msgid "Login Password" -msgstr "Contraseña de inicio de sesión" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../Zotlabs/Module/Settings.php:805 -msgid "Expires (yyyy-mm-dd)" -msgstr "Expira (aaaa-mm-dd)" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" + +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Importación completada." + +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../Zotlabs/Module/Settings.php:830 -msgid "Additional Features" -msgstr "Funcionalidades" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importar canal" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "Connector Settings" -msgstr "Configuración del conector" +#: ../../Zotlabs/Module/Import.php:548 +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/Settings.php:893 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../Zotlabs/Module/Settings.php:896 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../Zotlabs/Module/Settings.php:938 -msgid "Display Settings" -msgstr "Ajustes de visualización" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" -#: ../../Zotlabs/Module/Settings.php:939 -msgid "Theme Settings" -msgstr "Ajustes del tema" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Su antigua contraseña" -#: ../../Zotlabs/Module/Settings.php:940 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "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/Settings.php:941 -msgid "Content Settings" -msgstr "Ajustes del contenido" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../Zotlabs/Module/Settings.php:947 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" -#: ../../Zotlabs/Module/Settings.php:948 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." -#: ../../Zotlabs/Module/Settings.php:949 -msgid "Preload images before rendering the page" -msgstr "Carga previa de las imágenes antes de generar la página" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crear un canal" -#: ../../Zotlabs/Module/Settings.php:949 +#: ../../Zotlabs/Module/New_channel.php:136 msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." -#: ../../Zotlabs/Module/Settings.php:950 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Settings.php:951 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum number of conversations to load at any time:" -msgstr "Máximo número de conversaciones a cargar en cualquier momento:" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Settings.php:952 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[hoy]" -#: ../../Zotlabs/Module/Settings.php:953 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "publicó un evento" -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." -#: ../../Zotlabs/Module/Settings.php:955 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de plantilla de página del sistema - (avanzado)" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" -#: ../../Zotlabs/Module/Settings.php:958 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" -#: ../../Zotlabs/Module/Settings.php:958 ../../Zotlabs/Module/Settings.php:959 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Toques y otras cosas" -#: ../../Zotlabs/Module/Settings.php:959 -msgid "Use blog/list mode on grid page" -msgstr "Mostrar mi red en modo blog" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" -#: ../../Zotlabs/Module/Settings.php:960 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" -#: ../../Zotlabs/Module/Settings.php:960 ../../Zotlabs/Module/Settings.php:961 -msgid "click to expand content exceeding this height" -msgstr "Pulsar para expandir el contenido que exceda de esta altura" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" -#: ../../Zotlabs/Module/Settings.php:961 -msgid "Grid page max height of content (in pixels)" -msgstr "Altura máxima del contenido de mi red (en píxeles)" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Nobody except yourself" -msgstr "Nadie excepto usted" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" -#: ../../Zotlabs/Module/Settings.php:991 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Settings.php:992 -msgid "Approved connections" -msgstr "Conexiones aprobadas" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." -#: ../../Zotlabs/Module/Settings.php:993 -msgid "Any connections" -msgstr "Cualquier conexión" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." -#: ../../Zotlabs/Module/Settings.php:994 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../Zotlabs/Module/Settings.php:995 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Settings.php:996 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Perfil" -#: ../../Zotlabs/Module/Settings.php:997 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" -#: ../../Zotlabs/Module/Settings.php:1076 -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/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "Your channel address is" -msgstr "Su dirección de canal es" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Channel Settings" -msgstr "Ajustes del canal" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." -#: ../../Zotlabs/Module/Settings.php:1134 -msgid "Basic Settings" -msgstr "Configuración básica" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." -#: ../../Zotlabs/Module/Settings.php:1135 ../../include/channel.php:1180 -msgid "Full Name:" -msgstr "Nombre completo:" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" -#: ../../Zotlabs/Module/Settings.php:1137 -msgid "Your Timezone:" -msgstr "Su huso horario:" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo publicaciones" -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Default Post Location:" -msgstr "Localización geográfica predeterminada para sus publicaciones:" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../Zotlabs/Module/Settings.php:1138 -msgid "Geographical location to display on your posts" -msgstr "Localización geográfica que debe mostrarse en sus publicaciones" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versión %s" -#: ../../Zotlabs/Module/Settings.php:1139 -msgid "Use Browser Location:" -msgstr "Usar la localización geográfica del navegador:" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:" -#: ../../Zotlabs/Module/Settings.php:1141 -msgid "Adult Content" -msgstr "Contenido solo para adultos" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)" -#: ../../Zotlabs/Module/Settings.php:1141 +#: ../../Zotlabs/Module/Siteinfo.php:49 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" - -#: ../../Zotlabs/Module/Settings.php:1143 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" - -#: ../../Zotlabs/Module/Settings.php:1146 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Hide my online presence" -msgstr "Ocultar mi presencia en línea" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../Zotlabs/Module/Settings.php:1148 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" -#: ../../Zotlabs/Module/Settings.php:1150 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carga media actual:" -#: ../../Zotlabs/Module/Settings.php:1151 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" -#: ../../Zotlabs/Module/Settings.php:1152 +#: ../../Zotlabs/Module/Siteinfo.php:59 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" - -#: ../../Zotlabs/Module/Settings.php:1153 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." -#: ../../Zotlabs/Module/Settings.php:1154 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" -#: ../../Zotlabs/Module/Settings.php:1156 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problemas en $projectname" -#: ../../Zotlabs/Module/Settings.php:1156 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." - -#: ../../Zotlabs/Module/Settings.php:1158 -msgid "Advanced Privacy Settings" -msgstr "Configuración de privacidad avanzada" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "Expire other channel content after this many days" -msgstr "Caducar contenido de otros canales después de este número de días" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administradores del sitio" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "0 or blank to use the website limit." -msgstr "0 o en blanco para usar el límite del sitio web." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" +msgstr "Bloques" -#: ../../Zotlabs/Module/Settings.php:1160 -#, php-format -msgid "This website expires after %d days." -msgstr "Este sitio web caduca después de %d días." +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Título del bloque" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "This website does not expire imported content." -msgstr "Este sitio web no caduca el contenido importado." +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" +msgstr "Plantillas" -#: ../../Zotlabs/Module/Settings.php:1160 -msgid "The website limit takes precedence if lower than your limit." -msgstr "El límite del sitio web tiene prioridad si es inferior a su propio límite." +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Descripción de la plantilla" -#: ../../Zotlabs/Module/Settings.php:1161 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Descargar el fichero PDL" -#: ../../Zotlabs/Module/Settings.php:1162 -msgid "Default Post and Publish Permissions" -msgstr "Permisos predeterminados de entradas y publicaciones" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ../../Zotlabs/Module/Settings.php:1164 -msgid "Use my default audience setting for the type of object published" -msgstr "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valoración:" -#: ../../Zotlabs/Module/Settings.php:1167 -msgid "Channel permissions category:" -msgstr "Categoría de permisos del canal:" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sitio web:" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descripción:" -#: ../../Zotlabs/Module/Settings.php:1173 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" +#: ../../Zotlabs/Module/Profile_photo.php:186 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Notification Settings" -msgstr "Configuración de las notificaciones" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" -#: ../../Zotlabs/Module/Settings.php:1177 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Settings.php:1178 -msgid "accepting a friend request" -msgstr "Acepte una solicitud de amistad" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" +msgstr "Importar" -#: ../../Zotlabs/Module/Settings.php:1179 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." -#: ../../Zotlabs/Module/Settings.php:1180 -msgid "making an interesting profile change" -msgstr "Realice un cambio interesante en su perfil" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" -#: ../../Zotlabs/Module/Settings.php:1181 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." -#: ../../Zotlabs/Module/Settings.php:1182 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "No se puede asociar a un destinatario." -#: ../../Zotlabs/Module/Settings.php:1183 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "No se puede establecer la comunicación con el canal solicitado." -#: ../../Zotlabs/Module/Settings.php:1184 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (\"muro\")" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." -#: ../../Zotlabs/Module/Settings.php:1186 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Mensajes" -#: ../../Zotlabs/Module/Settings.php:1187 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Mensaje revocado." -#: ../../Zotlabs/Module/Settings.php:1188 -msgid "You are tagged in a post" -msgstr "Usted sea etiquetado en una publicación" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversación eliminada." -#: ../../Zotlabs/Module/Settings.php:1189 -msgid "You are poked/prodded/etc. in a post" -msgstr "Reciba un toque o incitación en una publicación" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../Zotlabs/Module/Settings.php:1192 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Settings.php:1194 -msgid "Unseen grid activity" -msgstr "Nueva actividad en la red" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" -#: ../../Zotlabs/Module/Settings.php:1195 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" -#: ../../Zotlabs/Module/Settings.php:1196 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Para:" -#: ../../Zotlabs/Module/Settings.php:1196 -#: ../../Zotlabs/Module/Settings.php:1201 -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "Recommended" -msgstr "Recomendado" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Asunto:" -#: ../../Zotlabs/Module/Settings.php:1197 -msgid "Upcoming events" -msgstr "Próximos eventos" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1239 +msgid "Attach file" +msgstr "Adjuntar fichero" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Events today" -msgstr "Eventos de hoy" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Enviar" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1284 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" -#: ../../Zotlabs/Module/Settings.php:1199 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1289 +msgid "Encrypt text" +msgstr "Cifrar texto" -#: ../../Zotlabs/Module/Settings.php:1200 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Borrar mensaje" -#: ../../Zotlabs/Module/Settings.php:1201 -msgid "System info messages" -msgstr "Mensajes de información del sistema" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Informe de transmisión" -#: ../../Zotlabs/Module/Settings.php:1202 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revocar el mensaje" -#: ../../Zotlabs/Module/Settings.php:1203 -msgid "New connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." -#: ../../Zotlabs/Module/Settings.php:1204 -msgid "System Registrations" -msgstr "Registros del sistema" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Eliminar conversación" -#: ../../Zotlabs/Module/Settings.php:1205 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Notify me of events this many days in advance" -msgstr "Avisarme de los eventos con algunos días de antelación" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Responder" + +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." -#: ../../Zotlabs/Module/Settings.php:1209 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../Zotlabs/Module/Settings.php:1210 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Conexión actualizada." -#: ../../Zotlabs/Module/Settings.php:1213 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." -#: ../../Zotlabs/Module/Settings.php:1214 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ahora está conectado/a" -#: ../../Zotlabs/Module/Settings.php:1215 -msgid "Default photo upload folder" -msgstr "Carpeta por defecto de las fotos subidas" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../Zotlabs/Module/Settings.php:1215 -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "%Y - current year, %m - current month" -msgstr "%Y - año en curso, %m - mes actual" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." -#: ../../Zotlabs/Module/Settings.php:1216 -msgid "Default file upload folder" -msgstr "Carpeta por defecto de los archivos subidos" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../Zotlabs/Module/Settings.php:1218 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Settings.php:1220 -msgid "Remove this channel." -msgstr "Eliminar este canal." +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:955 ../../include/nav.php:88 +msgid "View Profile" +msgstr "Ver el perfil" -#: ../../Zotlabs/Module/Settings.php:1221 -msgid "Firefox Share $Projectname provider" -msgstr "Servicio de compartición de Firefox: proveedor $Projectname" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" -#: ../../Zotlabs/Module/Settings.php:1222 -msgid "Start calendar week on monday" -msgstr "Comenzar el calendario semanal por el lunes" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Setup.php:187 -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/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "No se puede crear la tabla." +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" -#: ../../Zotlabs/Module/Setup.php:203 -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/Connedit.php:583 +msgid "Unignore" +msgstr "Dejar de ignorar" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:722 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Verificación del sistema" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Verificar de nuevo" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Desarchivar" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Conexión a la base de datos" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivar" -#: ../../Zotlabs/Module/Setup.php:291 +#: ../../Zotlabs/Module/Connedit.php:594 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." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" -#: ../../Zotlabs/Module/Setup.php:292 -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/Connedit.php:595 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" -#: ../../Zotlabs/Module/Setup.php:293 -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/Connedit.php:599 +msgid "Unhide" +msgstr "Mostrar" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Ocultar" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "De forma predeterminada es 127.0.0.1" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Puerto de la base de datos" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "¡Esta conexión está oculta!" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Eliminar esta conexión" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" +msgstr "Yo" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" +msgstr "Familia" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Nombre de la base de datos" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "Conocidos/as" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Tipo de base de datos" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -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/Connedit.php:691 +msgid "Set Affinity" +msgstr "Ajustar la afinidad" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Dirección del sitio web" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Ajustar el perfil" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "-" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Ajustes del sitio" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +msgid "Connection Default Permissions" +msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "¿Habilitar las funcionalidades avanzadas de $Projectname ?" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#, php-format +msgid "Connection: %s" +msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "Se requiere la versión 5.5, o superior, de PHP." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "Versión de PHP" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Setup.php:404 -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/Connedit.php:754 +msgid "Available locations:" +msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Setup.php:405 +#: ../../Zotlabs/Module/Connedit.php:758 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." +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "Ruta del ejecutable PHP" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Setup.php:409 -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/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Setup.php:423 -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/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la transmisión de mensajes." +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Setup.php:445 -#, php-format +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 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." +"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/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "No importar entradas que contengan este texto" + +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Setup.php:475 +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format 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." +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Setup.php:476 +#: ../../Zotlabs/Module/Connedit.php:787 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:479 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" - -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" - -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Última actualización:" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "módulo PHP mysqli o postgres" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" +msgstr "Aplicaciones (apps)" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continuar" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "xml PHP module" -msgstr "módulo PHP xml" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" -#: ../../Zotlabs/Module/Setup.php:500 ../../Zotlabs/Module/Setup.php:502 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Connect.php:93 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:506 ../../Zotlabs/Module/Setup.php:509 -msgid "proc_open" -msgstr "proc_open" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." -#: ../../Zotlabs/Module/Setup.php:506 +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" -#: ../../Zotlabs/Module/Setup.php:518 +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." -#: ../../Zotlabs/Module/Setup.php:522 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" -#: ../../Zotlabs/Module/Setup.php:530 -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/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Seleccionar una carpeta de marcadores" -#: ../../Zotlabs/Module/Setup.php:534 -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/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Guardar marcador" -#: ../../Zotlabs/Module/Setup.php:552 -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/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "Dirección del marcador" -#: ../../Zotlabs/Module/Setup.php:553 -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/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Setup.php:555 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Setup.php:558 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Setup.php:572 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Acceder" -#: ../../Zotlabs/Module/Setup.php:573 -#, 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/Regmod.php:15 +msgid "Please login." +msgstr "Por favor, inicie sesión." -#: ../../Zotlabs/Module/Setup.php:574 ../../Zotlabs/Module/Setup.php:595 +#: ../../Zotlabs/Module/Removeaccount.php:35 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)." +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Setup.php:575 -#, 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/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Eliminar esta cuenta" -#: ../../Zotlabs/Module/Setup.php:578 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "ATENCIÓN:" -#: ../../Zotlabs/Module/Setup.php:594 +#: ../../Zotlabs/Module/Removeaccount.php:58 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 Red top " -"level folder" -msgstr "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../Zotlabs/Module/Setup.php:598 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../Zotlabs/Module/Setup.php:631 -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/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduzca su contraseña para su verificación:" -#: ../../Zotlabs/Module/Setup.php:632 +#: ../../Zotlabs/Module/Removeaccount.php:60 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." +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../Zotlabs/Module/Setup.php:633 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../Zotlabs/Module/Setup.php:634 +#: ../../Zotlabs/Module/Removeme.php:35 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." +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../Zotlabs/Module/Setup.php:635 -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/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Eliminar este canal" + +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Este canal va a ser completamente eliminado de la red." + +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Eliminar este canal y todos sus clones de la red" -#: ../../Zotlabs/Module/Setup.php:636 +#: ../../Zotlabs/Module/Removeme.php:63 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." +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" + +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" -#: ../../Zotlabs/Module/Setup.php:638 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "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." +"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/Setup.php:641 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../Zotlabs/Module/Setup.php:647 +#: ../../Zotlabs/Module/Uexport.php:59 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:" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "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/Setup.php:650 -msgid "Url rewrite is working" -msgstr "La reescritura de las direcciones funciona correctamente" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Uexport.php:62 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." +"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 "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/Setup.php:683 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." +#: ../../Zotlabs/Module/Uexport.php:63 +#, 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/Setup.php:720 -msgid "

    What next

    " -msgstr "

    Siguiente paso

    " +#: ../../Zotlabs/Module/Uexport.php:64 +#, 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/Setup.php:721 +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." +"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 "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "El elemento no es editable" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NUEVO" +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" +msgstr "Editar la entrada" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Eliminar todos los ficheros" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Eliminar este fichero" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Resultados de la búsqueda para: %s" + +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No se han encontrado restricciones sobre esta clase de servicio." #: ../../Zotlabs/Module/Thing.php:114 msgid "Thing updated" @@ -6274,37 +6151,164 @@ msgstr "elemento no encontrado." msgid "Edit Thing" msgstr "Editar elemento" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 msgid "Select a profile" msgstr "Seleccionar un perfil" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 msgid "Post an activity" msgstr "Publicar una actividad" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 msgid "Only sends to viewers of the applicable profile" msgstr "Sólo enviar a espectadores del perfil pertinente." -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 msgid "Name of thing e.g. something" msgstr "Nombre del elemento, p. ej.:. \"algo\"" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 msgid "URL of thing (optional)" msgstr "Dirección del elemento (opcional)" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 msgid "URL for photo of thing (optional)" msgstr "Dirección para la foto o elemento (opcional)" -#: ../../Zotlabs/Module/Thing.php:349 +#: ../../Zotlabs/Module/Thing.php:353 msgid "Add Thing to your Profile" msgstr "Añadir alguna cosa a su perfil" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." + +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." + +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." + +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." + +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." + +#: ../../Zotlabs/Module/Item.php:1112 +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:1119 +#, 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:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." + +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Ficheros: compartidos conmigo" + +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NUEVO" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Eliminar todos los ficheros" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Eliminar este fichero" + +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "No encontrado" + +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Entorno de edición" + +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\"" + +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Comparación de revisiones" + +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Revertir" + +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Nombre de su nuevo wiki:" + +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Nombre de la nueva página:" + +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Nuevo nombre:" + +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Incluir una imagen de los álbumes de fotos" + +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 +msgid "Embed an image from your albums" +msgstr "Incluir una imagen de sus álbumes" + +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 +#: ../../include/conversation.php:1291 +msgid "OK" +msgstr "OK" + +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Elegir imágenes para incluir" + +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Elegir un álbum" + +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Elegir un álbum diferente..." + +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Error al obtener la lista de álbumes" + +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Error al obtener el enlace de la foto" + +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Error al obtener el álbum" + #: ../../Zotlabs/Module/Sources.php:37 msgid "Failed to create source. No channel selected." -msgstr "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado." +msgstr "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal." #: ../../Zotlabs/Module/Sources.php:51 msgid "Source created." @@ -6318,8 +6322,8 @@ msgstr "Fuente actualizada." msgid "*" msgstr "*" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:72 -#: ../../include/widgets.php:639 +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:71 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -6353,7 +6357,7 @@ msgstr "Nombre del canal" msgid "" "Add the following categories to posts imported from this source (comma " "separated)" -msgstr "Añadir las categorías siguientes a las entradas importadas de esta fuente (separadas por comas)" +msgstr "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)" #: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 msgid "Source not found." @@ -6373,7 +6377,7 @@ msgstr "Fuente eliminada" #: ../../Zotlabs/Module/Sources.php:171 msgid "Unable to remove source." -msgstr "Imposible eliminar la fuente." +msgstr "No se puede eliminar la fuente." #: ../../Zotlabs/Module/Subthread.php:118 #, php-format @@ -6383,137 +6387,47 @@ msgstr "%1$s está siguiendo %3$s de %2$s" #: ../../Zotlabs/Module/Subthread.php:120 #, php-format msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ha dejado de seguir %3$s de %2$s" - -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." - -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" - -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "la entrada" - -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1929 -msgid "comment" -msgstr "el comentario" - -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" - -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Etiqueta eliminada." - -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." - -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" - -#: ../../Zotlabs/Module/Webpages.php:191 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:106 ../../include/conversation.php:1700 -msgid "Webpages" -msgstr "Páginas web" - -#: ../../Zotlabs/Module/Webpages.php:202 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Acciones" - -#: ../../Zotlabs/Module/Webpages.php:203 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Vínculo de la página" - -#: ../../Zotlabs/Module/Webpages.php:204 -msgid "Page Title" -msgstr "Título de página" - -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "No encontrado" - -#: ../../Zotlabs/Module/Wiki.php:92 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:108 ../../include/conversation.php:1710 -#: ../../include/conversation.php:1713 ../../include/features.php:55 -msgid "Wiki" -msgstr "Wiki" - -#: ../../Zotlabs/Module/Wiki.php:93 -msgid "Sandbox" -msgstr "Entorno de edición" - -#: ../../Zotlabs/Module/Wiki.php:95 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\"" - -#: ../../Zotlabs/Module/Wiki.php:164 -msgid "Revision Comparison" -msgstr "Comparación de revisiones" - -#: ../../Zotlabs/Module/Wiki.php:165 -msgid "Revert" -msgstr "Revertir" - -#: ../../Zotlabs/Module/Wiki.php:192 -msgid "Enter the name of your new wiki:" -msgstr "Nombre de su nuevo wiki:" - -#: ../../Zotlabs/Module/Wiki.php:193 -msgid "Enter the name of the new page:" -msgstr "Nombre de la nueva página:" - -#: ../../Zotlabs/Module/Wiki.php:194 -msgid "Enter the new name:" -msgstr "Nuevo nombre:" +msgstr "%1$s ha dejado de seguir %3$s de %2$s" -#: ../../Zotlabs/Module/Wiki.php:200 ../../include/conversation.php:1150 -msgid "Embed image from photo albums" -msgstr "Incluir una imagen de los álbumes de fotos" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." -#: ../../Zotlabs/Module/Wiki.php:201 ../../include/conversation.php:1234 -msgid "Embed an image from your albums" -msgstr "Incluir una imagen de sus álbumes" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" -#: ../../Zotlabs/Module/Wiki.php:203 ../../include/conversation.php:1236 -#: ../../include/conversation.php:1273 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "la entrada" -#: ../../Zotlabs/Module/Wiki.php:204 ../../include/conversation.php:1186 -msgid "Choose images to embed" -msgstr "Elegir imágenes para incluir" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "el comentario" -#: ../../Zotlabs/Module/Wiki.php:205 ../../include/conversation.php:1187 -msgid "Choose an album" -msgstr "Elegir un álbum" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" -#: ../../Zotlabs/Module/Wiki.php:206 ../../include/conversation.php:1188 -msgid "Choose a different album..." -msgstr "Elegir un álbum diferente..." +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Etiqueta eliminada." -#: ../../Zotlabs/Module/Wiki.php:207 ../../include/conversation.php:1189 -msgid "Error getting album list" -msgstr "Error al obtener la lista de álbumes" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta del elemento." -#: ../../Zotlabs/Module/Wiki.php:208 ../../include/conversation.php:1190 -msgid "Error getting photo link" -msgstr "Error al obtener el enlace de la foto" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1191 -msgid "Error getting album" -msgstr "Error al obtener el álbum" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canal añadido." #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." @@ -6532,23 +6446,62 @@ msgstr "Ver conexiones" msgid "Source of Item" msgstr "Origen del elemento" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Sala no encontrada" -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Abandonar la sala" -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Eliminar esta sala" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Estoy conectado/a" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." + +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nueva sala de chat" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Nombre de la sala de chat" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Caducidad de los mensajes en los chats (en minutos)" + +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" + +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" + +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Caducidad" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" @@ -6578,19 +6531,19 @@ msgstr "Sala no encontrada." msgid "Room is full" msgstr "La sala está llena." -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1882 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1883 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1885 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 msgid "Thank You," msgstr "Gracias," -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1887 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 #, php-format msgid "%s Administrator" msgstr "%s Administrador" @@ -6787,271 +6740,103 @@ msgstr "ha comentado la entrada de %s" msgid "Site Admin" msgstr "Administrador del sitio" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Informe de errores" - -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Ver los marcadores" - -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Mis salas de chat" - -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Servicio de compartición de Firefox" - -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnóstico remoto" - -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 -msgid "Suggest Channels" -msgstr "Sugerir canales" - -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:112 -#: ../../boot.php:1704 -msgid "Login" -msgstr "Iniciar sesión" - -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:181 -msgid "Grid" -msgstr "Red" - -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:184 -msgid "Channel Home" -msgstr "Mi canal" - -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:203 -#: ../../include/conversation.php:1664 ../../include/conversation.php:1667 -msgid "Events" -msgstr "Eventos" - -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:169 -msgid "Directory" -msgstr "Directorio" - -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:195 -msgid "Mail" -msgstr "Correo" - -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" - -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Probar" - -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Sugerir" - -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canal aleatorio" - -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invitar" - -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1480 -msgid "Features" -msgstr "Funcionalidades" - -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Publicación" - -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Comprar" - -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Mensaje Privado" - -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Seleccionar" - -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Guardar en carpeta" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Participaré" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "No participaré" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Quizá participe" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Estoy de acuerdo" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "No estoy de acuerdo" - -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Me abstengo" - -#: ../../Zotlabs/Lib/ThreadItem.php:218 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:219 -msgid "Remove Star" -msgstr "Eliminar estrella" - -#: ../../Zotlabs/Lib/ThreadItem.php:220 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" - -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "starred" -msgstr "preferidas" - -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" - -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" - -#: ../../Zotlabs/Lib/ThreadItem.php:243 -msgid "Add Tag" -msgstr "Añadir etiqueta" - -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 -msgid "like" -msgstr "me gusta" - -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "no me gusta" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "Share This" -msgstr "Compartir esto" - -#: ../../Zotlabs/Lib/ThreadItem.php:266 -msgid "share" -msgstr "compartir" - -#: ../../Zotlabs/Lib/ThreadItem.php:275 -msgid "Delivery Report" -msgstr "Informe de transmisión" - -#: ../../Zotlabs/Lib/ThreadItem.php:293 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Informe de errores" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Ver los marcadores" -#: ../../Zotlabs/Lib/ThreadItem.php:326 -msgid "to" -msgstr "a" +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Mis salas de chat" -#: ../../Zotlabs/Lib/ThreadItem.php:327 -msgid "via" -msgstr "mediante" +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Servicio de compartición de Firefox" -#: ../../Zotlabs/Lib/ThreadItem.php:328 -msgid "Wall-to-Wall" -msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/ThreadItem.php:329 -msgid "via Wall-To-Wall:" -msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Sugerir canales" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:722 -#, php-format -msgid "from %s" -msgstr "desde %s" +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1738 +msgid "Login" +msgstr "Iniciar sesión" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:725 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +msgid "Grid" +msgstr "Red" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:726 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +msgid "Channel Home" +msgstr "Mi canal" -#: ../../Zotlabs/Lib/ThreadItem.php:370 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 +#: ../../include/conversation.php:1685 ../../include/nav.php:205 +msgid "Events" +msgstr "Eventos" -#: ../../Zotlabs/Lib/ThreadItem.php:371 -msgid "Add to Calendar" -msgstr "Añadir al calendario" +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +msgid "Directory" +msgstr "Directorio" -#: ../../Zotlabs/Lib/ThreadItem.php:380 -msgid "Mark all seen" -msgstr "Marcar todo como visto" +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +msgid "Mail" +msgstr "Correo" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostrar todo" +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1226 -msgid "Bold" -msgstr "Negrita" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Probar" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1227 -msgid "Italic" -msgstr "Itálico " +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Sugerir" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1228 -msgid "Underline" -msgstr "Subrayar" +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Canal aleatorio" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1229 -msgid "Quote" -msgstr "Citar" +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Invitar" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1230 -msgid "Code" -msgstr "Código" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +msgid "Features" +msgstr "Funcionalidades" -#: ../../Zotlabs/Lib/ThreadItem.php:716 -msgid "Image" -msgstr "Imagen" +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Idioma" -#: ../../Zotlabs/Lib/ThreadItem.php:717 -msgid "Insert Link" -msgstr "Insertar enlace" +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Publicación" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Video" -msgstr "Vídeo" +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Foto del perfil" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Comprar" #: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:230 +#: ../../include/acl_selectors.php:124 msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." #: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:266 +#: ../../include/acl_selectors.php:165 msgid "Only me" msgstr "Sólo yo" @@ -7108,1678 +6893,1803 @@ msgstr "Este es su ajuste predeterminado para establecer quién puede ver su rep msgid "This is your default setting for the audience of your webpages" msgstr "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "No se ha encontrado el nombre de usuario en el fichero importado." - -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -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." - -#: ../../include/dba/dba_driver.php:171 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" - -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "La imagen excede el límite de %lu bytes del sitio" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nueva foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha publicado %2$s en %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1650 -msgid "Photo Albums" -msgstr "Álbumes de fotos" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" - -#: ../../include/nav.php:82 ../../include/nav.php:115 ../../boot.php:1703 -msgid "Logout" -msgstr "Finalizar sesión" - -#: ../../include/nav.php:82 ../../include/nav.php:115 -msgid "End this session" -msgstr "Finalizar esta sesión" - -#: ../../include/nav.php:85 ../../include/nav.php:146 -msgid "Home" -msgstr "Inicio" - -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" - -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Mensaje Privado" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 +msgid "Select" +msgstr "Seleccionar" -#: ../../include/nav.php:90 ../../include/channel.php:980 -msgid "Edit Profile" -msgstr "Editar el perfil" +#: ../../Zotlabs/Lib/ThreadItem.php:136 +msgid "Save to Folder" +msgstr "Guardar en carpeta" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will attend" +msgstr "Participaré" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I will not attend" +msgstr "No participaré" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" +#: ../../Zotlabs/Lib/ThreadItem.php:157 +msgid "I might attend" +msgstr "Quizá participe" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Sus salas de chat" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I agree" +msgstr "Estoy de acuerdo" -#: ../../include/nav.php:102 ../../include/conversation.php:1690 -msgid "Bookmarks" -msgstr "Marcadores" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I disagree" +msgstr "No estoy de acuerdo" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Sus marcadores" +#: ../../Zotlabs/Lib/ThreadItem.php:167 +msgid "I abstain" +msgstr "Me abstengo" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Sus páginas web" +#: ../../Zotlabs/Lib/ThreadItem.php:218 +msgid "Add Star" +msgstr "Destacar añadiendo una estrella" -#: ../../include/nav.php:108 -msgid "Your wiki" -msgstr "Su wiki" +#: ../../Zotlabs/Lib/ThreadItem.php:219 +msgid "Remove Star" +msgstr "Eliminar estrella" -#: ../../include/nav.php:112 -msgid "Sign in" -msgstr "Acceder" +#: ../../Zotlabs/Lib/ThreadItem.php:220 +msgid "Toggle Star Status" +msgstr "Activar o desactivar el estado de entrada preferida" -#: ../../include/nav.php:129 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" +#: ../../Zotlabs/Lib/ThreadItem.php:224 +msgid "starred" +msgstr "preferidas" -#: ../../include/nav.php:132 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 +msgid "Message signature validated" +msgstr "Firma de mensaje validada" -#: ../../include/nav.php:132 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 +msgid "Message signature incorrect" +msgstr "Firma de mensaje incorrecta" -#: ../../include/nav.php:146 -msgid "Home Page" -msgstr "Página de inicio" +#: ../../Zotlabs/Lib/ThreadItem.php:243 +msgid "Add Tag" +msgstr "Añadir etiqueta" -#: ../../include/nav.php:149 -msgid "Create an account" -msgstr "Crear una cuenta" +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 +msgid "like" +msgstr "me gusta" -#: ../../include/nav.php:161 -msgid "Help and documentation" -msgstr "Ayuda y documentación" +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 +msgid "dislike" +msgstr "no me gusta" -#: ../../include/nav.php:165 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "Share This" +msgstr "Compartir esto" -#: ../../include/nav.php:167 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" +#: ../../Zotlabs/Lib/ThreadItem.php:267 +msgid "share" +msgstr "compartir" -#: ../../include/nav.php:169 -msgid "Channel Directory" -msgstr "Directorio de canales" +#: ../../Zotlabs/Lib/ThreadItem.php:276 +msgid "Delivery Report" +msgstr "Informe de transmisión" -#: ../../include/nav.php:181 -msgid "Your grid" -msgstr "Mi red" +#: ../../Zotlabs/Lib/ThreadItem.php:294 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" -#: ../../include/nav.php:182 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver el perfil de %s - %s" -#: ../../include/nav.php:184 -msgid "Channel home" -msgstr "Mi canal" +#: ../../Zotlabs/Lib/ThreadItem.php:327 +msgid "to" +msgstr "a" -#: ../../include/nav.php:185 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" +#: ../../Zotlabs/Lib/ThreadItem.php:328 +msgid "via" +msgstr "mediante" -#: ../../include/nav.php:191 -msgid "Notices" -msgstr "Avisos" +#: ../../Zotlabs/Lib/ThreadItem.php:329 +msgid "Wall-to-Wall" +msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../include/nav.php:191 -msgid "Notifications" -msgstr "Notificaciones" +#: ../../Zotlabs/Lib/ThreadItem.php:330 +msgid "via Wall-To-Wall:" +msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../include/nav.php:192 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 +#, php-format +msgid "from %s" +msgstr "desde %s" -#: ../../include/nav.php:195 -msgid "Private mail" -msgstr "Correo privado" +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 +#, php-format +msgid "last edited: %s" +msgstr "último cambio: %s" -#: ../../include/nav.php:196 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 +#, php-format +msgid "Expires: %s" +msgstr "Caduca: %s" -#: ../../include/nav.php:197 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" +#: ../../Zotlabs/Lib/ThreadItem.php:371 +msgid "Save Bookmarks" +msgstr "Guardar en Marcadores" -#: ../../include/nav.php:198 ../../include/widgets.php:667 -msgid "Inbox" -msgstr "Bandeja de entrada" +#: ../../Zotlabs/Lib/ThreadItem.php:372 +msgid "Add to Calendar" +msgstr "Añadir al calendario" -#: ../../include/nav.php:199 ../../include/widgets.php:672 -msgid "Outbox" -msgstr "Bandeja de salida" +#: ../../Zotlabs/Lib/ThreadItem.php:381 +msgid "Mark all seen" +msgstr "Marcar todo como visto" -#: ../../include/nav.php:200 ../../include/widgets.php:677 -msgid "New Message" -msgstr "Nuevo mensaje" +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostrar todo" -#: ../../include/nav.php:203 -msgid "Event Calendar" -msgstr "Calendario de eventos" +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 +msgid "Bold" +msgstr "Negrita" -#: ../../include/nav.php:204 -msgid "See all events" -msgstr "Ver todos los eventos" +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 +msgid "Italic" +msgstr "Itálico " -#: ../../include/nav.php:205 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 +msgid "Underline" +msgstr "Subrayar" -#: ../../include/nav.php:208 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 +msgid "Quote" +msgstr "Citar" -#: ../../include/nav.php:210 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 +msgid "Code" +msgstr "Código" -#: ../../include/nav.php:218 ../../include/widgets.php:1510 -msgid "Admin" -msgstr "Administrador" +#: ../../Zotlabs/Lib/ThreadItem.php:717 +msgid "Image" +msgstr "Imagen" -#: ../../include/nav.php:218 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Insert Link" +msgstr "Insertar enlace" -#: ../../include/nav.php:249 ../../include/conversation.php:854 -msgid "Loading..." -msgstr "Cargando..." +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Video" +msgstr "Vídeo" -#: ../../include/nav.php:254 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../include/nav.php:255 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +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." + +#: ../../include/dba/dba_driver.php:173 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" #: ../../include/network.php:704 msgid "view full size" msgstr "Ver en el tamaño original" -#: ../../include/network.php:1930 ../../include/account.php:317 +#: ../../include/network.php:1935 ../../include/account.php:317 #: ../../include/account.php:344 ../../include/account.php:404 msgid "Administrator" msgstr "Administrador" -#: ../../include/network.php:1944 +#: ../../include/network.php:1949 msgid "No Subject" msgstr "Sin asunto" -#: ../../include/network.php:2198 ../../include/network.php:2199 +#: ../../include/network.php:2203 ../../include/network.php:2204 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:2200 +#: ../../include/network.php:2205 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:2201 +#: ../../include/network.php:2206 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:2202 +#: ../../include/network.php:2207 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:2204 +#: ../../include/network.php:2209 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:2205 +#: ../../include/network.php:2210 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:2206 +#: ../../include/network.php:2211 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:2207 +#: ../../include/network.php:2212 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:2208 +#: ../../include/network.php:2213 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:2209 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/oembed.php:340 +msgid "Embedded content" +msgstr "Contenido incorporado" + +#: ../../include/oembed.php:349 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" + +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" + +#: ../../include/permissions.php:33 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" + +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" + +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" + +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" + +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" + +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" + +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" + +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" + +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" + +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" + +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" + +#: ../../include/permissions.php:49 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." + +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" +msgstr "(Desconocido)" + +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." + +#: ../../include/items.php:1145 +msgid "Visible to you only." +msgstr "Visible sólo para usted." + +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." + +#: ../../include/items.php:1149 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que esté autenticado." + +#: ../../include/items.php:1151 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." + +#: ../../include/items.php:1153 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." + +#: ../../include/items.php:1155 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." + +#: ../../include/items.php:1157 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." + +#: ../../include/items.php:3947 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." + +#: ../../include/items.php:3954 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" + +#: ../../include/items.php:3966 +msgid "Connection not found." +msgstr "Conexión no encontrada" + +#: ../../include/items.php:4319 +msgid "profile photo" +msgstr "foto del perfil" + +#: ../../include/text.php:404 +msgid "prev" +msgstr "anterior" + +#: ../../include/text.php:406 +msgid "first" +msgstr "primera" + +#: ../../include/text.php:435 +msgid "last" +msgstr "última" + +#: ../../include/text.php:438 +msgid "next" +msgstr "próxima" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nueva página" +#: ../../include/text.php:448 +msgid "older" +msgstr "más antiguas" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Título" +#: ../../include/text.php:450 +msgid "newer" +msgstr "más recientes" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorías" +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Sin conexiones" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Etiquetas" +#: ../../include/text.php:868 +#, php-format +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Palabras clave" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "un toque" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "tener" +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha dado un toque a" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "tiene" +#: ../../include/text.php:1019 +msgid "ping" +msgstr "un \"ping\"" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "quiero" +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "quiere" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "una incitación " -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gusta de" +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "ha incitado a " -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "no gusta de" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "una bofetada " -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ha abofeteado a " -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nombre vacío" +#: ../../include/text.php:1022 +msgid "finger" +msgstr "un \"finger\" " -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nombre demasiado largo" +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "envió un \"finger\" a" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "un reproche" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "ha hecho un reproche a " -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." +#: ../../include/text.php:1035 +msgid "happy" +msgstr "feliz " -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste " -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "tranquilo/a" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../include/text.php:1038 +msgid "tired" +msgstr "cansado/a " -#: ../../include/channel.php:830 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../include/text.php:1039 +msgid "perky" +msgstr "vivaz" -#: ../../include/channel.php:977 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" +#: ../../include/text.php:1040 +msgid "angry" +msgstr "enfadado/a" -#: ../../include/channel.php:997 -msgid "Visible to everybody" -msgstr "Visible para todos" +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "asombrado/a" -#: ../../include/channel.php:1070 ../../include/channel.php:1182 -msgid "Gender:" -msgstr "Género:" +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "perplejo/a" -#: ../../include/channel.php:1071 ../../include/channel.php:1226 -msgid "Status:" -msgstr "Estado:" +#: ../../include/text.php:1043 +msgid "interested" +msgstr "interesado/a" -#: ../../include/channel.php:1072 ../../include/channel.php:1237 -msgid "Homepage:" -msgstr "Página personal:" +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amargado/a" -#: ../../include/channel.php:1073 -msgid "Online Now" -msgstr "Ahora en línea" +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "alegre" -#: ../../include/channel.php:1187 -msgid "Like this channel" -msgstr "Me gusta este canal" +#: ../../include/text.php:1046 +msgid "alive" +msgstr "animado/a" -#: ../../include/channel.php:1211 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "molesto/a" -#: ../../include/channel.php:1212 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansioso/a" -#: ../../include/channel.php:1219 -msgid "Birthday:" -msgstr "Cumpleaños:" +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "de mal humor" -#: ../../include/channel.php:1232 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "perturbado/a" -#: ../../include/channel.php:1235 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrado/a" -#: ../../include/channel.php:1241 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "deprimido/a" -#: ../../include/channel.php:1243 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivado/a" -#: ../../include/channel.php:1245 -msgid "Religion:" -msgstr "Religión:" +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "relajado/a" -#: ../../include/channel.php:1249 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorprendido/a" -#: ../../include/channel.php:1251 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../include/text.php:1239 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunes" -#: ../../include/channel.php:1253 -msgid "Dislikes:" -msgstr "No me gusta:" +#: ../../include/text.php:1239 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martes" -#: ../../include/channel.php:1255 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" +#: ../../include/text.php:1239 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "miércoles" -#: ../../include/channel.php:1257 -msgid "My other channels:" -msgstr "Mis otros canales:" +#: ../../include/text.php:1239 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "jueves" -#: ../../include/channel.php:1259 -msgid "Musical interests:" -msgstr "Preferencias musicales:" +#: ../../include/text.php:1239 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "viernes" -#: ../../include/channel.php:1261 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: ../../include/text.php:1239 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sábado" -#: ../../include/channel.php:1263 -msgid "Television:" -msgstr "Televisión:" +#: ../../include/text.php:1239 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domingo" + +#: ../../include/text.php:1243 ../../include/js_strings.php:45 +msgid "January" +msgstr "enero" -#: ../../include/channel.php:1265 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" +#: ../../include/text.php:1243 ../../include/js_strings.php:46 +msgid "February" +msgstr "febrero" -#: ../../include/channel.php:1267 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" +#: ../../include/text.php:1243 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" -#: ../../include/channel.php:1269 -msgid "Work/employment:" -msgstr "Trabajo:" +#: ../../include/text.php:1243 ../../include/js_strings.php:48 +msgid "April" +msgstr "abril" -#: ../../include/channel.php:1271 -msgid "School/education:" -msgstr "Estudios:" +#: ../../include/text.php:1243 +msgid "May" +msgstr "mayo" -#: ../../include/channel.php:1292 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../include/text.php:1243 ../../include/js_strings.php:50 +msgid "June" +msgstr "junio" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nueva ventana" +#: ../../include/text.php:1243 ../../include/js_strings.php:51 +msgid "July" +msgstr "julio" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" +#: ../../include/text.php:1243 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" +#: ../../include/text.php:1243 ../../include/js_strings.php:53 +msgid "September" +msgstr "septiembre" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado/a con %2$s" +#: ../../include/text.php:1243 ../../include/js_strings.php:54 +msgid "October" +msgstr "octubre" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha dado un toque a %2$s" +#: ../../include/text.php:1243 ../../include/js_strings.php:55 +msgid "November" +msgstr "noviembre" -#: ../../include/conversation.php:243 ../../include/text.php:1013 -#: ../../include/text.php:1018 -msgid "poked" -msgstr "ha dado un toque a" +#: ../../include/text.php:1243 ../../include/js_strings.php:56 +msgid "December" +msgstr "diciembre" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorías:" +#: ../../include/text.php:1326 +msgid "unknown" +msgstr "desconocido" -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Archivado bajo:" +#: ../../include/text.php:1362 +msgid "remove category" +msgstr "eliminar el tema" -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Mostrar en su contexto" +#: ../../include/text.php:1439 +msgid "remove from file" +msgstr "eliminar del fichero" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "eliminar" +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" +msgstr "por defecto" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" +#: ../../include/text.php:1746 +msgid "Page layout" +msgstr "Plantilla de la página" -#: ../../include/conversation.php:951 -msgid "View Source" -msgstr "Ver el código fuente de la entrada" +#: ../../include/text.php:1746 +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/conversation.php:952 -msgid "Follow Thread" -msgstr "Seguir este hilo" +#: ../../include/text.php:1788 +msgid "Page content type" +msgstr "Tipo de contenido de la página" -#: ../../include/conversation.php:953 -msgid "Unfollow Thread" -msgstr "Dejar de seguir este hilo" +#: ../../include/text.php:1821 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" -#: ../../include/conversation.php:958 -msgid "Activity/Posts" -msgstr "Actividad y publicaciones" +#: ../../include/text.php:1958 +msgid "activity" +msgstr "la actividad" -#: ../../include/conversation.php:960 -msgid "Edit Connection" -msgstr "Editar conexión" +#: ../../include/text.php:2259 +msgid "Design Tools" +msgstr "Herramientas de diseño web" -#: ../../include/conversation.php:961 -msgid "Message" -msgstr "Mensaje" +#: ../../include/text.php:2265 +msgid "Pages" +msgstr "Páginas" -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Importar un sitio web..." -#: ../../include/conversation.php:1078 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "a %2$d personas le gusta esto." -msgstr[1] "A %2$d personas les gusta esto." +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Importar desde una carpeta comprimida: " -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "a %2$d personas no les gusta esto." -msgstr[1] "A %2$d personas no les gusta esto." +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Importar desde los ficheros en la nube: " -#: ../../include/conversation.php:1090 -msgid "and" -msgstr "y" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/conversation.php:1093 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", y %d persona más" -msgstr[1] ", y %d personas más" +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Ruta a los ficheros del sitio web" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s like this." -msgstr "A %s le gusta esto." +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Seleccionar la carpeta" -#: ../../include/conversation.php:1094 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le gusta esto." +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Temas" -#: ../../include/conversation.php:1133 -msgid "Set your location" -msgstr "Establecer su ubicación" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../include/conversation.php:1134 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nueva aplicación (app)" -#: ../../include/conversation.php:1182 -msgid "Tag term:" -msgstr "Término de la etiqueta:" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" -#: ../../include/conversation.php:1183 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." -#: ../../include/conversation.php:1221 -msgid "Page link name" -msgstr "Nombre del enlace de la página" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." -#: ../../include/conversation.php:1224 -msgid "Post as" -msgstr "Publicar como" +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" -#: ../../include/conversation.php:1238 -msgid "Toggle voting" -msgstr "Cambiar votación" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" -#: ../../include/conversation.php:1246 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorías (opcional, lista separada por comas)" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" -#: ../../include/conversation.php:1269 -msgid "Set publish date" -msgstr "Establecer la fecha de publicación" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" -#: ../../include/conversation.php:1518 -msgid "Discover" -msgstr "Descubrir" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eliminar término" -#: ../../include/conversation.php:1521 -msgid "Imported public streams" -msgstr "Contenidos públicos importados" +#: ../../include/widgets.php:281 ../../include/features.php:85 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" -#: ../../include/conversation.php:1526 -msgid "Commented Order" -msgstr "Comentarios recientes" +#: ../../include/widgets.php:282 ../../include/group.php:316 +msgid "add" +msgstr "añadir" -#: ../../include/conversation.php:1529 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Carpetas guardadas" -#: ../../include/conversation.php:1533 -msgid "Posted Order" -msgstr "Publicaciones recientes" +#: ../../include/widgets.php:313 ../../include/widgets.php:432 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Todo" -#: ../../include/conversation.php:1536 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Hemeroteca" -#: ../../include/conversation.php:1544 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" +#: ../../include/widgets.php:516 +msgid "Refresh" +msgstr "Recargar" -#: ../../include/conversation.php:1553 -msgid "Activity Stream - by date" -msgstr "Contenido - por fecha" +#: ../../include/widgets.php:556 +msgid "Account settings" +msgstr "Configuración de la cuenta" -#: ../../include/conversation.php:1559 -msgid "Starred" -msgstr "Preferidas" +#: ../../include/widgets.php:562 +msgid "Channel settings" +msgstr "Configuración del canal" -#: ../../include/conversation.php:1562 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" +#: ../../include/widgets.php:571 +msgid "Additional features" +msgstr "Funcionalidades" -#: ../../include/conversation.php:1569 -msgid "Spam" -msgstr "Correo basura" +#: ../../include/widgets.php:578 +msgid "Feature/Addon settings" +msgstr "Complementos" -#: ../../include/conversation.php:1572 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" +#: ../../include/widgets.php:584 +msgid "Display settings" +msgstr "Ajustes de visualización" -#: ../../include/conversation.php:1629 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" +#: ../../include/widgets.php:591 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" -#: ../../include/conversation.php:1638 -msgid "About" -msgstr "Mi perfil" +#: ../../include/widgets.php:600 +msgid "Export channel" +msgstr "Exportar canal" -#: ../../include/conversation.php:1641 -msgid "Profile Details" -msgstr "Detalles del perfil" +#: ../../include/widgets.php:607 +msgid "Connected apps" +msgstr "Aplicaciones (apps) conectadas" -#: ../../include/conversation.php:1657 -msgid "Files and Storage" -msgstr "Ficheros y repositorio" +#: ../../include/widgets.php:631 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" -#: ../../include/conversation.php:1677 ../../include/conversation.php:1680 -#: ../../include/widgets.php:836 -msgid "Chatrooms" -msgstr "Salas de chat" +#: ../../include/widgets.php:660 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" -#: ../../include/conversation.php:1693 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" +#: ../../include/widgets.php:662 +msgid "Combined View" +msgstr "Vista combinada" -#: ../../include/conversation.php:1703 -msgid "Manage Webpages" -msgstr "Administrar páginas web" +#: ../../include/widgets.php:667 ../../include/nav.php:200 +msgid "Inbox" +msgstr "Bandeja de entrada" -#: ../../include/conversation.php:1768 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participaré" -msgstr[1] "Participaré" +#: ../../include/widgets.php:672 ../../include/nav.php:201 +msgid "Outbox" +msgstr "Bandeja de salida" -#: ../../include/conversation.php:1771 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No participaré" -msgstr[1] "No participaré" +#: ../../include/widgets.php:677 ../../include/nav.php:202 +msgid "New Message" +msgstr "Nuevo mensaje" -#: ../../include/conversation.php:1774 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" +#: ../../include/widgets.php:694 ../../include/widgets.php:706 +msgid "Conversations" +msgstr "Conversaciones" -#: ../../include/conversation.php:1777 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "De acuerdo" -msgstr[1] "De acuerdo" +#: ../../include/widgets.php:698 +msgid "Received Messages" +msgstr "Mensajes recibidos" -#: ../../include/conversation.php:1780 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "En desacuerdo" -msgstr[1] "En desacuerdo" +#: ../../include/widgets.php:702 +msgid "Sent Messages" +msgstr "Enviar mensajes" -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" +#: ../../include/widgets.php:716 +msgid "No messages." +msgstr "Sin mensajes." -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." +#: ../../include/widgets.php:734 +msgid "Delete conversation" +msgstr "Eliminar conversación" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +#: ../../include/widgets.php:760 +msgid "Events Tools" +msgstr "Gestión de eventos" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frecuentemente" +#: ../../include/widgets.php:761 +msgid "Export Calendar" +msgstr "Exportar el calendario" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Cada hora" +#: ../../include/widgets.php:762 +msgid "Import Calendar" +msgstr "Importar un calendario" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Dos veces al día" +#: ../../include/widgets.php:850 ../../include/conversation.php:1695 +#: ../../include/conversation.php:1698 +msgid "Chatrooms" +msgstr "Salas de chat" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Diariamente" +#: ../../include/widgets.php:854 +msgid "Overview" +msgstr "Resumen" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Semanalmente" +#: ../../include/widgets.php:861 +msgid "Chat Members" +msgstr "Miembros del chat" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Mensualmente" +#: ../../include/widgets.php:883 +msgid "Wiki List" +msgstr "Lista de wikis" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Actualmente hombre" +#: ../../include/widgets.php:921 +msgid "Wiki Pages" +msgstr "Páginas del wiki" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Actualmente mujer" +#: ../../include/widgets.php:956 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Generalmente hombre" +#: ../../include/widgets.php:979 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Generalmente mujer" +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 +msgid "photo/image" +msgstr "foto/imagen" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgénero" +#: ../../include/widgets.php:1180 +msgid "Click to show more" +msgstr "Hacer clic para ver más" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersexual" +#: ../../include/widgets.php:1331 +msgid "Rating Tools" +msgstr "Valoraciones" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transexual" +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 +msgid "Rate Me" +msgstr "Valorar este canal" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../include/widgets.php:1340 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutral" +#: ../../include/widgets.php:1424 +msgid "Forums" +msgstr "Foros" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "No especificado" +#: ../../include/widgets.php:1453 +msgid "Tasks" +msgstr "Tareas" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso/a" +#: ../../include/widgets.php:1462 +msgid "Documentation" +msgstr "Documentación" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Hombres" +#: ../../include/widgets.php:1464 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Mujeres" +#: ../../include/widgets.php:1465 +msgid "For Members" +msgstr "Para los miembros" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homosexual" +#: ../../include/widgets.php:1466 +msgid "For Administrators" +msgstr "Para los administradores" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbiana" +#: ../../include/widgets.php:1467 +msgid "For Developers" +msgstr "Para los desarrolladores" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Sin preferencias" +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../include/widgets.php:1497 +msgid "Inspect queue" +msgstr "Examinar la cola" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../include/widgets.php:1499 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Casto/a" +#: ../../include/widgets.php:1524 ../../include/nav.php:220 +msgid "Admin" +msgstr "Administrador" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Virgen" +#: ../../include/widgets.php:1525 +msgid "Plugin Features" +msgstr "Extensiones" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Fuera de lo común" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nueva ventana" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetichista" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Orgías" +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "El usuario '%s' ha sido eliminado" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "¿Quién puede ver esto?" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Soltero/a" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selección personalizada" + +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Solo/a" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostrar" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponible" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "No mostrar" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "No disponible" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Enamorado/a" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Cronología pública" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Apasionado/a" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Saliendo con alguien" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infiel" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Con adicción al sexo" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amigos con algo extra" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Prometido/a" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Casado/a" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Perfil principal" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Pareja" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Cohabitando" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio tradicional" +#: ../../include/channel.php:963 ../../include/nav.php:92 +msgid "Edit Profile" +msgstr "Editar el perfil" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felíz" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Visible para todos" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "No estoy buscando" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Género:" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Libertino" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Estado:" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Engañado/a" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Página personal:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separado/a" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Ahora en línea" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Inestable" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Me gusta este canal" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorciado/a" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j F" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Viudo/a" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Cumpleaños:" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Indeterminado" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es complicado" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "No me importa" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Etiquetas:" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Pregúnteme" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Posición política:" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religión:" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "invitado: " +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Aficciones o intereses:" -#: ../../include/security.php:427 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Me gusta:" -#: ../../include/text.php:404 -msgid "prev" -msgstr "anterior" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "No me gusta:" -#: ../../include/text.php:406 -msgid "first" -msgstr "primera" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" -#: ../../include/text.php:435 -msgid "last" -msgstr "última" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "Mis otros canales:" -#: ../../include/text.php:438 -msgid "next" -msgstr "próxima" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Preferencias musicales:" -#: ../../include/text.php:448 -msgid "older" -msgstr "más antiguas" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Libros, literatura:" -#: ../../include/text.php:450 -msgid "newer" -msgstr "más recientes" +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisión:" -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Sin conexiones" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Vida sentimental o amorosa:" -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "un toque" +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Trabajo:" -#: ../../include/text.php:1019 -msgid "ping" -msgstr "un \"ping\"" +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Estudios:" -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Me gusta esto" -#: ../../include/text.php:1020 -msgid "prod" -msgstr "una incitación " +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Cumpleaños" -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha incitado a " +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Edad:" + +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/text.php:1021 -msgid "slap" -msgstr "una bofetada " +#: ../../include/datetime.php:272 ../../boot.php:2577 +msgid "never" +msgstr "nunca" -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha abofeteado a " +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "hace un instante" -#: ../../include/text.php:1022 -msgid "finger" -msgstr "un \"finger\" " +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "envió un \"finger\" a" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "un reproche" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha hecho un reproche a " +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "feliz " +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste " +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "tranquilo/a" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" -#: ../../include/text.php:1038 -msgid "tired" -msgstr "cansado/a " +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivaz" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" -#: ../../include/text.php:1040 -msgid "angry" -msgstr "enfadado/a" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "asombrado/a" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Frecuentemente" -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "perplejo/a" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Cada hora" -#: ../../include/text.php:1043 -msgid "interested" -msgstr "interesado/a" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Dos veces al día" -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amargado/a" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Diariamente" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "alegre" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Semanalmente" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "animado/a" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Mensualmente" -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "molesto/a" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Hombre" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso/a" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Mujer" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "de mal humor" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Actualmente hombre" -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "perturbado/a" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Actualmente mujer" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrado/a" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Generalmente hombre" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "deprimido/a" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Generalmente mujer" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivado/a" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgénero" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "relajado/a" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Intersexual" -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorprendido/a" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transexual" -#: ../../include/text.php:1237 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunes" +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../include/text.php:1237 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martes" +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Neutral" -#: ../../include/text.php:1237 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "miércoles" +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "No especificado" -#: ../../include/text.php:1237 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "jueves" +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Indeciso/a" -#: ../../include/text.php:1237 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "viernes" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Hombres" -#: ../../include/text.php:1237 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sábado" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Mujeres" -#: ../../include/text.php:1237 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domingo" +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homosexual" -#: ../../include/text.php:1241 ../../include/js_strings.php:45 -msgid "January" -msgstr "enero" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbiana" -#: ../../include/text.php:1241 ../../include/js_strings.php:46 -msgid "February" -msgstr "febrero" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Sin preferencias" -#: ../../include/text.php:1241 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../include/text.php:1241 ../../include/js_strings.php:48 -msgid "April" -msgstr "abril" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../include/text.php:1241 -msgid "May" -msgstr "mayo" +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Casto/a" -#: ../../include/text.php:1241 ../../include/js_strings.php:50 -msgid "June" -msgstr "junio" +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Virgen" -#: ../../include/text.php:1241 ../../include/js_strings.php:51 -msgid "July" -msgstr "julio" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Fuera de lo común" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetichista" -#: ../../include/text.php:1241 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Orgías" -#: ../../include/text.php:1241 ../../include/js_strings.php:53 -msgid "September" -msgstr "septiembre" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Asexual" -#: ../../include/text.php:1241 ../../include/js_strings.php:54 -msgid "October" -msgstr "octubre" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Soltero/a" -#: ../../include/text.php:1241 ../../include/js_strings.php:55 -msgid "November" -msgstr "noviembre" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Solo/a" -#: ../../include/text.php:1241 ../../include/js_strings.php:56 -msgid "December" -msgstr "diciembre" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Disponible" -#: ../../include/text.php:1318 ../../include/text.php:1322 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "No disponible" -#: ../../include/text.php:1324 -msgid "unknown" -msgstr "desconocido" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Enamorado/a" -#: ../../include/text.php:1360 -msgid "remove category" -msgstr "eliminar categoría" +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Apasionado/a" -#: ../../include/text.php:1437 -msgid "remove from file" -msgstr "eliminar del fichero" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Saliendo con alguien" -#: ../../include/text.php:1734 ../../include/text.php:1805 -msgid "default" -msgstr "por defecto" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Infiel" -#: ../../include/text.php:1742 -msgid "Page layout" -msgstr "Plantilla de la página" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Con adicción al sexo" -#: ../../include/text.php:1742 -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/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Amigos con algo extra" -#: ../../include/text.php:1784 -msgid "Page content type" -msgstr "Tipo de contenido de la página" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Casual" -#: ../../include/text.php:1817 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Prometido/a" -#: ../../include/text.php:1934 -msgid "activity" -msgstr "la actividad" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Casado/a" -#: ../../include/text.php:2235 -msgid "Design Tools" -msgstr "Herramientas de diseño web" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Casado/a en sueños" -#: ../../include/text.php:2241 -msgid "Pages" -msgstr "Páginas" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Pareja" -#: ../../include/auth.php:147 -msgid "Logged out." -msgstr "Desconectado/a." +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Cohabitando" -#: ../../include/auth.php:274 -msgid "Failed authentication" -msgstr "Autenticación fallida." +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio tradicional" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felíz" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "No estoy buscando" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Libertino" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Engañado/a" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separado/a" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Inestable" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Divorciado/a" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Divorciado/a en sueños" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Viudo/a" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Indeterminado" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es complicado" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "No me importa" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Pregúnteme" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Funcionalidades básicas" +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Caducidad del contenido" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" +#: ../../include/photos.php:506 ../../include/conversation.php:1668 +msgid "Photo Albums" +msgstr "Álbumes de fotos" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" +#: ../../include/security.php:109 +msgid "guest:" +msgstr "invitado: " -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Páginas web" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ahora está conectado/a con %2$s" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/features.php:55 -msgid "Provide a wiki for your channel" -msgstr "Proporcionar un wiki para su canal" +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver el perfil @ %s de %s" -#: ../../include/features.php:56 -msgid "Hide Rating" -msgstr "Ocultar las valoraciones" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Temas:" -#: ../../include/features.php:56 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Archivado bajo:" -#: ../../include/features.php:57 -msgid "Private Notes" -msgstr "Notas privadas" +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Mostrar en su contexto" -#: ../../include/features.php:57 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "eliminar" -#: ../../include/features.php:58 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." +msgstr "Cargando..." -#: ../../include/features.php:58 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Eliminar elementos seleccionados" -#: ../../include/features.php:59 -msgid "Photo Location" -msgstr "Ubicación de las fotos" +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Ver el código fuente de la entrada" -#: ../../include/features.php:59 -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/conversation.php:950 +msgid "Follow Thread" +msgstr "Seguir este hilo" -#: ../../include/features.php:60 -msgid "Access Controlled Chatrooms" -msgstr "Salas de chat moderadas" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Dejar de seguir este hilo" -#: ../../include/features.php:60 -msgid "Provide chatrooms and chat services with access control." -msgstr "Proporcionar salas y servicios de chat moderados." +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Actividad y publicaciones" -#: ../../include/features.php:61 -msgid "Smart Birthdays" -msgstr "Cumpleaños inteligentes" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Editar conexión" -#: ../../include/features.php:61 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Mensaje" -#: ../../include/features.php:62 -msgid "Expert Mode" -msgstr "Modo de experto" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "A %s le gusta esto." -#: ../../include/features.php:62 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." -#: ../../include/features.php:63 -msgid "Premium Channel" -msgstr "Canal premium" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "a %2$d personas le gusta esto." +msgstr[1] "A %2$d personas les gusta esto." -#: ../../include/features.php:63 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "a %2$d personas no les gusta esto." +msgstr[1] "A %2$d personas no les gusta esto." -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" +#: ../../include/conversation.php:1088 +msgid "and" +msgstr "y" -#: ../../include/features.php:71 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", y %d persona más" +msgstr[1] ", y %d personas más" -#: ../../include/features.php:71 -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/conversation.php:1092 +#, php-format +msgid "%s like this." +msgstr "A %s le gusta esto." -#: ../../include/features.php:72 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "A %s no le gusta esto." -#: ../../include/features.php:73 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "Establecer su ubicación" -#: ../../include/features.php:73 -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/conversation.php:1136 +msgid "Clear browser location" +msgstr "Eliminar los datos de localización geográfica del navegador" -#: ../../include/features.php:74 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Término de la etiqueta:" -#: ../../include/features.php:74 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" -#: ../../include/features.php:75 -msgid "Delayed Posting" -msgstr "Publicación aplazada" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Comentarios habilitados" -#: ../../include/features.php:75 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Comentarios deshabilitados" -#: ../../include/features.php:76 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" +#: ../../include/conversation.php:1229 +msgid "Page link name" +msgstr "Nombre del enlace de la página" -#: ../../include/features.php:76 -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/conversation.php:1232 +msgid "Post as" +msgstr "Publicar como" -#: ../../include/features.php:82 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" +#: ../../include/conversation.php:1246 +msgid "Toggle voting" +msgstr "Cambiar votación" -#: ../../include/features.php:83 -msgid "Search by Date" -msgstr "Buscar por fecha" +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Dehabilitar los comentarios" -#: ../../include/features.php:83 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Activar o desactivar los comentarios" -#: ../../include/features.php:84 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Grupos de canales" +#: ../../include/conversation.php:1258 +msgid "Categories (optional, comma-separated list)" +msgstr "Temas (opcional, lista separada por comas)" -#: ../../include/features.php:84 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" -#: ../../include/features.php:85 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" +#: ../../include/conversation.php:1287 +msgid "Set publish date" +msgstr "Establecer la fecha de publicación" -#: ../../include/features.php:85 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" +#: ../../include/conversation.php:1536 +msgid "Discover" +msgstr "Descubrir" -#: ../../include/features.php:86 -msgid "Network Personal Tab" -msgstr "Actividad personal" +#: ../../include/conversation.php:1539 +msgid "Imported public streams" +msgstr "Contenidos públicos importados" -#: ../../include/features.php:86 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." +#: ../../include/conversation.php:1544 +msgid "Commented Order" +msgstr "Comentarios recientes" -#: ../../include/features.php:87 -msgid "Network New Tab" -msgstr "Contenido nuevo" +#: ../../include/conversation.php:1547 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentario" -#: ../../include/features.php:87 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" +#: ../../include/conversation.php:1551 +msgid "Posted Order" +msgstr "Publicaciones recientes" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" +#: ../../include/conversation.php:1554 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" +#: ../../include/conversation.php:1562 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que le mencionan o involucran" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" +#: ../../include/conversation.php:1571 +msgid "Activity Stream - by date" +msgstr "Contenido - por fecha" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" +#: ../../include/conversation.php:1577 +msgid "Starred" +msgstr "Preferidas" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" +#: ../../include/conversation.php:1580 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" +#: ../../include/conversation.php:1587 +msgid "Spam" +msgstr "Correo basura" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" +#: ../../include/conversation.php:1590 +msgid "Posts flagged as SPAM" +msgstr "Publicaciones marcadas como basura" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" +#: ../../include/conversation.php:1647 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorías de entradas" +#: ../../include/conversation.php:1656 +msgid "About" +msgstr "Mi perfil" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Añadir categorías a sus publicaciones" +#: ../../include/conversation.php:1659 +msgid "Profile Details" +msgstr "Detalles del perfil" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Emoticonos \"emoji\"" +#: ../../include/conversation.php:1675 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" +#: ../../include/conversation.php:1708 ../../include/nav.php:104 +msgid "Bookmarks" +msgstr "Marcadores" + +#: ../../include/conversation.php:1711 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" -#: ../../include/features.php:99 ../../include/widgets.php:310 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Carpetas guardadas" +#: ../../include/conversation.php:1721 +msgid "Manage Webpages" +msgstr "Administrar páginas web" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" +#: ../../include/conversation.php:1786 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participaré" +msgstr[1] "Participaré" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No participaré" +msgstr[1] "No participaré" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso/a" +msgstr[1] "Indecisos/as" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Entradas destacadas" +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "De acuerdo" +msgstr[1] "De acuerdo" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "En desacuerdo" +msgstr[1] "En desacuerdo" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "se abstiene" +msgstr[1] "Se abstienen" -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" #: ../../include/group.php:26 msgid "" @@ -8796,6 +8706,10 @@ msgstr "Añadir conexiones nuevas a este grupo de canales" msgid "edit" msgstr "editar" +#: ../../include/group.php:311 ../../include/features.php:84 +msgid "Privacy Groups" +msgstr "Grupos de canales" + #: ../../include/group.php:312 msgid "Edit group" msgstr "Editar grupo" @@ -8808,9 +8722,17 @@ msgstr "Añadir un grupo de canales" msgid "Channels not in any privacy group" msgstr "Sin canales en ningún grupo" -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "añadir" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nueva página" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Título" + +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" #: ../../include/event.php:22 ../../include/event.php:69 #: ../../include/bb2diaspora.php:485 @@ -8827,97 +8749,284 @@ msgstr "Comienza:" msgid "Finishes:" msgstr "Finaliza:" -#: ../../include/event.php:814 +#: ../../include/event.php:821 msgid "This event has been added to your calendar." msgstr "Este evento ha sido añadido a su calendario." -#: ../../include/event.php:1014 -msgid "Not specified" -msgstr "Sin especificar" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Sin especificar" + +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necesita de una intervención" + +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Cancelado/a" + +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" + +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" + +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "¿Borrar este elemento?" + +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "%s mostrar menos" + +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "%s expandir" + +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "%s contraer" + +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Contraseña demasiado corta" + +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" + +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "cualquiera" + +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Contraseña secreta" + +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Pista de contraseña" + +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." + +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "cerrar todo" + +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" + +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valorar este canal (esto es público)" + +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Describir (opcional)" + +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Por favor, introduzca una dirección de enlace" + +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" + +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" + +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" + +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "antes" + +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "desde ahora" + +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "menos de un minuto" + +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "alrededor de un minuto" + +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minutos" + +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "alrededor de una hora" + +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "alrededor de %d horas" + +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un día" + +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d días" + +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "alrededor de un mes" + +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d meses" + +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "alrededor de un año" + +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d años" + +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " + +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" + +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mayo" + +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "ene" + +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" + +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mar" + +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "abr" -#: ../../include/event.php:1015 -msgid "Needs Action" -msgstr "Necesita de una intervención" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "may" -#: ../../include/event.php:1016 -msgid "Completed" -msgstr "Completado/a" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/event.php:1017 -msgid "In Process" -msgstr "En proceso" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/event.php:1018 -msgid "Cancelled" -msgstr "Cancelado/a" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "ago" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/account.php:30 -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." +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "oct" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dic" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "dom" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "lun" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "mar" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "mié" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "jue" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "su contraseña de registro" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vie" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "sáb" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Cuenta aprobada." +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "hoy" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mes" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "semana" -#: ../../include/account.php:747 -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/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "día" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Todos los días" #: ../../include/follow.php:27 msgid "Channel is blocked on this site." @@ -8947,672 +9056,543 @@ msgstr "El intento de acceder al canal ha fallado." msgid "Cannot connect to yourself." msgstr "No puede conectarse consigo mismo." -#: ../../include/attach.php:247 ../../include/attach.php:333 +#: ../../include/attach.php:248 ../../include/attach.php:334 msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../include/attach.php:499 +#: ../../include/attach.php:500 msgid "No source file." msgstr "Ningún fichero de origen" -#: ../../include/attach.php:521 +#: ../../include/attach.php:522 msgid "Cannot locate file to replace" msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/attach.php:539 +#: ../../include/attach.php:540 msgid "Cannot locate file to revise/update" msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/attach.php:674 +#: ../../include/attach.php:675 #, php-format msgid "File exceeds size limit of %d" msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/attach.php:688 +#: ../../include/attach.php:689 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../include/attach.php:846 +#: ../../include/attach.php:847 msgid "File upload failed. Possible system limit or action terminated." msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../include/attach.php:859 +#: ../../include/attach.php:860 msgid "Stored file could not be verified. Upload failed." msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../include/attach.php:915 ../../include/attach.php:931 -msgid "Path not available." -msgstr "Ruta no disponible." - -#: ../../include/attach.php:977 ../../include/attach.php:1129 -msgid "Empty pathname" -msgstr "Ruta vacía" - -#: ../../include/attach.php:1003 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" - -#: ../../include/attach.php:1025 -msgid "Path not found." -msgstr "Ruta no encontrada" - -#: ../../include/attach.php:1083 -msgid "mkdir failed." -msgstr "mkdir ha fallado." - -#: ../../include/attach.php:1087 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." - -#: ../../include/attach.php:1135 -msgid "Empty path" -msgstr "Ruta vacía" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 -msgid "Image/photo" -msgstr "Imagen/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" - -#: ../../include/bbcode.php:182 -#, 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:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" - -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" - -#: ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" - -#: ../../include/bbcode.php:866 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: ../../include/items.php:897 ../../include/items.php:942 -msgid "(Unknown)" -msgstr "(Desconocido)" - -#: ../../include/items.php:1141 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." - -#: ../../include/items.php:1143 -msgid "Visible to you only." -msgstr "Visible sólo para usted." - -#: ../../include/items.php:1145 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." - -#: ../../include/items.php:1147 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que esté autenticado." - -#: ../../include/items.php:1149 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." - -#: ../../include/items.php:1151 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." - -#: ../../include/items.php:1153 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." - -#: ../../include/items.php:1155 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." - -#: ../../include/items.php:3918 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." - -#: ../../include/items.php:3925 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" - -#: ../../include/items.php:3937 -msgid "Connection not found." -msgstr "Conexión no encontrada" - -#: ../../include/items.php:4290 -msgid "profile photo" -msgstr "foto del perfil" - -#: ../../include/oembed.php:336 -msgid "Embedded content" -msgstr "Contenido incorporado" - -#: ../../include/oembed.php:345 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" - -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" - -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nueva aplicación (app)" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Ruta no disponible." -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Ruta vacía" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Ruta no encontrada" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir ha fallado." -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "Ruta vacía" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Desconectado/a." -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Autenticación fallida." -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Todo" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "El acceso ha fallado." -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" +#: ../../include/activities.php:41 +msgid " and " +msgstr " y " -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Recargar" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "el perfil público" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Configuración de la cuenta" +#: ../../include/activities.php:58 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Configuración del canal" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Funcionalidades" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Complementos" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Ajustes de visualización" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "No ha sido posible de verificar la firma del sitio para %s" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Exportar canal" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Aplicaciones (apps) conectadas" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Funcionalidades básicas" -#: ../../include/widgets.php:631 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Caducidad del contenido" -#: ../../include/widgets.php:660 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" -#: ../../include/widgets.php:662 -msgid "Combined View" -msgstr "Vista combinada" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" -#: ../../include/widgets.php:694 ../../include/widgets.php:706 -msgid "Conversations" -msgstr "Conversaciones" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" -#: ../../include/widgets.php:698 -msgid "Received Messages" -msgstr "Mensajes recibidos" +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" -#: ../../include/widgets.php:702 -msgid "Sent Messages" -msgstr "Enviar mensajes" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/widgets.php:716 -msgid "No messages." -msgstr "Sin mensajes." +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" -#: ../../include/widgets.php:734 -msgid "Delete conversation" -msgstr "Eliminar conversación" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" -#: ../../include/widgets.php:760 -msgid "Events Tools" -msgstr "Gestión de eventos" +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Páginas web" -#: ../../include/widgets.php:761 -msgid "Export Calendar" -msgstr "Exportar el calendario" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" -#: ../../include/widgets.php:762 -msgid "Import Calendar" -msgstr "Importar un calendario" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Proporcionar un wiki para su canal" -#: ../../include/widgets.php:840 -msgid "Overview" -msgstr "Resumen" +#: ../../include/features.php:59 +msgid "Private Notes" +msgstr "Notas privadas" -#: ../../include/widgets.php:847 -msgid "Chat Members" -msgstr "Miembros del chat" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../include/widgets.php:869 -msgid "Wiki List" -msgstr "Lista de wikis" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" -#: ../../include/widgets.php:907 -msgid "Wiki Pages" -msgstr "Páginas del wiki" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../include/widgets.php:942 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Ubicación de las fotos" -#: ../../include/widgets.php:965 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" +#: ../../include/features.php:61 +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/widgets.php:1111 ../../include/widgets.php:1223 -msgid "photo/image" -msgstr "foto/imagen" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Salas de chat moderadas" -#: ../../include/widgets.php:1166 -msgid "Click to show more" -msgstr "Hacer clic para ver más" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/widgets.php:1317 -msgid "Rating Tools" -msgstr "Valoraciones" +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Cumpleaños inteligentes" -#: ../../include/widgets.php:1321 ../../include/widgets.php:1323 -msgid "Rate Me" -msgstr "Valorar este canal" +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../include/widgets.php:1326 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" +#: ../../include/features.php:64 +msgid "Expert Mode" +msgstr "Modo de experto" -#: ../../include/widgets.php:1410 -msgid "Forums" -msgstr "Foros" +#: ../../include/features.php:64 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" -#: ../../include/widgets.php:1439 -msgid "Tasks" -msgstr "Tareas" +#: ../../include/features.php:69 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" -#: ../../include/widgets.php:1448 -msgid "Documentation" -msgstr "Documentación" +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" -#: ../../include/widgets.php:1450 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" +#: ../../include/features.php:70 +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:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/widgets.php:1451 -msgid "For Members" -msgstr "Para los miembros" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" -#: ../../include/widgets.php:1452 -msgid "For Administrators" -msgstr "Para los administradores" +#: ../../include/features.php:72 +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/widgets.php:1453 -msgid "For Developers" -msgstr "Para los desarrolladores" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" -#: ../../include/widgets.php:1477 ../../include/widgets.php:1515 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../include/widgets.php:1483 -msgid "Inspect queue" -msgstr "Examinar la cola" +#: ../../include/features.php:74 +msgid "Disable Comments" +msgstr "Deshabilitar comentarios" -#: ../../include/widgets.php:1485 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" +#: ../../include/features.php:74 +msgid "Provide the option to disable comments for a post" +msgstr "Proporcionar la opción de desactivar los comentarios de una publicación" -#: ../../include/widgets.php:1511 -msgid "Plugin Features" -msgstr "Extensiones" +#: ../../include/features.php:75 +msgid "Delayed Posting" +msgstr "Publicación aplazada" -#: ../../include/activities.php:41 -msgid " and " -msgstr " y " +#: ../../include/features.php:75 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "el perfil público" +#: ../../include/features.php:76 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiado %2$s a “%3$s”" +#: ../../include/features.php:76 +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/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha actualizado %2$s, cambiando %3$s." +#: ../../include/features.php:83 +msgid "Search by Date" +msgstr "Buscar por fecha" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "¿Borrar este elemento?" +#: ../../include/features.php:85 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s mostrar menos" +#: ../../include/features.php:86 +msgid "Network Personal Tab" +msgstr "Actividad personal" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s expandir" +#: ../../include/features.php:86 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s contraer" +#: ../../include/features.php:87 +msgid "Network New Tab" +msgstr "Contenido nuevo" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Contraseña demasiado corta" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" +#: ../../include/features.php:88 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "cualquiera" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Contraseña secreta" +#: ../../include/features.php:89 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Pista de contraseña" +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." +#: ../../include/features.php:90 +msgid "Show channel suggestions" +msgstr "Mostrar sugerencias de canales" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "cerrar todo" +#: ../../include/features.php:95 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" +#: ../../include/features.php:96 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valorar este canal (esto es público)" +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Describir (opcional)" +#: ../../include/features.php:97 +msgid "Post Categories" +msgstr "Temas de las entradas" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Por favor, introduzca una dirección de enlace" +#: ../../include/features.php:97 +msgid "Add categories to your posts" +msgstr "Añadir temas a sus publicaciones" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" +#: ../../include/features.php:98 +msgid "Emoji Reactions" +msgstr "Emoticonos \"emoji\"" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "antes" +#: ../../include/features.php:100 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "desde ahora" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "menos de un minuto" +#: ../../include/features.php:101 +msgid "Star Posts" +msgstr "Entradas destacadas" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "alrededor de un minuto" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" +#: ../../include/features.php:102 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "alrededor de una hora" +#: ../../include/features.php:102 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "alrededor de %d horas" +#: ../../include/features.php:111 +msgid "Premium Channel" +msgstr "Canal premium" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un día" +#: ../../include/features.php:112 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d días" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Etiquetas" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "alrededor de un mes" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Palabras clave" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d meses" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "tener" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "alrededor de un año" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "tiene" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d años" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "quiero" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "quiere" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gusta de" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mayo" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "no gusta de" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "ene" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/account.php:30 +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." -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mar" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Su dirección de correo está ya registrada en este sitio." -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "abr" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "may" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "ago" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "oct" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "su contraseña de registro" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dic" +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Cuenta aprobada." -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "dom" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "lun" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "mar" +#: ../../include/account.php:747 +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/js_strings.php:79 -msgid "Wed" -msgstr "mié" +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "jue" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Imagen/foto" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vie" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Contenido cifrado" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "sáb" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "hoy" +#: ../../include/bbcode.php:182 +#, 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/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mes" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "semana" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "día" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Todos los días" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 escribió:" #: ../../include/contact_widgets.php:11 #, php-format @@ -9664,369 +9644,400 @@ msgstr "mostrar más" msgid "Directory Options" msgstr "Opciones del directorio" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modo seguro" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modo seguro" + +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo foros públicos" + +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo este sitio web" + +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." + +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" + +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " + +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." + +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." + +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." + +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +msgid "Logout" +msgstr "Finalizar sesión" + +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" +msgstr "Finalizar esta sesión" + +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" +msgstr "Inicio" + +#: ../../include/nav.php:87 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" + +#: ../../include/nav.php:88 +msgid "Your profile page" +msgstr "Su página del perfil" + +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" + +#: ../../include/nav.php:92 +msgid "Edit your profile" +msgstr "Editar su perfil" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo foros públicos" +#: ../../include/nav.php:94 +msgid "Your photos" +msgstr "Sus fotos" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo este sitio web" +#: ../../include/nav.php:95 +msgid "Your files" +msgstr "Sus ficheros" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." +#: ../../include/nav.php:98 +msgid "Your chatrooms" +msgstr "Sus salas de chat" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" +#: ../../include/nav.php:104 +msgid "Your bookmarks" +msgstr "Sus marcadores" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " +#: ../../include/nav.php:108 +msgid "Your webpages" +msgstr "Sus páginas web" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." +#: ../../include/nav.php:110 +msgid "Your wiki" +msgstr "Su wiki" -#: ../../include/acl_selectors.php:269 -msgid "Who can see this?" -msgstr "¿Quién puede ver esto?" +#: ../../include/nav.php:114 +msgid "Sign in" +msgstr "Acceder" -#: ../../include/acl_selectors.php:270 -msgid "Custom selection" -msgstr "Selección personalizada" +#: ../../include/nav.php:131 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" -#: ../../include/acl_selectors.php:271 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"." +#: ../../include/nav.php:134 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" -#: ../../include/acl_selectors.php:272 -msgid "Show" -msgstr "Mostrar" +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/acl_selectors.php:273 -msgid "Don't show" -msgstr "No mostrar" +#: ../../include/nav.php:148 +msgid "Home Page" +msgstr "Página de inicio" -#: ../../include/acl_selectors.php:279 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "Crear una cuenta" -#: ../../include/acl_selectors.php:309 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje." +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "Ayuda y documentación" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Cumpleaños" +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Edad:" +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" +#: ../../include/nav.php:171 +msgid "Channel Directory" +msgstr "Directorio de canales" -#: ../../include/datetime.php:272 ../../boot.php:2479 -msgid "never" -msgstr "nunca" +#: ../../include/nav.php:183 +msgid "Your grid" +msgstr "Mi red" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "hace un instante" +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" +#: ../../include/nav.php:186 +msgid "Channel home" +msgstr "Mi canal" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" +#: ../../include/nav.php:193 +msgid "Notices" +msgstr "Avisos" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" +#: ../../include/nav.php:193 +msgid "Notifications" +msgstr "Notificaciones" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" +#: ../../include/nav.php:194 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" +#: ../../include/nav.php:197 +msgid "Private mail" +msgstr "Correo privado" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" +#: ../../include/nav.php:198 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" +#: ../../include/nav.php:205 +msgid "Event Calendar" +msgstr "Calendario de eventos" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" +#: ../../include/nav.php:206 +msgid "See all events" +msgstr "Ver todos los eventos" -#: ../../include/api.php:1327 -msgid "Public Timeline" -msgstr "Cronología pública" +#: ../../include/nav.php:207 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" -#: ../../include/zot.php:697 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" +#: ../../include/nav.php:210 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" -#: ../../include/zot.php:713 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" -#: ../../include/zot.php:2326 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" -#: ../../include/zot.php:3703 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" + +#: ../../include/nav.php:257 +msgid "Please wait..." +msgstr "Espere por favor…" -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../view/theme/redbasic/php/config.php:6 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinido)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Ajustes del tema" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Elegir un esquema" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Estrechar la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Color de fondo de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Color superior del gradiente de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Color inferior del gradiente de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Color superior del gradiente del botón activo de navegación" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Color inferior del gradiente del botón activo de navegación" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Color del borde de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Color del icono de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Color del icono activo de la barra de navegación" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "Color del enlace" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Ajustar el color del tipo de letra para el \"banner\"" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Ajustar el color de fondo" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Ajustar la imagen de fondo" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Ajustar el color de los elementos de fondo" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Ajustar el color de fondo de los comentarios" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Ajustar el color del borde de los comentarios" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Ajustar la indentación de los comentarios" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Ajustar el color básico para los iconos de los elementos" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Ajustar el color flotante para los iconos de los elementos" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Ajustar el tamaño de letra para toda la aplicación" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Ejemplo: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Ajustar el tamaño del tipo de letra para publicaciones y comentarios" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Establecer el color de la letra para publicaciones y comentarios" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Establecer el radio de curvatura de las esquinas" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Ajustar la profundidad de sombras de las fotos" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Ajustar la anchura máxima de la región de contenido, en pixels" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Dejar en blanco para la anchura predeterminada" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Alinear a la izquierda el contenido de la página" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Ajustar la opacidad mínima de la barra de navegación - para ocultarla" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Ajustar el tamaño de la foto del autor de la conversación" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1163 +#: ../../boot.php:1194 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Buscar %1$s (%2$s)" -#: ../../boot.php:1163 +#: ../../boot.php:1194 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1481 +#: ../../boot.php:1512 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1484 +#: ../../boot.php:1515 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1685 +#: ../../boot.php:1719 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones dentro de Hubzilla" -#: ../../boot.php:1706 +#: ../../boot.php:1740 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1707 +#: ../../boot.php:1741 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1708 +#: ../../boot.php:1742 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1711 +#: ../../boot.php:1745 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2277 +#: ../../boot.php:2314 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2432 +#: ../../boot.php:2469 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:2435 +#: ../../boot.php:2472 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2478 +#: ../../boot.php:2576 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2482 +#: ../../boot.php:2580 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Las tareas de Cron no están funcionando en %s" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index f53ce0b18..d8f8d2d10 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -61,203 +61,92 @@ App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%) App::$strings["WARNING:"] = "ATENCIÓN:"; App::$strings["Create new folder"] = "Crear nueva carpeta"; App::$strings["Upload file"] = "Subir fichero"; -App::$strings["Permission denied"] = "Permiso denegado"; +App::$strings["Drop files here to immediately upload"] = "Arrastre los ficheros aquí para subirlos de forma inmediata"; App::$strings["Permission denied."] = "Acceso denegado."; App::$strings["Not Found"] = "No encontrado"; App::$strings["Page not found."] = "Página no encontrada."; +App::$strings["Permission denied"] = "Permiso denegado"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; App::$strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; App::$strings["Away"] = "Ausente"; App::$strings["Online"] = "Conectado/a"; -App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; -App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; -App::$strings["Connection updated."] = "Conexión actualizada."; -App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -App::$strings["is now connected to"] = "ahora está conectado/a"; -App::$strings["No"] = "No"; +App::$strings["Invalid message"] = "Mensaje no válido"; +App::$strings["no results"] = "sin resultados"; +App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; +App::$strings["queued"] = "encolado"; +App::$strings["posted"] = "enviado"; +App::$strings["accepted for delivery"] = "aceptado para el envío"; +App::$strings["updated"] = "actualizado"; +App::$strings["update ignored"] = "actualización ignorada"; +App::$strings["permission denied"] = "permiso denegado"; +App::$strings["recipient not found"] = "destinatario no encontrado"; +App::$strings["mail recalled"] = "mensaje de correo revocado"; +App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; +App::$strings["mail delivered"] = "correo enviado"; +App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; +App::$strings["Options"] = "Opciones"; +App::$strings["Redeliver"] = "Volver a enviar"; +App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Security Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; App::$strings["Yes"] = "Sí"; -App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; -App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; -App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; -App::$strings["View Profile"] = "Ver el perfil"; -App::$strings["View %s's profile"] = "Ver el perfil de %s"; -App::$strings["Refresh Permissions"] = "Recargar los permisos"; -App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; -App::$strings["Recent Activity"] = "Actividad reciente"; -App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; -App::$strings["Unblock"] = "Desbloquear"; -App::$strings["Block"] = "Bloquear"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; -App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; -App::$strings["Unignore"] = "Dejar de ignorar"; -App::$strings["Ignore"] = "Ignorar"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; -App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; -App::$strings["Unarchive"] = "Desarchivar"; -App::$strings["Archive"] = "Archivar"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; -App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; -App::$strings["Unhide"] = "Mostrar"; -App::$strings["Hide"] = "Ocultar"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; -App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; -App::$strings["Delete this connection"] = "Eliminar esta conexión"; -App::$strings["Me"] = "Yo"; -App::$strings["Family"] = "Familia"; -App::$strings["Friends"] = "Amigos/as"; -App::$strings["Acquaintances"] = "Conocidos/as"; -App::$strings["All"] = "Todos/as"; -App::$strings["Approve this connection"] = "Aprobar esta conexión"; -App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; -App::$strings["Set Affinity"] = "Ajustar la afinidad"; -App::$strings["Set Profile"] = "Ajustar el perfil"; -App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; -App::$strings["none"] = "-"; -App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; -App::$strings["Connection: %s"] = "Conexión: %s"; -App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; -App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; -App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; -App::$strings["Available locations:"] = "Ubicaciones disponibles:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; -App::$strings["Connection Tools"] = "Gestión de las conexiones"; -App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +App::$strings["No"] = "No"; App::$strings["Rating"] = "Valoración"; -App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; -App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; -App::$strings["Custom Filter"] = "Filtro personalizado"; -App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; -App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; -App::$strings["This information is public!"] = "¡Esta información es pública!"; -App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; -App::$strings["inherited"] = "heredado"; +App::$strings["Website:"] = "Sitio web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; +App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; App::$strings["Submit"] = "Enviar"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; -App::$strings["Their Settings"] = "Sus ajustes"; -App::$strings["My Settings"] = "Mis ajustes"; -App::$strings["Individual Permissions"] = "Permisos individuales"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; -App::$strings["Last update:"] = "Última actualización:"; -App::$strings["Public access denied."] = "Acceso público denegado."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Sobrenombre o Alias"; -App::$strings["Full Name"] = "Nombre completo"; -App::$strings["Email"] = "Correo electrónico"; -App::$strings["Profile Photo"] = "Foto del perfil"; -App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; -App::$strings["Timezone"] = "Huso horario"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; -App::$strings["Language"] = "Idioma"; -App::$strings["Birth Year"] = "Año de nacimiento"; -App::$strings["Birth Month"] = "Mes de nacimiento"; -App::$strings["Birth Day"] = "Día de nacimiento"; -App::$strings["Birthdate"] = "Fecha de nacimiento"; -App::$strings["Gender"] = "Género"; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -App::$strings["Channel added."] = "Canal añadido."; -App::$strings["%d rating"] = array( - 0 => "%d valoración", - 1 => "%d valoraciones", -); -App::$strings["Gender: "] = "Género:"; -App::$strings["Status: "] = "Estado:"; -App::$strings["Homepage: "] = "Página personal:"; -App::$strings["Age:"] = "Edad:"; -App::$strings["Location:"] = "Ubicación:"; -App::$strings["Description:"] = "Descripción:"; -App::$strings["Hometown:"] = "Lugar de nacimiento:"; -App::$strings["About:"] = "Sobre mí:"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Public Forum:"] = "Foro público:"; -App::$strings["Keywords: "] = "Palabras clave:"; -App::$strings["Don't suggest"] = "No sugerir:"; -App::$strings["Common connections:"] = "Conexiones comunes:"; -App::$strings["Global Directory"] = "Directorio global:"; -App::$strings["Local Directory"] = "Directorio local:"; -App::$strings["Find"] = "Encontrar"; -App::$strings["Finding:"] = "Encontrar:"; -App::$strings["Channel Suggestions"] = "Sugerencias de canales"; -App::$strings["next page"] = "siguiente página"; -App::$strings["previous page"] = "página anterior"; -App::$strings["Sort options"] = "Ordenar opciones"; -App::$strings["Alphabetic"] = "Alfabético"; -App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; -App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; -App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; -App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; -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["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; -App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; -App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -App::$strings["Event not found."] = "Evento no encontrado."; -App::$strings["event"] = "evento"; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -App::$strings["Edit Category"] = "Editar la categoría"; -App::$strings["Category"] = "Categoría"; -App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; -App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; -App::$strings["Finish date and time"] = "Fecha y hora de terminación"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -App::$strings["Edit Description"] = "Editar la descripción"; -App::$strings["Description"] = "Descripción"; -App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Public Hubs"] = "Servidores públicos"; +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."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; +App::$strings["Hub URL"] = "Dirección del hub"; +App::$strings["Access Type"] = "Tipo de acceso"; +App::$strings["Registration Policy"] = "Normas de registro"; +App::$strings["Stats"] = "Estadísticas"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valoraciones"; +App::$strings["Rate"] = "Valorar"; App::$strings["Location"] = "Ubicación"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["Advanced Options"] = "Opciones avanzadas"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; -App::$strings["calendar"] = "calendario"; -App::$strings["Edit Event"] = "Editar el evento"; -App::$strings["Create Event"] = "Crear un evento"; -App::$strings["Previous"] = "Anterior"; -App::$strings["Next"] = "Siguiente"; -App::$strings["Export"] = "Exportar"; App::$strings["View"] = "Ver"; -App::$strings["Month"] = "Mes"; -App::$strings["Week"] = "Semana"; -App::$strings["Day"] = "Día"; -App::$strings["Today"] = "Hoy"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +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. 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["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["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["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 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; +App::$strings["Your email address"] = "Su dirección de correo electrónico"; +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["Name or caption"] = "Nombre o descripción"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +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 role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; +App::$strings["Read more about roles"] = "Leer más sobre los roles"; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sí"; +App::$strings["Registration"] = "Registro"; +App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; +App::$strings["Register"] = "Registrarse"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones."; App::$strings["Bookmark added"] = "Marcador añadido"; App::$strings["My Bookmarks"] = "Mis marcadores"; App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Public access denied."] = "Acceso público denegado."; +App::$strings["Item not found."] = "Elemento no encontrado."; App::$strings["Photos"] = "Fotos"; App::$strings["Cancel"] = "Cancelar"; App::$strings["Invalid item."] = "Elemento no válido."; @@ -266,11 +155,19 @@ App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do e App::$strings["Save to Folder:"] = "Guardar en carpeta:"; App::$strings["- select -"] = "- seleccionar -"; App::$strings["Save"] = "Guardar"; +App::$strings["No such group"] = "No se encuentra el grupo"; +App::$strings["No such channel"] = "No se encuentra el canal"; +App::$strings["forum"] = "foro"; +App::$strings["Search Results For:"] = "Buscar resultados para:"; +App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; +App::$strings["Privacy group: "] = "Grupo de canales: "; +App::$strings["Invalid connection."] = "Conexión no válida."; App::$strings["Blocked"] = "Bloqueadas"; App::$strings["Ignored"] = "Ignoradas"; App::$strings["Hidden"] = "Ocultas"; App::$strings["Archived"] = "Archivadas"; App::$strings["New"] = "Nuevas"; +App::$strings["All"] = "Todos/as"; App::$strings["New Connections"] = "Nuevas conexiones"; App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; App::$strings["All Connections"] = "Todas las conexiones"; @@ -290,11 +187,13 @@ App::$strings["Connected"] = "Conectado/a"; App::$strings["Approve connection"] = "Aprobar esta conexión"; App::$strings["Approve"] = "Aprobar"; App::$strings["Ignore connection"] = "Ignorar esta conexión"; +App::$strings["Ignore"] = "Ignorar"; App::$strings["Recent activity"] = "Actividad reciente"; App::$strings["Connections"] = "Conexiones"; App::$strings["Search"] = "Buscar"; App::$strings["Search your connections"] = "Buscar sus conexiones"; App::$strings["Connections search"] = "Buscar conexiones"; +App::$strings["Find"] = "Encontrar"; App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; @@ -317,80 +216,176 @@ App::$strings["select a photo from your photo albums"] = "Seleccione una foto de App::$strings["Crop Image"] = "Recortar imagen"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; App::$strings["Done Editing"] = "Edición completada"; -App::$strings["webpage"] = "página web"; -App::$strings["block"] = "bloque"; -App::$strings["layout"] = "plantilla"; -App::$strings["menu"] = "menú"; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; -App::$strings["Permissions denied."] = "Permisos denegados."; -App::$strings["Import"] = "Importar"; -App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; -App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; -App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -App::$strings["Room not found"] = "Sala no encontrada"; -App::$strings["Leave Room"] = "Abandonar la sala"; -App::$strings["Delete Room"] = "Eliminar esta sala"; -App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; -App::$strings["I am online"] = "Estoy conectado/a"; -App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; -App::$strings["Encrypt text"] = "Cifrar texto"; +App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; +App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; +App::$strings["Could not create table."] = "No se puede crear la tabla."; +App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Verificación del sistema"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Check again"] = "Verificar de nuevo"; +App::$strings["Database connection"] = "Conexión a la base de datos"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; +App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; +App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; +App::$strings["Database Port"] = "Puerto de la base de datos"; +App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; +App::$strings["Database Login Name"] = "Usuario de la base de datos"; +App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; +App::$strings["Database Name"] = "Nombre de la base de datos"; +App::$strings["Database Type"] = "Tipo de base de datos"; +App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; +App::$strings["Website URL"] = "Dirección del sitio web"; +App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; +App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; +App::$strings["Basic/Minimal Social Networking"] = "Red social básica o mínima"; +App::$strings["Standard Configuration (default)"] = "Configuración estándar (por defecto)"; +App::$strings["Professional"] = "Profesional"; +App::$strings["Site settings"] = "Ajustes del sitio"; +App::$strings["Server Configuration/Role"] = "Configuración del servidor"; +App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; +App::$strings["PHP version"] = "Versión de PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; +App::$strings["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."] = "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."; +App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; +App::$strings["Command line PHP"] = "PHP en línea de comandos"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["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."] = "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."; +App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; +App::$strings["PHP upload limits"] = "Límites PHP de subida"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; +App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; +App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; +App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; +App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; +App::$strings["xml PHP module"] = "módulo PHP xml"; +App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; +App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; +App::$strings["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."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; +App::$strings["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."] = "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."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; +App::$strings["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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "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)."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "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."; +App::$strings["%s is writable"] = "%s tiene permisos de escritura"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior"; +App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; +App::$strings["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!"] = "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."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; +App::$strings["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."] = "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."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; +App::$strings["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."] = "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."; +App::$strings["SSL certificate validation"] = "validación del certificado SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; +App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; +App::$strings["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."] = "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."; +App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; +App::$strings["

    What next

    "] = "

    Siguiente paso

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; +App::$strings["%d rating"] = array( + 0 => "%d valoración", + 1 => "%d valoraciones", +); +App::$strings["Gender: "] = "Género:"; +App::$strings["Status: "] = "Estado:"; +App::$strings["Homepage: "] = "Página personal:"; +App::$strings["Age:"] = "Edad:"; +App::$strings["Location:"] = "Ubicación:"; +App::$strings["Description:"] = "Descripción:"; +App::$strings["Hometown:"] = "Lugar de nacimiento:"; +App::$strings["About:"] = "Sobre mí:"; +App::$strings["Connect"] = "Conectar"; +App::$strings["Public Forum:"] = "Foro público:"; +App::$strings["Keywords: "] = "Palabras clave:"; +App::$strings["Don't suggest"] = "No sugerir:"; +App::$strings["Common connections:"] = "Conexiones comunes:"; +App::$strings["Global Directory"] = "Directorio global:"; +App::$strings["Local Directory"] = "Directorio local:"; +App::$strings["Finding:"] = "Encontrar:"; +App::$strings["Channel Suggestions"] = "Sugerencias de canales"; +App::$strings["next page"] = "siguiente página"; +App::$strings["previous page"] = "página anterior"; +App::$strings["Sort options"] = "Ordenar opciones"; +App::$strings["Alphabetic"] = "Alfabético"; +App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; +App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; +App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; +App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; +App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; +App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; +App::$strings["Item not found"] = "Elemento no encontrado"; +App::$strings["Block Name"] = "Nombre del bloque"; App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; -App::$strings["New Chatroom"] = "Nueva sala de chat"; -App::$strings["Chatroom name"] = "Nombre de la sala de chat"; -App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; -App::$strings["Permissions"] = "Permisos"; -App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; -App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; -App::$strings["Create New"] = "Crear"; -App::$strings["Expiration"] = "Caducidad"; -App::$strings["min"] = "min"; -App::$strings["Invalid message"] = "Mensaje no válido"; -App::$strings["no results"] = "sin resultados"; -App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; -App::$strings["queued"] = "encolado"; -App::$strings["posted"] = "enviado"; -App::$strings["accepted for delivery"] = "aceptado para el envío"; -App::$strings["updated"] = "actualizado"; -App::$strings["update ignored"] = "actualización ignorada"; -App::$strings["permission denied"] = "permiso denegado"; -App::$strings["recipient not found"] = "destinatario no encontrado"; -App::$strings["mail recalled"] = "mensaje de correo revocado"; -App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; -App::$strings["mail delivered"] = "correo enviado"; -App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; -App::$strings["Options"] = "Opciones"; -App::$strings["Redeliver"] = "Volver a enviar"; +App::$strings["Title (optional)"] = "Título (opcional)"; +App::$strings["Edit Block"] = "Modificar este bloque"; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; App::$strings["Edit Layout"] = "Modificar la plantilla"; App::$strings["Page link"] = "Enlace de la página"; App::$strings["Edit Webpage"] = "Editar la página web"; -App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; -App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; -App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; -App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; -App::$strings["Create a group of channels."] = "Crear un grupo de canales."; -App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; -App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; -App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; -App::$strings["Unable to remove privacy group."] = "Imposible eliminar el grupo de canales."; -App::$strings["Privacy group editor"] = "Editor de grupos de canales"; -App::$strings["Members"] = "Miembros"; -App::$strings["All Connected Channels"] = "Todos los canales conectados"; -App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; +App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; +App::$strings["Unable to create menu."] = "No se puede crear el menú."; +App::$strings["Menu Name"] = "Nombre del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; +App::$strings["Menu Title"] = "Título del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; +App::$strings["Allow Bookmarks"] = "Permitir marcadores"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; +App::$strings["Submit and proceed"] = "Enviar y proceder"; +App::$strings["Menus"] = "Menús"; +App::$strings["Drop"] = "Eliminar"; +App::$strings["Created"] = "Creado"; +App::$strings["Edited"] = "Editado"; +App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; +App::$strings["Delete this menu"] = "Borrar este menú"; +App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; +App::$strings["Edit this menu"] = "Modificar este menú"; +App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Edit Menu"] = "Modificar el menú"; +App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; +App::$strings["Menu name"] = "Nombre del menú"; +App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; +App::$strings["Menu title"] = "Título del menú"; +App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; +App::$strings["Allow bookmarks"] = "Permitir marcadores"; +App::$strings["Not found."] = "No encontrado."; App::$strings["App installed."] = "Aplicación instalada."; App::$strings["Malformed app."] = "Aplicación con errores"; App::$strings["Embed code"] = "Código incorporado"; App::$strings["Edit App"] = "Modificar la aplicación"; App::$strings["Create App"] = "Crear una aplicación"; App::$strings["Name of app"] = "Nombre de la aplicación"; +App::$strings["Required"] = "Obligatorio"; App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; +App::$strings["Description"] = "Descripción"; App::$strings["Photo icon URL"] = "Dirección del icono"; App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Categories (optional, comma separated list)"] = "Categorías (opcional, lista separada por comas)"; +App::$strings["Categories (optional, comma separated list)"] = "Temas (opcional, lista separada por comas)"; App::$strings["Version ID"] = "Versión"; App::$strings["Price of app"] = "Precio de la aplicación"; App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; @@ -406,11 +401,14 @@ App::$strings["Module Name:"] = "Nombre del módulo:"; App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; App::$strings["Permission Denied."] = "Permiso denegado"; App::$strings["File not found."] = "Fichero no encontrado."; App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; +App::$strings["Permissions"] = "Permisos"; App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; App::$strings["Return to file list"] = "Volver a la lista de ficheros"; @@ -419,130 +417,190 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pega App::$strings["Share this file"] = "Compartir este fichero"; App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; -App::$strings["Layouts"] = "Plantillas"; -App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; -App::$strings["Layout Description"] = "Descripción de la plantilla"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -App::$strings["Share"] = "Compartir"; -App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; -App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; -App::$strings["Invalid request."] = "Solicitud incorrecta."; -App::$strings["channel"] = "el canal"; -App::$strings["thing"] = "elemento"; -App::$strings["Channel unavailable."] = "Canal no disponible."; -App::$strings["Previous action reversed."] = "Acción anterior revocada."; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "el mensaje de estado"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; -App::$strings["Action completed."] = "Acción completada."; -App::$strings["Thank you."] = "Gracias."; -App::$strings["Profile not found."] = "Perfil no encontrado."; -App::$strings["Profile deleted."] = "Perfil eliminado."; -App::$strings["Profile-"] = "Perfil-"; -App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; -App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; -App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; -App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; -App::$strings["Marital Status"] = "Estado civil"; -App::$strings["Romantic Partner"] = "Pareja sentimental"; -App::$strings["Likes"] = "Me gusta"; -App::$strings["Dislikes"] = "No me gusta"; -App::$strings["Work/Employment"] = "Trabajo:"; -App::$strings["Religion"] = "Religión"; -App::$strings["Political Views"] = "Ideas políticas"; -App::$strings["Sexual Preference"] = "Preferencia sexual"; -App::$strings["Homepage"] = "Página personal"; -App::$strings["Interests"] = "Intereses"; -App::$strings["Address"] = "Dirección"; -App::$strings["Profile updated."] = "Perfil actualizado."; -App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; -App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; -App::$strings["View this profile"] = "Ver este perfil"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -App::$strings["Profile Tools"] = "Gestión del perfil"; -App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; -App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; -App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; -App::$strings["Clone this profile"] = "Clonar este perfil"; -App::$strings["Delete this profile"] = "Eliminar este perfil"; -App::$strings["Add profile things"] = "Añadir cosas al perfil"; -App::$strings["Personal"] = "Personales"; -App::$strings["Relation"] = "Relación"; -App::$strings["Miscellaneous"] = "Varios"; -App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; -App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; -App::$strings["Your gender"] = "Género"; -App::$strings["Marital status"] = "Estado civil"; -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["Title/Description"] = "Título o descripción"; -App::$strings["Street address"] = "Dirección"; -App::$strings["Locality/City"] = "Ciudad"; -App::$strings["Region/State"] = "Región o Estado"; -App::$strings["Postal/Zip code"] = "Código postal"; -App::$strings["Country"] = "País"; -App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; -App::$strings["Since (date)"] = "Desde (fecha)"; -App::$strings["Tell us about yourself"] = "Háblenos de usted"; -App::$strings["Hometown"] = "Lugar de nacimiento"; -App::$strings["Political views"] = "Ideas políticas"; -App::$strings["Religious views"] = "Creencias religiosas"; -App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; -App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; -App::$strings["Musical interests"] = "Preferencias musicales"; -App::$strings["Books, literature"] = "Libros, literatura"; -App::$strings["Television"] = "Televisión"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; -App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; -App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; -App::$strings["School/Education"] = "Estudios"; -App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; -App::$strings["My other channels"] = "Mis otros canales"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; -App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; -App::$strings["Nothing to import."] = "No hay nada para importar."; -App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; -App::$strings["Imported file is empty."] = "El fichero importado está vacío."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; -App::$strings["Import completed."] = "Importación completada."; -App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["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."] = "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."; -App::$strings["File to Upload"] = "Fichero para subir"; -App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -App::$strings["Your old login password"] = "Su antigua contraseña"; -App::$strings["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."] = "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."; -App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; -App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; -App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; -App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; -App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; -App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; -App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; +App::$strings["Name is required"] = "El nombre es obligatorio"; +App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["Update"] = "Actualizar"; +App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; +App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; +App::$strings["Token saved."] = "Token salvado."; +App::$strings["Not valid email."] = "Correo electrónico no válido."; +App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; +App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; +App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; +App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; +App::$strings["Password changed."] = "Contraseña cambiada."; +App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; +App::$strings["Friends"] = "Amigos/as"; +App::$strings["Settings updated."] = "Ajustes actualizados."; +App::$strings["Add application"] = "Añadir aplicación"; +App::$strings["Name of application"] = "Nombre de la aplicación"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +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 Apps"] = "Aplicaciones (apps) conectadas"; +App::$strings["Client key starts with"] = "La \"client key\" empieza por"; +App::$strings["No name"] = "Sin nombre"; +App::$strings["Remove authorization"] = "Eliminar autorización"; +App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; +App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; +App::$strings["Account Settings"] = "Configuración de la cuenta"; +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["Email Address:"] = "Dirección de correo electrónico:"; +App::$strings["Remove Account"] = "Eliminar cuenta"; +App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; +App::$strings["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."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros de Hubzilla. Estas identidades se pueden usar en las Listas de control de acceso (ACL) y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; +App::$strings["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:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; +App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; +App::$strings["Login Name"] = "Nombre de inicio de sesión"; +App::$strings["Login Password"] = "Contraseña de inicio de sesión"; +App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; +App::$strings["Their Settings"] = "Sus ajustes"; +App::$strings["My Settings"] = "Mis ajustes"; +App::$strings["inherited"] = "heredado"; +App::$strings["Individual Permissions"] = "Permisos individuales"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; +App::$strings["Off"] = "Desactivado"; +App::$strings["On"] = "Activado"; +App::$strings["Additional Features"] = "Funcionalidades"; +App::$strings["Connector Settings"] = "Configuración del conector"; +App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; +App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; +App::$strings["mobile"] = "móvil"; +App::$strings["Display Settings"] = "Ajustes de visualización"; +App::$strings["Theme Settings"] = "Ajustes del tema"; +App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; +App::$strings["Content Settings"] = "Ajustes del contenido"; +App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; +App::$strings["Select scheme"] = "Elegir un esquema"; +App::$strings["Mobile Theme:"] = "Tema para el móvil:"; +App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; +App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; +App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; +App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; +App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; +App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; +App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; +App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; +App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; +App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; +App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; +App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; +App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; +App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; +App::$strings["Nobody except yourself"] = "Nadie excepto usted"; +App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; +App::$strings["Approved connections"] = "Conexiones aprobadas"; +App::$strings["Any connections"] = "Cualquier conexión"; +App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; +App::$strings["Anybody in this network"] = "Cualquiera en esta red"; +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["Your channel address is"] = "Su dirección de canal es"; +App::$strings["Channel Settings"] = "Ajustes del canal"; +App::$strings["Basic Settings"] = "Configuración básica"; +App::$strings["Full Name:"] = "Nombre completo:"; +App::$strings["Your Timezone:"] = "Su huso horario:"; +App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; +App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; +App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; +App::$strings["Adult Content"] = "Contenido solo para adultos"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; +App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; +App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; +App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; +App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; +App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; +App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; +App::$strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; +App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; +App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; +App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; +App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; +App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; +App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; +App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; +App::$strings["Default Post and Publish Permissions"] = "Permisos predeterminados de entradas y publicaciones"; +App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; +App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; +App::$strings["Channel permissions category:"] = "Categoría de los permisos del canal:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; +App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; +App::$strings["Notification Settings"] = "Configuración de las notificaciones"; +App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; +App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; +App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; +App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; +App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; +App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; +App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; +App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; +App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; +App::$strings["You receive a private message"] = "Reciba un mensaje privado"; +App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; +App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; +App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; +App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; +App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; +App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; +App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; +App::$strings["Recommended"] = "Recomendado"; +App::$strings["Upcoming events"] = "Próximos eventos"; +App::$strings["Events today"] = "Eventos de hoy"; +App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; +App::$strings["Not available in all themes"] = "No disponible en todos los temas"; +App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; +App::$strings["System info messages"] = "Mensajes de información del sistema"; +App::$strings["System critical alerts"] = "Alertas críticas del sistema"; +App::$strings["New connections"] = "Nuevas conexiones"; +App::$strings["System Registrations"] = "Registros del sistema"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; +App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; +App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; +App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; +App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!."; +App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; +App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; +App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; +App::$strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos"; +App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; +App::$strings["Remove Channel"] = "Eliminar el canal"; +App::$strings["Remove this channel."] = "Eliminar este canal."; +App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; +App::$strings["Start calendar week on monday"] = "Comenzar el calendario semanal por el lunes"; +App::$strings["network"] = "red"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; +App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; +App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; +App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; +App::$strings["Create a group of channels."] = "Crear un grupo de canales."; +App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; +App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; +App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; +App::$strings["Unable to remove privacy group."] = "No se puede eliminar el grupo de canales."; +App::$strings["Privacy group editor"] = "Editor de grupos de canales"; +App::$strings["Members"] = "Miembros"; +App::$strings["All Connected Channels"] = "Todos los canales conectados"; +App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Album not found."] = "Álbum no encontrado."; @@ -570,6 +628,7 @@ App::$strings["Photo not available"] = "Foto no disponible"; App::$strings["Use as profile photo"] = "Usar como foto del perfil"; App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; App::$strings["Private Photo"] = "Foto privada"; +App::$strings["Previous"] = "Anterior"; App::$strings["View Full Size"] = "Ver tamaño completo"; App::$strings["Remove"] = "Eliminar"; App::$strings["Edit photo"] = "Editar foto"; @@ -583,9 +642,11 @@ App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @ App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +App::$strings["Share"] = "Compartir"; App::$strings["Please wait"] = "Espere por favor"; App::$strings["This is you"] = "Este es usted"; App::$strings["Comment"] = "Comentar"; +App::$strings["Preview"] = "Previsualizar"; App::$strings["__ctx:title__ Likes"] = "Me gusta"; App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; App::$strings["__ctx:title__ Agree"] = "De acuerdo"; @@ -611,13 +672,22 @@ App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; App::$strings["Close"] = "Cerrar"; App::$strings["View Album"] = "Ver álbum"; App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["Import completed"] = "Importación completada"; -App::$strings["Import Items"] = "Importar elementos"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; -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["webpage"] = "página web"; +App::$strings["block"] = "bloque"; +App::$strings["layout"] = "plantilla"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s elemento instalado"; +App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +App::$strings["Nothing to import."] = "No hay nada para importar."; +App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; +App::$strings["Imported file is empty."] = "El fichero importado está vacío."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; +App::$strings["Import completed"] = "Importación completada"; +App::$strings["Import Items"] = "Importar elementos"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; +App::$strings["File to Upload"] = "Fichero para subir"; +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["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; @@ -638,41 +708,40 @@ App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; App::$strings["Location not found."] = "Dirección no encontrada."; App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; -App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; +App::$strings["Syncing locations"] = "Sincronizando ubicaciones"; App::$strings["No locations found."] = "No encontrada ninguna dirección."; App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Address"] = "Dirección"; App::$strings["Primary"] = "Primario"; -App::$strings["Drop"] = "Eliminar"; App::$strings["Sync Now"] = "Sincronizar ahora"; App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -App::$strings["Messages"] = "Mensajes"; -App::$strings["Message recalled."] = "Mensaje revocado."; -App::$strings["Conversation removed."] = "Conversación eliminada."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; -App::$strings["Send Private Message"] = "Enviar un mensaje privado"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Asunto:"; -App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["Send"] = "Enviar"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; -App::$strings["Delete message"] = "Borrar mensaje"; -App::$strings["Delivery report"] = "Informe de transmisión"; -App::$strings["Recall message"] = "Revocar el mensaje"; -App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; -App::$strings["Delete Conversation"] = "Eliminar conversación"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; -App::$strings["Send Reply"] = "Responder"; -App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; +App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; +App::$strings["Invalid request."] = "Solicitud incorrecta."; +App::$strings["channel"] = "el canal"; +App::$strings["thing"] = "elemento"; +App::$strings["Channel unavailable."] = "Canal no disponible."; +App::$strings["Previous action reversed."] = "Acción anterior revocada."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "el mensaje de estado"; +App::$strings["event"] = "evento"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; +App::$strings["Action completed."] = "Acción completada."; +App::$strings["Thank you."] = "Gracias."; App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; App::$strings["Create a new channel"] = "Crear un nuevo canal"; +App::$strings["Create New"] = "Crear"; App::$strings["Channel Manager"] = "Administración de canales"; App::$strings["Current Channel"] = "Canal actual"; App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; @@ -681,70 +750,10 @@ App::$strings["Make Default"] = "Convertir en predeterminado"; App::$strings["%d new messages"] = "%d mensajes nuevos"; App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; -App::$strings["Unable to create menu."] = "No se puede crear el menú."; -App::$strings["Menu Name"] = "Nombre del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; -App::$strings["Menu Title"] = "Título del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; -App::$strings["Allow Bookmarks"] = "Permitir marcadores"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; -App::$strings["Submit and proceed"] = "Enviar y proceder"; -App::$strings["Menus"] = "Menús"; -App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; -App::$strings["Delete this menu"] = "Borrar este menú"; -App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; -App::$strings["Edit this menu"] = "Modificar este menú"; -App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Edit Menu"] = "Modificar el menú"; -App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; -App::$strings["Menu name"] = "Nombre del menú"; -App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; -App::$strings["Menu title"] = "Título del menú"; -App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; -App::$strings["Allow bookmarks"] = "Permitir marcadores"; -App::$strings["Not found."] = "No encontrado."; -App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -App::$strings["Password Reset"] = "Restablecer la contraseña"; -App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -App::$strings["Your new password is"] = "Su nueva contraseña es"; -App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -App::$strings["click here to login"] = "pulse aquí para conectarse"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -App::$strings["Email Address"] = "Dirección de correo electrónico"; -App::$strings["Reset"] = "Reiniciar"; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["Mood"] = "Estado de ánimo"; -App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["No such group"] = "No se encuentra el grupo"; -App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["forum"] = "foro"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; -App::$strings["Privacy group: "] = "Grupo de canales: "; -App::$strings["Invalid connection."] = "Conexión no válida."; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Profile Match"] = "Perfil compatible"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -App::$strings["is interested in:"] = "está interesado en:"; -App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; -App::$strings["Posts and comments"] = "Publicaciones y comentarios"; -App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -App::$strings["Unable to create element."] = "Imposible crear el elemento."; +App::$strings["Unable to create element."] = "No se puede crear el elemento."; App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; App::$strings["Link Name"] = "Nombre del enlace"; App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; @@ -790,7 +799,6 @@ App::$strings["Repository version (master)"] = "Versión del repositorio (master App::$strings["Repository version (dev)"] = "Versión del repositorio (dev)"; App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; App::$strings["Default"] = "Predeterminado"; -App::$strings["mobile"] = "móvil"; App::$strings["experimental"] = "experimental"; App::$strings["unsupported"] = "no soportado"; App::$strings["Yes - with approval"] = "Sí - con aprobación"; @@ -799,7 +807,6 @@ App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; App::$strings["Site"] = "Sitio"; -App::$strings["Registration"] = "Registro"; App::$strings["File upload"] = "Subir fichero"; App::$strings["Policies"] = "Políticas"; App::$strings["Advanced"] = "Avanzado"; @@ -860,8 +867,6 @@ App::$strings["Maximum Load Average"] = "Carga media máxima"; App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; -App::$strings["Off"] = "Desactivado"; -App::$strings["On"] = "Activado"; App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; App::$strings["No server found"] = "Servidor no encontrado"; @@ -920,8 +925,11 @@ App::$strings["Accounts"] = "Cuentas"; App::$strings["select all"] = "seleccionar todo"; App::$strings["Registrations waiting for confirm"] = "Inscripciones en espera de confirmación"; App::$strings["Request date"] = "Fecha de solicitud"; +App::$strings["Email"] = "Correo electrónico"; App::$strings["No registrations."] = "Sin registros."; App::$strings["Deny"] = "Rechazar"; +App::$strings["Block"] = "Bloquear"; +App::$strings["Unblock"] = "Desbloquear"; App::$strings["All Channels"] = "Todos los canales"; App::$strings["Register date"] = "Fecha de registro"; App::$strings["Last login"] = "Último acceso"; @@ -968,6 +976,7 @@ App::$strings["Maintainer: "] = "Mantenedor:"; App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; +App::$strings["Compatible Server Roles: "] = "Configuraciones compatibles con este servidor:"; App::$strings["Requires: "] = "Se requiere:"; App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; App::$strings["Enter the public git repository URL of the plugin repo."] = "Escriba la URL pública del repositorio git del plugin."; @@ -980,7 +989,6 @@ App::$strings["Install"] = "Instalar"; App::$strings["Manage Repos"] = "Gestionar los repositorios"; App::$strings["Installed Plugin Repositories"] = "Repositorios de los plugins instalados"; App::$strings["Install a New Plugin Repository"] = "Instalar un nuevo repositorio de plugins"; -App::$strings["Update"] = "Actualizar"; App::$strings["Switch branch"] = "Cambiar la rama"; App::$strings["No themes found."] = "No se han encontrado temas."; App::$strings["Screenshot"] = "Instantánea de pantalla"; @@ -1011,863 +1019,618 @@ App::$strings["(In addition to basic fields)"] = "(Además de los campos básico App::$strings["All available fields"] = "Todos los campos disponibles"; App::$strings["Custom Fields"] = "Campos personalizados"; App::$strings["Create Custom Field"] = "Crear un campo personalizado"; -App::$strings["Name or caption"] = "Nombre o descripción"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; -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 role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["Create Channel"] = "Crear un canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; -App::$strings["added your channel"] = "añadió este canal a sus conexiones"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["posted an event"] = "publicó un evento"; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -App::$strings["Poke"] = "Toques y otras cosas"; -App::$strings["Poke somebody"] = "Dar un toque a alguien"; -App::$strings["Poke/Prod"] = "Toque/Incitación"; -App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; -App::$strings["Recipient"] = "Destinatario"; -App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; -App::$strings["Make this post private"] = "Convertir en privado este envío"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -App::$strings["Login failed."] = "El acceso ha fallado."; -App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; -App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; -App::$strings["Visible To"] = "Visible para"; -App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; -App::$strings["Configuration Editor"] = "Editor de configuración"; -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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; -App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; -App::$strings["Current load average: "] = "Carga media actual:"; -App::$strings["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; -App::$strings["\$projectname issues"] = "Problemas en \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -App::$strings["Site Administrators"] = "Administradores del sitio"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; -App::$strings["The error message was:"] = "El mensaje de error fue:"; -App::$strings["Authentication failed."] = "Falló la autenticación."; -App::$strings["Remote Authentication"] = "Acceso desde su servidor"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; -App::$strings["Authenticate"] = "Acceder"; -App::$strings["Public Hubs"] = "Servidores públicos"; -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."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; -App::$strings["Hub URL"] = "Dirección del hub"; -App::$strings["Access Type"] = "Tipo de acceso"; -App::$strings["Registration Policy"] = "Normas de registro"; -App::$strings["Stats"] = "Estadísticas"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["Rate"] = "Valorar"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Blocks"] = "Bloques"; -App::$strings["Block Title"] = "Título del bloque"; -App::$strings["Website:"] = "Sitio web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; -App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -App::$strings["No ratings"] = "Ninguna valoración"; -App::$strings["Rating: "] = "Valoración:"; -App::$strings["Website: "] = "Sitio web:"; -App::$strings["Description: "] = "Descripción:"; -App::$strings["Apps"] = "Aplicaciones (apps)"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; -App::$strings["No connections in common."] = "Ninguna conexión en común."; -App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; -App::$strings["Save Bookmark"] = "Guardar marcador"; -App::$strings["URL of bookmark"] = "Dirección del marcador"; -App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; -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. 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["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["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["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 13 years of age and accept the %s for this website"] = "Tengo más de 13 años de edad y acepto los %s de este sitio"; -App::$strings["Your email address"] = "Su dirección de correo electrónico"; -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["no"] = "no"; -App::$strings["yes"] = "sí"; -App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; -App::$strings["Register"] = "Registrarse"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Este sitio puede requerir una verificación de correo electrónico después de enviar este formulario. Si es devuelto a una página de inicio de sesión, compruebe su email para recibir y leer las instrucciones."; -App::$strings["Please login."] = "Por favor, inicie sesión."; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; -App::$strings["Remove This Account"] = "Eliminar esta cuenta"; -App::$strings["WARNING: "] = "ATENCIÓN:"; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; -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 this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; -App::$strings["Remove Account"] = "Eliminar cuenta"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; -App::$strings["Remove This Channel"] = "Eliminar este canal"; -App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; -App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; -App::$strings["Remove Channel"] = "Eliminar el canal"; -App::$strings["Export Channel"] = "Exportar el canal"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; -App::$strings["Export Content"] = "Exportar contenidos"; -App::$strings["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."] = "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."; -App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; -App::$strings["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."] = "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."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; -App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; -App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; -App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; -App::$strings["Name is required"] = "El nombre es obligatorio"; -App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; -App::$strings["This channel is limited to %d tokens"] = "Este canal tiene un límite de %d tokens"; -App::$strings["Name and Password are required."] = "Se requiere el nombre y la contraseña."; -App::$strings["Token saved."] = "Token salvado."; -App::$strings["Not valid email."] = "Correo electrónico no válido."; -App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; -App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; -App::$strings["Password verification failed."] = "La comprobación de la contraseña ha fallado."; -App::$strings["Passwords do not match. Password unchanged."] = "Las contraseñas no coinciden. La contraseña no se ha cambiado."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "No se permiten contraseñas vacías. La contraseña no se ha cambiado."; -App::$strings["Password changed."] = "Contraseña cambiada."; -App::$strings["Password update failed. Please try again."] = "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo."; -App::$strings["Settings updated."] = "Ajustes actualizados."; -App::$strings["Add application"] = "Añadir aplicación"; -App::$strings["Name of application"] = "Nombre de la aplicación"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -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 Apps"] = "Aplicaciones (apps) conectadas"; -App::$strings["Client key starts with"] = "La \"client key\" empieza por"; -App::$strings["No name"] = "Sin nombre"; -App::$strings["Remove authorization"] = "Eliminar autorización"; -App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; -App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; -App::$strings["Account Settings"] = "Configuración de la cuenta"; -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["Email Address:"] = "Dirección de correo electrónico:"; -App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; -App::$strings["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 the private content."] = "Utilice este formulario para crear identificadores de acceso temporal para compartir cosas con los no miembros. Estas identidades se pueden usar en las Listas de control de acceso y así los visitantes pueden iniciar sesión, utilizando estas credenciales, para acceder a su contenido privado."; -App::$strings["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:"] = "También puede proporcionar, con el estilo dropbox, enlaces de acceso a sus amigos y asociados añadiendo la contraseña de inicio de sesión a cualquier dirección URL, como se muestra. Ejemplos: "; -App::$strings["Guest Access Tokens"] = "Tokens de acceso para invitados"; -App::$strings["Login Name"] = "Nombre de inicio de sesión"; -App::$strings["Login Password"] = "Contraseña de inicio de sesión"; -App::$strings["Expires (yyyy-mm-dd)"] = "Expira (aaaa-mm-dd)"; -App::$strings["Additional Features"] = "Funcionalidades"; -App::$strings["Connector Settings"] = "Configuración del conector"; -App::$strings["No special theme for mobile devices"] = "Sin tema especial para dispositivos móviles"; -App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; -App::$strings["Display Settings"] = "Ajustes de visualización"; -App::$strings["Theme Settings"] = "Ajustes del tema"; -App::$strings["Custom Theme Settings"] = "Ajustes personalizados del tema"; -App::$strings["Content Settings"] = "Ajustes del contenido"; -App::$strings["Display Theme:"] = "Tema gráfico del perfil:"; -App::$strings["Mobile Theme:"] = "Tema para el móvil:"; -App::$strings["Preload images before rendering the page"] = "Carga previa de las imágenes antes de generar la página"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre."; -App::$strings["Enable user zoom on mobile devices"] = "Habilitar zoom de usuario en dispositivos móviles"; -App::$strings["Update browser every xx seconds"] = "Actualizar navegador cada xx segundos"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Mínimo de 10 segundos, sin máximo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Máximo número de conversaciones a cargar en cualquier momento:"; -App::$strings["Maximum of 100 items"] = "Máximo de 100 elementos"; -App::$strings["Show emoticons (smilies) as images"] = "Mostrar emoticonos (smilies) como imágenes"; -App::$strings["Link post titles to source"] = "Enlazar título de la publicación a la fuente original"; -App::$strings["System Page Layout Editor - (advanced)"] = "Editor de plantilla de página del sistema - (avanzado)"; -App::$strings["Use blog/list mode on channel page"] = "Usar modo blog/lista en la página de inicio del canal"; -App::$strings["(comments displayed separately)"] = "(comentarios mostrados de forma separada)"; -App::$strings["Use blog/list mode on grid page"] = "Mostrar mi red en modo blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altura máxima del contenido de la página del canal (en píxeles)"; -App::$strings["click to expand content exceeding this height"] = "Pulsar para expandir el contenido que exceda de esta altura"; -App::$strings["Grid page max height of content (in pixels)"] = "Altura máxima del contenido de mi red (en píxeles)"; -App::$strings["Nobody except yourself"] = "Nadie excepto usted"; -App::$strings["Only those you specifically allow"] = "Solo aquellos a los que usted permita explícitamente"; -App::$strings["Approved connections"] = "Conexiones aprobadas"; -App::$strings["Any connections"] = "Cualquier conexión"; -App::$strings["Anybody on this website"] = "Cualquiera en este sitio web"; -App::$strings["Anybody in this network"] = "Cualquiera en esta red"; -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["Your channel address is"] = "Su dirección de canal es"; -App::$strings["Channel Settings"] = "Ajustes del canal"; -App::$strings["Basic Settings"] = "Configuración básica"; -App::$strings["Full Name:"] = "Nombre completo:"; -App::$strings["Your Timezone:"] = "Su huso horario:"; -App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; -App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; -App::$strings["Use Browser Location:"] = "Usar la localización geográfica del navegador:"; -App::$strings["Adult Content"] = "Contenido solo para adultos"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)"; -App::$strings["Security and Privacy Settings"] = "Configuración de seguridad y privacidad"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Sus permisos ya están configurados. Pulse para ver/ajustar"; -App::$strings["Hide my online presence"] = "Ocultar mi presencia en línea"; -App::$strings["Prevents displaying in your profile that you are online"] = "Evitar mostrar en su perfil que está en línea"; -App::$strings["Simple Privacy Settings:"] = "Configuración de privacidad sencilla:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Muy Público - extremadamente permisivo (debería ser usado con precaución)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)"; -App::$strings["Private - default private, never open or public"] = "Privado - por defecto, privado, nunca abierto o público"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloqueado - por defecto, bloqueado/a para cualquiera"; -App::$strings["Allow others to tag your posts"] = "Permitir a otros etiquetar sus publicaciones"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva."; -App::$strings["Advanced Privacy Settings"] = "Configuración de privacidad avanzada"; -App::$strings["Expire other channel content after this many days"] = "Caducar contenido de otros canales después de este número de días"; -App::$strings["0 or blank to use the website limit."] = "0 o en blanco para usar el límite del sitio web."; -App::$strings["This website expires after %d days."] = "Este sitio web caduca después de %d días."; -App::$strings["This website does not expire imported content."] = "Este sitio web no caduca el contenido importado."; -App::$strings["The website limit takes precedence if lower than your limit."] = "El límite del sitio web tiene prioridad si es inferior a su propio límite."; -App::$strings["Maximum Friend Requests/Day:"] = "Máximo de solicitudes de amistad por día:"; -App::$strings["May reduce spam activity"] = "Podría reducir la actividad de spam"; -App::$strings["Default Post and Publish Permissions"] = "Permisos predeterminados de entradas y publicaciones"; -App::$strings["Use my default audience setting for the type of object published"] = "Usar los ajustes de mi audiencia predeterminada para el tipo de publicación"; -App::$strings["Channel permissions category:"] = "Categoría de permisos del canal:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Máximo de mensajes privados por día de gente desconocida:"; -App::$strings["Useful to reduce spamming"] = "Útil para reducir el envío de correo no deseado"; -App::$strings["Notification Settings"] = "Configuración de las notificaciones"; -App::$strings["By default post a status message when:"] = "Por defecto, enviar un mensaje de estado cuando:"; -App::$strings["accepting a friend request"] = "Acepte una solicitud de amistad"; -App::$strings["joining a forum/community"] = "al unirse a un foro o comunidad"; -App::$strings["making an interesting profile change"] = "Realice un cambio interesante en su perfil"; -App::$strings["Send a notification email when:"] = "Enviar una notificación por correo electrónico cuando:"; -App::$strings["You receive a connection request"] = "Reciba una solicitud de conexión"; -App::$strings["Your connections are confirmed"] = "Sus conexiones hayan sido confirmadas"; -App::$strings["Someone writes on your profile wall"] = "Alguien escriba en la página de su perfil (\"muro\")"; -App::$strings["Someone writes a followup comment"] = "Alguien escriba un comentario sobre sus publicaciones"; -App::$strings["You receive a private message"] = "Reciba un mensaje privado"; -App::$strings["You receive a friend suggestion"] = "Reciba una sugerencia de amistad"; -App::$strings["You are tagged in a post"] = "Usted sea etiquetado en una publicación"; -App::$strings["You are poked/prodded/etc. in a post"] = "Reciba un toque o incitación en una publicación"; -App::$strings["Show visual notifications including:"] = "Mostrar notificaciones visuales que incluyan:"; -App::$strings["Unseen grid activity"] = "Nueva actividad en la red"; -App::$strings["Unseen channel activity"] = "Actividad no vista en el canal"; -App::$strings["Unseen private messages"] = "Mensajes privados no leídos"; -App::$strings["Recommended"] = "Recomendado"; -App::$strings["Upcoming events"] = "Próximos eventos"; -App::$strings["Events today"] = "Eventos de hoy"; -App::$strings["Upcoming birthdays"] = "Próximos cumpleaños"; -App::$strings["Not available in all themes"] = "No disponible en todos los temas"; -App::$strings["System (personal) notifications"] = "Notificaciones del sistema (personales)"; -App::$strings["System info messages"] = "Mensajes de información del sistema"; -App::$strings["System critical alerts"] = "Alertas críticas del sistema"; -App::$strings["New connections"] = "Nuevas conexiones"; -App::$strings["System Registrations"] = "Registros del sistema"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones"; -App::$strings["Notify me of events this many days in advance"] = "Avisarme de los eventos con algunos días de antelación"; -App::$strings["Must be greater than 0"] = "Debe ser mayor que 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Ajustes avanzados de la cuenta y de los tipos de página"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambiar el comportamiento de esta cuenta en situaciones especiales"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!."; -App::$strings["Miscellaneous Settings"] = "Ajustes diversos"; -App::$strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas"; -App::$strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual"; -App::$strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos"; -App::$strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal"; -App::$strings["Remove this channel."] = "Eliminar este canal."; -App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; -App::$strings["Start calendar week on monday"] = "Comenzar el calendario semanal por el lunes"; -App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; -App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; -App::$strings["Could not create table."] = "No se puede crear la tabla."; -App::$strings["Your site database has been installed."] = "La base de datos del sitio ha sido instalada."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Por favor, lea el fichero \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Verificación del sistema"; -App::$strings["Check again"] = "Verificar de nuevo"; -App::$strings["Database connection"] = "Conexión a la base de datos"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Para instalar \$Projectname es necesario saber cómo conectar con su base de datos."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir."; -App::$strings["Database Server Name"] = "Nombre del servidor de base de datos"; -App::$strings["Default is 127.0.0.1"] = "De forma predeterminada es 127.0.0.1"; -App::$strings["Database Port"] = "Puerto de la base de datos"; -App::$strings["Communication port number - use 0 for default"] = "Número del puerto de comunicaciones - use 0 como valor por defecto"; -App::$strings["Database Login Name"] = "Usuario de la base de datos"; -App::$strings["Database Login Password"] = "Contraseña de acceso a la base de datos"; -App::$strings["Database Name"] = "Nombre de la base de datos"; -App::$strings["Database Type"] = "Tipo de base de datos"; -App::$strings["Site administrator email address"] = "Dirección de correo electrónico del administrador del sitio"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web."; -App::$strings["Website URL"] = "Dirección del sitio web"; -App::$strings["Please use SSL (https) URL if available."] = "Por favor, use SSL (https) si está disponible."; -App::$strings["Please select a default timezone for your website"] = "Por favor, selecciones el huso horario por defecto de su sitio web"; -App::$strings["Site settings"] = "Ajustes del sitio"; -App::$strings["Enable \$Projectname advanced features?"] = "¿Habilitar las funcionalidades avanzadas de \$Projectname ?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente"; -App::$strings["PHP version 5.5 or greater is required."] = "Se requiere la versión 5.5, o superior, de PHP."; -App::$strings["PHP version"] = "Versión de PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web."; -App::$strings["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."] = "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."; -App::$strings["PHP executable path"] = "Ruta del ejecutable PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación."; -App::$strings["Command line PHP"] = "PHP en línea de comandos"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "Esto es necesario para que funcione la transmisión de mensajes."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["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."] = "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."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Puede ajustar estos valores en el fichero php.ini de su servidor."; -App::$strings["PHP upload limits"] = "Límites PHP de subida"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generar claves de cifrado"; -App::$strings["libCurl PHP module"] = "módulo libCurl PHP"; -App::$strings["GD graphics PHP module"] = "módulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "módulo PHP OpenSSL"; -App::$strings["mysqli or postgres PHP module"] = "módulo PHP mysqli o postgres"; -App::$strings["mb_string PHP module"] = "módulo PHP mb_string"; -App::$strings["xml PHP module"] = "módulo PHP xml"; -App::$strings["Apache mod_rewrite module"] = "módulo Apache mod_rewrite "; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: se necesita el módulo PHP libCURL pero no está instalado."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: el módulo PHP GD graphics es necesario, pero no está instalado."; -App::$strings["Error: openssl PHP module required but not installed."] = "Error: el módulo PHP openssl es necesario, pero no está instalado."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Error: el módulo PHP mb_string es necesario, pero no está instalado."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: el módulo PHP xml es necesario para DAV, pero no está instalado."; -App::$strings["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."] = "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor."; -App::$strings["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."] = "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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php tiene permisos de escritura"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP."; -App::$strings["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."] = "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al directorio %s en la carpeta web principal."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "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)."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "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."; -App::$strings["%s is writable"] = "%s tiene permisos de escritura"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Este software utiliza el directorio de almacenamiento para guardar los archivos subidos. El servidor web debe tener acceso de escritura al directorio de almacenamiento en la carpeta de nivel superior"; -App::$strings["store is writable"] = "\"store\" tiene permisos de escritura"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio."; -App::$strings["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!"] = "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."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor."; -App::$strings["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."] = "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."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos."; -App::$strings["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."] = "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."; -App::$strings["SSL certificate validation"] = "validación del certificado SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:"; -App::$strings["Url rewrite is working"] = "La reescritura de las direcciones funciona correctamente"; -App::$strings["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."] = "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."; -App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; -App::$strings["

    What next

    "] = "

    Siguiente paso

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; -App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; -App::$strings["NEW"] = "NUEVO"; -App::$strings["Remove all files"] = "Eliminar todos los ficheros"; -App::$strings["Remove this file"] = "Eliminar este fichero"; -App::$strings["Thing updated"] = "Elemento actualizado."; -App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; -App::$strings["Thing added"] = "Elemento añadido"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostrar elemento"; -App::$strings["item not found."] = "elemento no encontrado."; -App::$strings["Edit Thing"] = "Editar elemento"; -App::$strings["Select a profile"] = "Seleccionar un perfil"; -App::$strings["Post an activity"] = "Publicar una actividad"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; -App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; -App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; -App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; -App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; -App::$strings["Source created."] = "Fuente creada."; -App::$strings["Source updated."] = "Fuente actualizada."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; -App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; -App::$strings["New Source"] = "Nueva fuente"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; -App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; -App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; -App::$strings["Channel Name"] = "Nombre del canal"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir las categorías siguientes a las entradas importadas de esta fuente (separadas por comas)"; -App::$strings["Source not found."] = "Fuente no encontrada"; -App::$strings["Edit Source"] = "Editar fuente"; -App::$strings["Delete Source"] = "Eliminar fuente"; -App::$strings["Source removed"] = "Fuente eliminada"; -App::$strings["Unable to remove source."] = "Imposible eliminar la fuente."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; -App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; -App::$strings["post"] = "la entrada"; -App::$strings["comment"] = "el comentario"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; -App::$strings["Tag removed"] = "Etiqueta eliminada."; -App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; -App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Actions"] = "Acciones"; -App::$strings["Page Link"] = "Vínculo de la página"; -App::$strings["Page Title"] = "Título de página"; -App::$strings["Not found"] = "No encontrado"; -App::$strings["Wiki"] = "Wiki"; -App::$strings["Sandbox"] = "Entorno de edición"; -App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\""; -App::$strings["Revision Comparison"] = "Comparación de revisiones"; -App::$strings["Revert"] = "Revertir"; -App::$strings["Enter the name of your new wiki:"] = "Nombre de su nuevo wiki:"; -App::$strings["Enter the name of the new page:"] = "Nombre de la nueva página:"; -App::$strings["Enter the new name:"] = "Nuevo nombre:"; -App::$strings["Embed image from photo albums"] = "Incluir una imagen de los álbumes de fotos"; -App::$strings["Embed an image from your albums"] = "Incluir una imagen de sus álbumes"; -App::$strings["OK"] = "OK"; -App::$strings["Choose images to embed"] = "Elegir imágenes para incluir"; -App::$strings["Choose an album"] = "Elegir un álbum"; -App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; -App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; -App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; -App::$strings["Error getting album"] = "Error al obtener el álbum"; -App::$strings["No connections."] = "Sin conexiones."; -App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; -App::$strings["View Connections"] = "Ver conexiones"; -App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; -App::$strings["Xchan Lookup"] = "Búsqueda de canales"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; -App::$strings["Missing room name"] = "Sala de chat sin nombre"; -App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; -App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; -App::$strings["Room not found."] = "Sala no encontrada."; -App::$strings["Room is full"] = "La sala está llena."; -App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Gracias,"; -App::$strings["%s Administrator"] = "%s Administrador"; -App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; -App::$strings["a private message"] = "un mensaje privado"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; -App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; -App::$strings["Name:"] = "Nombre:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; -App::$strings["created a new post"] = "ha creado una nueva entrada"; -App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Bug Report"] = "Informe de errores"; -App::$strings["View Bookmarks"] = "Ver los marcadores"; -App::$strings["My Chatrooms"] = "Mis salas de chat"; -App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; -App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Grid"] = "Red"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Mail"] = "Correo"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Funcionalidades"; -App::$strings["Post"] = "Publicación"; -App::$strings["Purchase"] = "Comprar"; -App::$strings["Private Message"] = "Mensaje Privado"; -App::$strings["Select"] = "Seleccionar"; -App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["I will attend"] = "Participaré"; -App::$strings["I will not attend"] = "No participaré"; -App::$strings["I might attend"] = "Quizá participe"; -App::$strings["I agree"] = "Estoy de acuerdo"; -App::$strings["I disagree"] = "No estoy de acuerdo"; -App::$strings["I abstain"] = "Me abstengo"; -App::$strings["Add Star"] = "Destacar añadiendo una estrella"; -App::$strings["Remove Star"] = "Eliminar estrella"; -App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; -App::$strings["starred"] = "preferidas"; -App::$strings["Message signature validated"] = "Firma de mensaje validada"; -App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; -App::$strings["Add Tag"] = "Añadir etiqueta"; -App::$strings["like"] = "me gusta"; -App::$strings["dislike"] = "no me gusta"; -App::$strings["Share This"] = "Compartir esto"; -App::$strings["share"] = "compartir"; -App::$strings["Delivery Report"] = "Informe de transmisión"; -App::$strings["%d comment"] = array( - 0 => "%d comentario", - 1 => "%d comentarios", -); -App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "mediante"; -App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["from %s"] = "desde %s"; -App::$strings["last edited: %s"] = "último cambio: %s"; -App::$strings["Expires: %s"] = "Caduca: %s"; -App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; -App::$strings["Add to Calendar"] = "Añadir al calendario"; -App::$strings["Mark all seen"] = "Marcar todo como visto"; -App::$strings["%s show all"] = "%s mostrar todo"; -App::$strings["Bold"] = "Negrita"; -App::$strings["Italic"] = "Itálico "; -App::$strings["Underline"] = "Subrayar"; -App::$strings["Quote"] = "Citar"; -App::$strings["Code"] = "Código"; -App::$strings["Image"] = "Imagen"; -App::$strings["Insert Link"] = "Insertar enlace"; -App::$strings["Video"] = "Vídeo"; -App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Only me"] = "Sólo yo"; -App::$strings["Public"] = "Público"; -App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; -App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; -App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; -App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; -App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; -App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; -App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; -App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; -App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["a new photo"] = "una nueva foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; -App::$strings["Logout"] = "Finalizar sesión"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Home"] = "Inicio"; -App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Your wiki"] = "Su wiki"; -App::$strings["Sign in"] = "Acceder"; -App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -App::$strings["Remote authentication"] = "Acceder desde su servidor"; -App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Home Page"] = "Página de inicio"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["See all private messages"] = "Ver todas los mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Inbox"] = "Bandeja de entrada"; -App::$strings["Outbox"] = "Bandeja de salida"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["See all events"] = "Ver todos los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Admin"] = "Administrador"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["Loading..."] = "Cargando..."; -App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["No Subject"] = "Sin asunto"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["New Page"] = "Nueva página"; -App::$strings["Title"] = "Título"; -App::$strings["Categories"] = "Categorías"; -App::$strings["Tags"] = "Etiquetas"; -App::$strings["Keywords"] = "Palabras clave"; -App::$strings["have"] = "tener"; -App::$strings["has"] = "tiene"; -App::$strings["want"] = "quiero"; -App::$strings["wants"] = "quiere"; -App::$strings["likes"] = "gusta de"; -App::$strings["dislikes"] = "no gusta de"; -App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -App::$strings["Empty name"] = "Nombre vacío"; -App::$strings["Name too long"] = "Nombre demasiado largo"; -App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; -App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; -App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["Like this channel"] = "Me gusta este canal"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Cumpleaños:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; -App::$strings["Likes:"] = "Me gusta:"; -App::$strings["Dislikes:"] = "No me gusta:"; -App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -App::$strings["My other channels:"] = "Mis otros canales:"; -App::$strings["Musical interests:"] = "Preferencias musicales:"; -App::$strings["Books, literature:"] = "Libros, literatura:"; -App::$strings["Television:"] = "Televisión:"; -App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; -App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; -App::$strings["poked"] = "ha dado un toque a"; -App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; -App::$strings["Categories:"] = "Categorías:"; -App::$strings["Filed under:"] = "Archivado bajo:"; -App::$strings["View in context"] = "Mostrar en su contexto"; -App::$strings["remove"] = "eliminar"; -App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; -App::$strings["View Source"] = "Ver el código fuente de la entrada"; -App::$strings["Follow Thread"] = "Seguir este hilo"; -App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; -App::$strings["Activity/Posts"] = "Actividad y publicaciones"; -App::$strings["Edit Connection"] = "Editar conexión"; -App::$strings["Message"] = "Mensaje"; -App::$strings["%s likes this."] = "A %s le gusta esto."; -App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; -App::$strings["%2\$d people like this."] = array( - 0 => "a %2\$d personas le gusta esto.", - 1 => "A %2\$d personas les gusta esto.", -); -App::$strings["%2\$d people don't like this."] = array( - 0 => "a %2\$d personas no les gusta esto.", - 1 => "A %2\$d personas no les gusta esto.", -); -App::$strings["and"] = "y"; -App::$strings[", and %d other people"] = array( - 0 => ", y %d persona más", - 1 => ", y %d personas más", -); -App::$strings["%s like this."] = "A %s le gusta esto."; -App::$strings["%s don't like this."] = "A %s no le gusta esto."; -App::$strings["Set your location"] = "Establecer su ubicación"; -App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Page link name"] = "Nombre del enlace de la página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Contenidos públicos importados"; -App::$strings["Commented Order"] = "Comentarios recientes"; -App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; -App::$strings["Posted Order"] = "Publicaciones recientes"; -App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; -App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; -App::$strings["Starred"] = "Preferidas"; -App::$strings["Favourite Posts"] = "Publicaciones favoritas"; -App::$strings["Spam"] = "Correo basura"; -App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["About"] = "Mi perfil"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Chatrooms"] = "Salas de chat"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["Manage Webpages"] = "Administrar páginas web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participaré", - 1 => "Participaré", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "No participaré", - 1 => "No participaré", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso/a", - 1 => "Indecisos/as", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "De acuerdo", - 1 => "De acuerdo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "En desacuerdo", - 1 => "En desacuerdo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "se abstiene", - 1 => "Se abstienen", -); -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; -App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; -App::$strings["Frequently"] = "Frecuentemente"; -App::$strings["Hourly"] = "Cada hora"; -App::$strings["Twice daily"] = "Dos veces al día"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensualmente"; -App::$strings["Currently Male"] = "Actualmente hombre"; -App::$strings["Currently Female"] = "Actualmente mujer"; -App::$strings["Mostly Male"] = "Generalmente hombre"; -App::$strings["Mostly Female"] = "Generalmente mujer"; -App::$strings["Transgender"] = "Transgénero"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutral"; -App::$strings["Non-specific"] = "No especificado"; -App::$strings["Undecided"] = "Indeciso/a"; -App::$strings["Males"] = "Hombres"; -App::$strings["Females"] = "Mujeres"; -App::$strings["Gay"] = "Homosexual"; -App::$strings["Lesbian"] = "Lesbiana"; -App::$strings["No Preference"] = "Sin preferencias"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Casto/a"; -App::$strings["Virgin"] = "Virgen"; -App::$strings["Deviant"] = "Fuera de lo común"; -App::$strings["Fetish"] = "Fetichista"; -App::$strings["Oodles"] = "Orgías"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Soltero/a"; -App::$strings["Lonely"] = "Solo/a"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No disponible"; -App::$strings["Has crush"] = "Enamorado/a"; -App::$strings["Infatuated"] = "Apasionado/a"; -App::$strings["Dating"] = "Saliendo con alguien"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Con adicción al sexo"; -App::$strings["Friends/Benefits"] = "Amigos con algo extra"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Prometido/a"; -App::$strings["Married"] = "Casado/a"; -App::$strings["Imaginarily married"] = "Casado/a en sueños"; -App::$strings["Partners"] = "Pareja"; -App::$strings["Cohabiting"] = "Cohabitando"; -App::$strings["Common law"] = "Matrimonio tradicional"; -App::$strings["Happy"] = "Felíz"; -App::$strings["Not looking"] = "No estoy buscando"; -App::$strings["Swinger"] = "Libertino"; -App::$strings["Betrayed"] = "Engañado/a"; -App::$strings["Separated"] = "Separado/a"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciado/a"; -App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; -App::$strings["Widowed"] = "Viudo/a"; -App::$strings["Uncertain"] = "Indeterminado"; -App::$strings["It's complicated"] = "Es complicado"; -App::$strings["Don't care"] = "No me importa"; -App::$strings["Ask me"] = "Pregúnteme"; -App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -App::$strings["guest:"] = "invitado: "; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +App::$strings["Password Reset"] = "Restablecer la contraseña"; +App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +App::$strings["Your new password is"] = "Su nueva contraseña es"; +App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +App::$strings["click here to login"] = "pulse aquí para conectarse"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +App::$strings["Email Address"] = "Dirección de correo electrónico"; +App::$strings["Reset"] = "Reiniciar"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; +App::$strings["Mood"] = "Estado de ánimo"; +App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["Profile not found."] = "Perfil no encontrado."; +App::$strings["Profile deleted."] = "Perfil eliminado."; +App::$strings["Profile-"] = "Perfil-"; +App::$strings["New profile created."] = "El nuevo perfil ha sido creado."; +App::$strings["Profile unavailable to clone."] = "Perfil no disponible para clonar."; +App::$strings["Profile unavailable to export."] = "Perfil no disponible para exportar."; +App::$strings["Profile Name is required."] = "Se necesita el nombre del perfil."; +App::$strings["Marital Status"] = "Estado civil"; +App::$strings["Romantic Partner"] = "Pareja sentimental"; +App::$strings["Likes"] = "Me gusta"; +App::$strings["Dislikes"] = "No me gusta"; +App::$strings["Work/Employment"] = "Trabajo:"; +App::$strings["Religion"] = "Religión"; +App::$strings["Political Views"] = "Ideas políticas"; +App::$strings["Gender"] = "Género"; +App::$strings["Sexual Preference"] = "Preferencia sexual"; +App::$strings["Homepage"] = "Página personal"; +App::$strings["Interests"] = "Intereses"; +App::$strings["Profile updated."] = "Perfil actualizado."; +App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; +App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; +App::$strings["View this profile"] = "Ver este perfil"; +App::$strings["Edit visibility"] = "Editar visibilidad"; +App::$strings["Profile Tools"] = "Gestión del perfil"; +App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; +App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; +App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; +App::$strings["Clone this profile"] = "Clonar este perfil"; +App::$strings["Delete this profile"] = "Eliminar este perfil"; +App::$strings["Add profile things"] = "Añadir cosas al perfil"; +App::$strings["Personal"] = "Personales"; +App::$strings["Relation"] = "Relación"; +App::$strings["Miscellaneous"] = "Varios"; +App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; +App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; +App::$strings["Your gender"] = "Género"; +App::$strings["Marital status"] = "Estado civil"; +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["Title/Description"] = "Título o descripción"; +App::$strings["Street address"] = "Dirección"; +App::$strings["Locality/City"] = "Ciudad"; +App::$strings["Region/State"] = "Región o Estado"; +App::$strings["Postal/Zip code"] = "Código postal"; +App::$strings["Country"] = "País"; +App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; +App::$strings["Since (date)"] = "Desde (fecha)"; +App::$strings["Tell us about yourself"] = "Háblenos de usted"; +App::$strings["Homepage URL"] = "Dirección de la página personal"; +App::$strings["Hometown"] = "Lugar de nacimiento"; +App::$strings["Political views"] = "Ideas políticas"; +App::$strings["Religious views"] = "Creencias religiosas"; +App::$strings["Keywords used in directory listings"] = "Palabras clave utilizadas en los listados de directorios"; +App::$strings["Example: fishing photography software"] = "Por ejemplo: software de fotografía submarina"; +App::$strings["Musical interests"] = "Preferencias musicales"; +App::$strings["Books, literature"] = "Libros, literatura"; +App::$strings["Television"] = "Televisión"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Cine, danza, cultura, entretenimiento"; +App::$strings["Hobbies/Interests"] = "Aficiones o intereses"; +App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; +App::$strings["School/Education"] = "Estudios"; +App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; +App::$strings["My other channels"] = "Mis otros canales"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; +App::$strings["System Notifications"] = "Notificaciones del sistema"; +App::$strings["Profile Match"] = "Perfil compatible"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +App::$strings["is interested in:"] = "está interesado en:"; +App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; +App::$strings["Import Webpage Elements"] = "Importar elementos de una página web"; +App::$strings["Import selected"] = "Importar elementos seleccionados"; +App::$strings["Webpages"] = "Páginas web"; +App::$strings["Actions"] = "Acciones"; +App::$strings["Page Link"] = "Vínculo de la página"; +App::$strings["Page Title"] = "Título de página"; +App::$strings["Invalid file type."] = "Tipo de fichero no válido."; +App::$strings["Error opening zip file"] = "Error al abrir el fichero comprimido zip"; +App::$strings["Invalid folder path."] = "La ruta de la carpeta no es válida."; +App::$strings["No webpage elements detected."] = "No se han detectado elementos de ninguna página web."; +App::$strings["Import complete."] = "Importación completada."; +App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; +App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; +App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +App::$strings["Event not found."] = "Evento no encontrado."; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Categories (comma-separated list)"] = "Temas (lista separada por comas)"; +App::$strings["Edit Category"] = "Modificar el tema"; +App::$strings["Category"] = "Tema"; +App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; +App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; +App::$strings["Finish date and time"] = "Fecha y hora de terminación"; +App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +App::$strings["Edit Description"] = "Editar la descripción"; +App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Share this event"] = "Compartir este evento"; +App::$strings["Permission settings"] = "Configuración de permisos"; +App::$strings["Advanced Options"] = "Opciones avanzadas"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Editar evento"; +App::$strings["Delete event"] = "Borrar evento"; +App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["calendar"] = "calendario"; +App::$strings["Edit Event"] = "Editar el evento"; +App::$strings["Create Event"] = "Crear un evento"; +App::$strings["Export"] = "Exportar"; +App::$strings["Month"] = "Mes"; +App::$strings["Week"] = "Semana"; +App::$strings["Day"] = "Día"; +App::$strings["Today"] = "Hoy"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; +App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; +App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; +App::$strings["Import completed."] = "Importación completada."; +App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; +App::$strings["Import Channel"] = "Importar canal"; +App::$strings["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."] = "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."; +App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; +App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; +App::$strings["Your old login password"] = "Su antigua contraseña"; +App::$strings["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."] = "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."; +App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; +App::$strings["Create Channel"] = "Crear un canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; +App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[hoy]"; +App::$strings["posted an event"] = "publicó un evento"; +App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; +App::$strings["Discard"] = "Descartar"; +App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +App::$strings["Poke"] = "Toques y otras cosas"; +App::$strings["Poke somebody"] = "Dar un toque a alguien"; +App::$strings["Poke/Prod"] = "Toque/Incitación"; +App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; +App::$strings["Recipient"] = "Destinatario"; +App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; +App::$strings["Make this post private"] = "Convertir en privado este envío"; +App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; +App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; +App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +App::$strings["Profile"] = "Perfil"; +App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; +App::$strings["Visible To"] = "Visible para"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; +App::$strings["Configuration Editor"] = "Editor de configuración"; +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."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; +App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +App::$strings["Posts and comments"] = "Publicaciones y comentarios"; +App::$strings["Only posts"] = "Solo publicaciones"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Installed plugins/addons/apps:"] = "Extensiones (plugins), complementos o aplicaciones (apps) instaladas:"; +App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión (plugin), complemento o aplicación (app)"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; +App::$strings["Current load average: "] = "Carga media actual:"; +App::$strings["Running at web location"] = "Corriendo en el sitio web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; +App::$strings["\$projectname issues"] = "Problemas en \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +App::$strings["Site Administrators"] = "Administradores del sitio"; +App::$strings["Blocks"] = "Bloques"; +App::$strings["Block Title"] = "Título del bloque"; +App::$strings["Layouts"] = "Plantillas"; +App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; +App::$strings["Layout Description"] = "Descripción de la plantilla"; +App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["No ratings"] = "Ninguna valoración"; +App::$strings["Rating: "] = "Valoración:"; +App::$strings["Website: "] = "Sitio web:"; +App::$strings["Description: "] = "Descripción:"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; +App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Permissions denied."] = "Permisos denegados."; +App::$strings["Import"] = "Importar"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["Common connections"] = "Conexiones comunes"; +App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["Unable to lookup recipient."] = "No se puede asociar a un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "No se puede establecer la comunicación con el canal solicitado."; +App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +App::$strings["Messages"] = "Mensajes"; +App::$strings["Message recalled."] = "Mensaje revocado."; +App::$strings["Conversation removed."] = "Conversación eliminada."; +App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +App::$strings["Send Private Message"] = "Enviar un mensaje privado"; +App::$strings["To:"] = "Para:"; +App::$strings["Subject:"] = "Asunto:"; +App::$strings["Attach file"] = "Adjuntar fichero"; +App::$strings["Send"] = "Enviar"; +App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; +App::$strings["Encrypt text"] = "Cifrar texto"; +App::$strings["Delete message"] = "Borrar mensaje"; +App::$strings["Delivery report"] = "Informe de transmisión"; +App::$strings["Recall message"] = "Revocar el mensaje"; +App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; +App::$strings["Delete Conversation"] = "Eliminar conversación"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; +App::$strings["Send Reply"] = "Responder"; +App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; +App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; +App::$strings["Connection updated."] = "Conexión actualizada."; +App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; +App::$strings["is now connected to"] = "ahora está conectado/a"; +App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; +App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; +App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; +App::$strings["View Profile"] = "Ver el perfil"; +App::$strings["View %s's profile"] = "Ver el perfil de %s"; +App::$strings["Refresh Permissions"] = "Recargar los permisos"; +App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; +App::$strings["Recent Activity"] = "Actividad reciente"; +App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; +App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; +App::$strings["Unignore"] = "Dejar de ignorar"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; +App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; +App::$strings["Unarchive"] = "Desarchivar"; +App::$strings["Archive"] = "Archivar"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; +App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; +App::$strings["Unhide"] = "Mostrar"; +App::$strings["Hide"] = "Ocultar"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; +App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; +App::$strings["Delete this connection"] = "Eliminar esta conexión"; +App::$strings["Me"] = "Yo"; +App::$strings["Family"] = "Familia"; +App::$strings["Acquaintances"] = "Conocidos/as"; +App::$strings["Approve this connection"] = "Aprobar esta conexión"; +App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; +App::$strings["Set Affinity"] = "Ajustar la afinidad"; +App::$strings["Set Profile"] = "Ajustar el perfil"; +App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; +App::$strings["none"] = "-"; +App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; +App::$strings["Connection: %s"] = "Conexión: %s"; +App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; +App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; +App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; +App::$strings["Available locations:"] = "Ubicaciones disponibles:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones."; +App::$strings["Connection Tools"] = "Gestión de las conexiones"; +App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; +App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; +App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; +App::$strings["Custom Filter"] = "Filtro personalizado"; +App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; +App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; +App::$strings["This information is public!"] = "¡Esta información es pública!"; +App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; +App::$strings["Last update:"] = "Última actualización:"; +App::$strings["Apps"] = "Aplicaciones (apps)"; +App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +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["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; +App::$strings["Save Bookmark"] = "Guardar marcador"; +App::$strings["URL of bookmark"] = "Dirección del marcador"; +App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; +App::$strings["Authentication failed."] = "Falló la autenticación."; +App::$strings["Remote Authentication"] = "Acceso desde su servidor"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; +App::$strings["Authenticate"] = "Acceder"; +App::$strings["Please login."] = "Por favor, inicie sesión."; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; +App::$strings["Remove This Account"] = "Eliminar esta cuenta"; +App::$strings["WARNING: "] = "ATENCIÓN:"; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Esta cuenta y todos sus canales van a ser eliminados de la red."; +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 this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; +App::$strings["Remove This Channel"] = "Eliminar este canal"; +App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; +App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; +App::$strings["Export Channel"] = "Exportar el canal"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; +App::$strings["Export Content"] = "Exportar contenidos"; +App::$strings["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."] = "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."; +App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; +App::$strings["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."] = "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."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; +App::$strings["Item is not editable"] = "El elemento no es editable"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; +App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; +App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; +App::$strings["Thing updated"] = "Elemento actualizado."; +App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; +App::$strings["Thing added"] = "Elemento añadido"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostrar elemento"; +App::$strings["item not found."] = "elemento no encontrado."; +App::$strings["Edit Thing"] = "Editar elemento"; +App::$strings["Select a profile"] = "Seleccionar un perfil"; +App::$strings["Post an activity"] = "Publicar una actividad"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; +App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; +App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; +App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; +App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; +App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; +App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; +App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; +App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; +App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; +App::$strings["NEW"] = "NUEVO"; +App::$strings["Remove all files"] = "Eliminar todos los ficheros"; +App::$strings["Remove this file"] = "Eliminar este fichero"; +App::$strings["Not found"] = "No encontrado"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Entorno de edición"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Entorno de edición del Wiki\\n\\nEl contenido que se **edite** y **previsualizce** aquí *no se guardará*.\""; +App::$strings["Revision Comparison"] = "Comparación de revisiones"; +App::$strings["Revert"] = "Revertir"; +App::$strings["Enter the name of your new wiki:"] = "Nombre de su nuevo wiki:"; +App::$strings["Enter the name of the new page:"] = "Nombre de la nueva página:"; +App::$strings["Enter the new name:"] = "Nuevo nombre:"; +App::$strings["Embed image from photo albums"] = "Incluir una imagen de los álbumes de fotos"; +App::$strings["Embed an image from your albums"] = "Incluir una imagen de sus álbumes"; +App::$strings["OK"] = "OK"; +App::$strings["Choose images to embed"] = "Elegir imágenes para incluir"; +App::$strings["Choose an album"] = "Elegir un álbum"; +App::$strings["Choose a different album..."] = "Elegir un álbum diferente..."; +App::$strings["Error getting album list"] = "Error al obtener la lista de álbumes"; +App::$strings["Error getting photo link"] = "Error al obtener el enlace de la foto"; +App::$strings["Error getting album"] = "Error al obtener el álbum"; +App::$strings["Failed to create source. No channel selected."] = "No se ha podido crear el origen de los contenidos. No ha sido seleccionado ningún canal."; +App::$strings["Source created."] = "Fuente creada."; +App::$strings["Source updated."] = "Fuente actualizada."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; +App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; +App::$strings["New Source"] = "Nueva fuente"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; +App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; +App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; +App::$strings["Channel Name"] = "Nombre del canal"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Añadir los temas siguientes a las entradas importadas de esta fuente (separadas por comas)"; +App::$strings["Source not found."] = "Fuente no encontrada"; +App::$strings["Edit Source"] = "Editar fuente"; +App::$strings["Delete Source"] = "Eliminar fuente"; +App::$strings["Source removed"] = "Fuente eliminada"; +App::$strings["Unable to remove source."] = "No se puede eliminar la fuente."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; +App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; +App::$strings["post"] = "la entrada"; +App::$strings["comment"] = "el comentario"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; +App::$strings["Tag removed"] = "Etiqueta eliminada."; +App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; +App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; +App::$strings["Channel added."] = "Canal añadido."; +App::$strings["No connections."] = "Sin conexiones."; +App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; +App::$strings["View Connections"] = "Ver conexiones"; +App::$strings["Source of Item"] = "Origen del elemento"; +App::$strings["Room not found"] = "Sala no encontrada"; +App::$strings["Leave Room"] = "Abandonar la sala"; +App::$strings["Delete Room"] = "Eliminar esta sala"; +App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; +App::$strings["I am online"] = "Estoy conectado/a"; +App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["New Chatroom"] = "Nueva sala de chat"; +App::$strings["Chatroom name"] = "Nombre de la sala de chat"; +App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; +App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; +App::$strings["Expiration"] = "Caducidad"; +App::$strings["min"] = "min"; +App::$strings["Xchan Lookup"] = "Búsqueda de canales"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["Missing room name"] = "Sala de chat sin nombre"; +App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; +App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; +App::$strings["Room not found."] = "Sala no encontrada."; +App::$strings["Room is full"] = "La sala está llena."; +App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Gracias,"; +App::$strings["%s Administrator"] = "%s Administrador"; +App::$strings["%s "] = "%s "; +App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; +App::$strings["a private message"] = "un mensaje privado"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]"; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl]."; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; +App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; +App::$strings["Name:"] = "Nombre:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; +App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; +App::$strings["created a new post"] = "ha creado una nueva entrada"; +App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Bug Report"] = "Informe de errores"; +App::$strings["View Bookmarks"] = "Ver los marcadores"; +App::$strings["My Chatrooms"] = "Mis salas de chat"; +App::$strings["Firefox Share"] = "Servicio de compartición de Firefox"; +App::$strings["Remote Diagnostics"] = "Diagnóstico remoto"; +App::$strings["Suggest Channels"] = "Sugerir canales"; +App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Grid"] = "Red"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Probar"; +App::$strings["Suggest"] = "Sugerir"; +App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; +App::$strings["Features"] = "Funcionalidades"; +App::$strings["Language"] = "Idioma"; +App::$strings["Post"] = "Publicación"; +App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Purchase"] = "Comprar"; +App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; +App::$strings["Only me"] = "Sólo yo"; +App::$strings["Public"] = "Público"; +App::$strings["Anybody in the \$Projectname network"] = "Cualquiera en la red \$Projectname"; +App::$strings["Any account on %s"] = "Cualquier cuenta en %s"; +App::$strings["Any of my connections"] = "Cualquiera de mis conexiones"; +App::$strings["Only connections I specifically allow"] = "Sólo las conexiones que yo permita de forma explícita"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Cualquiera que esté autenticado (podría incluir a los visitantes de otras redes)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Cualquier conexión incluyendo aquellas que aún no han sido aprobadas"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Esta es la configuración predeterminada para su flujo (stream) habitual de publicaciones."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Esta es su configuración por defecto para establecer quién puede ver su perfil del canal predeterminado"; +App::$strings["This is your default setting for who can view your connections"] = "Este es su ajuste predeterminado para establecer quién puede ver sus conexiones"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Este es su ajuste predeterminado para establecer quién puede ver su repositorio de ficheros y sus fotos"; +App::$strings["This is your default setting for the audience of your webpages"] = "Este es el ajuste predeterminado para establecer la audiencia de sus páginas web"; +App::$strings["Private Message"] = "Mensaje Privado"; +App::$strings["Select"] = "Seleccionar"; +App::$strings["Save to Folder"] = "Guardar en carpeta"; +App::$strings["I will attend"] = "Participaré"; +App::$strings["I will not attend"] = "No participaré"; +App::$strings["I might attend"] = "Quizá participe"; +App::$strings["I agree"] = "Estoy de acuerdo"; +App::$strings["I disagree"] = "No estoy de acuerdo"; +App::$strings["I abstain"] = "Me abstengo"; +App::$strings["Add Star"] = "Destacar añadiendo una estrella"; +App::$strings["Remove Star"] = "Eliminar estrella"; +App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; +App::$strings["starred"] = "preferidas"; +App::$strings["Message signature validated"] = "Firma de mensaje validada"; +App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; +App::$strings["Add Tag"] = "Añadir etiqueta"; +App::$strings["like"] = "me gusta"; +App::$strings["dislike"] = "no me gusta"; +App::$strings["Share This"] = "Compartir esto"; +App::$strings["share"] = "compartir"; +App::$strings["Delivery Report"] = "Informe de transmisión"; +App::$strings["%d comment"] = array( + 0 => "%d comentario", + 1 => "%d comentarios", +); +App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; +App::$strings["to"] = "a"; +App::$strings["via"] = "mediante"; +App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["from %s"] = "desde %s"; +App::$strings["last edited: %s"] = "último cambio: %s"; +App::$strings["Expires: %s"] = "Caduca: %s"; +App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; +App::$strings["Add to Calendar"] = "Añadir al calendario"; +App::$strings["Mark all seen"] = "Marcar todo como visto"; +App::$strings["%s show all"] = "%s mostrar todo"; +App::$strings["Bold"] = "Negrita"; +App::$strings["Italic"] = "Itálico "; +App::$strings["Underline"] = "Subrayar"; +App::$strings["Quote"] = "Citar"; +App::$strings["Code"] = "Código"; +App::$strings["Image"] = "Imagen"; +App::$strings["Insert Link"] = "Insertar enlace"; +App::$strings["Video"] = "Vídeo"; +App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; +App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; +App::$strings["view full size"] = "Ver en el tamaño original"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["No Subject"] = "Sin asunto"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Contenido incorporado"; +App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; +App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; +App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; +App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; +App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; +App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; +App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; +App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; +App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; +App::$strings["(Unknown)"] = "(Desconocido)"; +App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +App::$strings["Visible to you only."] = "Visible sólo para usted."; +App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; +App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; +App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; +App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; +App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; +App::$strings["Connection not found."] = "Conexión no encontrada"; +App::$strings["profile photo"] = "foto del perfil"; App::$strings["prev"] = "anterior"; App::$strings["first"] = "primera"; App::$strings["last"] = "última"; @@ -1877,6 +1640,7 @@ App::$strings["newer"] = "más recientes"; App::$strings["No connections"] = "Sin conexiones"; App::$strings["View all %s connections"] = "Ver todas las %s conexiones"; App::$strings["poke"] = "un toque"; +App::$strings["poked"] = "ha dado un toque a"; App::$strings["ping"] = "un \"ping\""; App::$strings["pinged"] = "ha enviado un \"ping\" a"; App::$strings["prod"] = "una incitación "; @@ -1920,189 +1684,33 @@ App::$strings["February"] = "febrero"; App::$strings["March"] = "marzo"; App::$strings["April"] = "abril"; App::$strings["May"] = "mayo"; -App::$strings["June"] = "junio"; -App::$strings["July"] = "julio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "septiembre"; -App::$strings["October"] = "octubre"; -App::$strings["November"] = "noviembre"; -App::$strings["December"] = "diciembre"; -App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; -App::$strings["unknown"] = "desconocido"; -App::$strings["remove category"] = "eliminar categoría"; -App::$strings["remove from file"] = "eliminar del fichero"; -App::$strings["default"] = "por defecto"; -App::$strings["Page layout"] = "Plantilla de la página"; -App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; -App::$strings["Page content type"] = "Tipo de contenido de la página"; -App::$strings["Select an alternate language"] = "Seleccionar un idioma alternativo"; -App::$strings["activity"] = "la actividad"; -App::$strings["Design Tools"] = "Herramientas de diseño web"; -App::$strings["Pages"] = "Páginas"; -App::$strings["Logged out."] = "Desconectado/a."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Can view my normal stream and posts"] = "Pueden verse mi actividad y publicaciones normales"; -App::$strings["Can view my webpages"] = "Pueden verse mis páginas web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Pueden crearse entradas en mi página de inicio del canal (“muro”)"; -App::$strings["Can like/dislike stuff"] = "Puede marcarse contenido como me gusta/no me gusta"; -App::$strings["Profiles and things other than posts/comments"] = "Perfiles y otras cosas aparte de publicaciones/comentarios"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención"; -App::$strings["Advanced - useful for creating group forum channels"] = "Avanzado - útil para crear canales de foros de discusión o grupos"; -App::$strings["Can chat with me (when available)"] = "Se puede charlar conmigo (cuando esté disponible)"; -App::$strings["Can write to my file storage and photos"] = "Puede escribirse en mi repositorio de ficheros y fotos"; -App::$strings["Can edit my webpages"] = "Pueden editarse mis páginas web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Algo avanzado - muy útil en comunidades abiertas"; -App::$strings["Can administer my channel resources"] = "Pueden administrarse mis recursos del canal"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo."; -App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Content Expiration"] = "Caducidad del contenido"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -App::$strings["Advanced Profiles"] = "Perfiles avanzados"; -App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; -App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; -App::$strings["Web Pages"] = "Páginas web"; -App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; -App::$strings["Hide Rating"] = "Ocultar las valoraciones"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; -App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; -App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; -App::$strings["Photo Location"] = "Ubicación de las fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; -App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; -App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; -App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; -App::$strings["Expert Mode"] = "Modo de experto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; -App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; -App::$strings["Large Photos"] = "Fotos de gran tamaño"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; -App::$strings["Even More Encryption"] = "Más cifrado todavía"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; -App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; -App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; -App::$strings["Delayed Posting"] = "Publicación aplazada"; -App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; -App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; -App::$strings["Search by Date"] = "Buscar por fecha"; -App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; -App::$strings["Privacy Groups"] = "Grupos de canales"; -App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; -App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; -App::$strings["Network Personal Tab"] = "Actividad personal"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; -App::$strings["Network New Tab"] = "Contenido nuevo"; -App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; -App::$strings["Affinity Tool"] = "Herramienta de afinidad"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; -App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; -App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Categorías de entradas"; -App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; -App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; -App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; -App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; -App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -App::$strings["Star Posts"] = "Entradas destacadas"; -App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -App::$strings["Tag Cloud"] = "Nube de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; -App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; -App::$strings["edit"] = "editar"; -App::$strings["Edit group"] = "Editar grupo"; -App::$strings["Add privacy group"] = "Añadir un grupo de canales"; -App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; -App::$strings["add"] = "añadir"; -App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; -App::$strings["Starts:"] = "Comienza:"; -App::$strings["Finishes:"] = "Finaliza:"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["Not specified"] = "Sin especificar"; -App::$strings["Needs Action"] = "Necesita de una intervención"; -App::$strings["Completed"] = "Completado/a"; -App::$strings["In Process"] = "En proceso"; -App::$strings["Cancelled"] = "Cancelado/a"; -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["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."; -App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; -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["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["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la dirección del canal."; -App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["Item was not found."] = "Elemento no encontrado."; -App::$strings["No source file."] = "Ningún fichero de origen"; -App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; -App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -App::$strings["Path not available."] = "Ruta no disponible."; -App::$strings["Empty pathname"] = "Ruta vacía"; -App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; -App::$strings["Path not found."] = "Ruta no encontrada"; -App::$strings["mkdir failed."] = "mkdir ha fallado."; -App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -App::$strings["Empty path"] = "Ruta vacía"; -App::$strings["Image/photo"] = "Imagen/foto"; -App::$strings["Encrypted content"] = "Contenido cifrado"; -App::$strings["Install %s element: "] = "Instalar el elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -App::$strings["$1 wrote:"] = "$1 escribió:"; -App::$strings["(Unknown)"] = "(Desconocido)"; -App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -App::$strings["Visible to you only."] = "Visible sólo para usted."; -App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que esté autenticado."; -App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; -App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; -App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; -App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -App::$strings["profile photo"] = "foto del perfil"; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +App::$strings["June"] = "junio"; +App::$strings["July"] = "julio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "septiembre"; +App::$strings["October"] = "octubre"; +App::$strings["November"] = "noviembre"; +App::$strings["December"] = "diciembre"; +App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; +App::$strings["unknown"] = "desconocido"; +App::$strings["remove category"] = "eliminar el tema"; +App::$strings["remove from file"] = "eliminar del fichero"; +App::$strings["default"] = "por defecto"; +App::$strings["Page layout"] = "Plantilla de la página"; +App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; +App::$strings["Page content type"] = "Tipo de contenido de la página"; +App::$strings["Select an alternate language"] = "Seleccionar un idioma alternativo"; +App::$strings["activity"] = "la actividad"; +App::$strings["Design Tools"] = "Herramientas de diseño web"; +App::$strings["Pages"] = "Páginas"; +App::$strings["Import website..."] = "Importar un sitio web..."; +App::$strings["Select folder to import"] = "Seleccionar la carpeta que se va a importar"; +App::$strings["Import from a zipped folder:"] = "Importar desde una carpeta comprimida: "; +App::$strings["Import from cloud files:"] = "Importar desde los ficheros en la nube: "; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/canal/ruta/a la/carpeta"; +App::$strings["Enter path to website files"] = "Ruta a los ficheros del sitio web"; +App::$strings["Select folder"] = "Seleccionar la carpeta"; +App::$strings["Categories"] = "Temas"; App::$strings["System"] = "Sistema"; App::$strings["New App"] = "Nueva aplicación (app)"; App::$strings["Suggestions"] = "Sugerencias"; @@ -2113,6 +1721,9 @@ App::$strings["Enter channel address"] = "Dirección del canal"; App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; App::$strings["Notes"] = "Notas"; App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; +App::$strings["add"] = "añadir"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; App::$strings["Everything"] = "Todo"; App::$strings["Archives"] = "Hemeroteca"; App::$strings["Refresh"] = "Recargar"; @@ -2127,6 +1738,9 @@ App::$strings["Connected apps"] = "Aplicaciones (apps) conectadas"; App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; App::$strings["Private Mail Menu"] = "Menú de correo privado"; App::$strings["Combined View"] = "Vista combinada"; +App::$strings["Inbox"] = "Bandeja de entrada"; +App::$strings["Outbox"] = "Bandeja de salida"; +App::$strings["New Message"] = "Nuevo mensaje"; App::$strings["Conversations"] = "Conversaciones"; App::$strings["Received Messages"] = "Mensajes recibidos"; App::$strings["Sent Messages"] = "Enviar mensajes"; @@ -2135,6 +1749,7 @@ App::$strings["Delete conversation"] = "Eliminar conversación"; App::$strings["Events Tools"] = "Gestión de eventos"; App::$strings["Export Calendar"] = "Exportar el calendario"; App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Chatrooms"] = "Salas de chat"; App::$strings["Overview"] = "Resumen"; App::$strings["Chat Members"] = "Miembros del chat"; App::$strings["Wiki List"] = "Lista de wikis"; @@ -2156,12 +1771,273 @@ App::$strings["For Developers"] = "Para los desarrolladores"; App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; App::$strings["Inspect queue"] = "Examinar la cola"; App::$strings["DB updates"] = "Actualizaciones de la base de datos"; +App::$strings["Admin"] = "Administrador"; App::$strings["Plugin Features"] = "Extensiones"; -App::$strings[" and "] = " y "; -App::$strings["public profile"] = "el perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["New window"] = "Nueva ventana"; +App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; +App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; +App::$strings["Custom selection"] = "Selección personalizada"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; +App::$strings["Show"] = "Mostrar"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje."; +App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +App::$strings["Empty name"] = "Nombre vacío"; +App::$strings["Name too long"] = "Nombre demasiado largo"; +App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; +App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; +App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Like this channel"] = "Me gusta este canal"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Cumpleaños:"; +App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +App::$strings["Tags:"] = "Etiquetas:"; +App::$strings["Political Views:"] = "Posición política:"; +App::$strings["Religion:"] = "Religión:"; +App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; +App::$strings["Likes:"] = "Me gusta:"; +App::$strings["Dislikes:"] = "No me gusta:"; +App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +App::$strings["My other channels:"] = "Mis otros canales:"; +App::$strings["Musical interests:"] = "Preferencias musicales:"; +App::$strings["Books, literature:"] = "Libros, literatura:"; +App::$strings["Television:"] = "Televisión:"; +App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; +App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; +App::$strings["Work/employment:"] = "Trabajo:"; +App::$strings["School/education:"] = "Estudios:"; +App::$strings["Like this thing"] = "Me gusta esto"; +App::$strings["Birthday"] = "Cumpleaños"; +App::$strings["Age: "] = "Edad:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +App::$strings["never"] = "nunca"; +App::$strings["less than a second ago"] = "hace un instante"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "año", + 1 => "años", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "meses", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semana", + 1 => "semanas", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "día", + 1 => "días", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "horas", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minutos", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segundo", + 1 => "segundos", +); +App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +App::$strings["Frequently"] = "Frecuentemente"; +App::$strings["Hourly"] = "Cada hora"; +App::$strings["Twice daily"] = "Dos veces al día"; +App::$strings["Daily"] = "Diariamente"; +App::$strings["Weekly"] = "Semanalmente"; +App::$strings["Monthly"] = "Mensualmente"; +App::$strings["Male"] = "Hombre"; +App::$strings["Female"] = "Mujer"; +App::$strings["Currently Male"] = "Actualmente hombre"; +App::$strings["Currently Female"] = "Actualmente mujer"; +App::$strings["Mostly Male"] = "Generalmente hombre"; +App::$strings["Mostly Female"] = "Generalmente mujer"; +App::$strings["Transgender"] = "Transgénero"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutral"; +App::$strings["Non-specific"] = "No especificado"; +App::$strings["Undecided"] = "Indeciso/a"; +App::$strings["Males"] = "Hombres"; +App::$strings["Females"] = "Mujeres"; +App::$strings["Gay"] = "Homosexual"; +App::$strings["Lesbian"] = "Lesbiana"; +App::$strings["No Preference"] = "Sin preferencias"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Casto/a"; +App::$strings["Virgin"] = "Virgen"; +App::$strings["Deviant"] = "Fuera de lo común"; +App::$strings["Fetish"] = "Fetichista"; +App::$strings["Oodles"] = "Orgías"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Soltero/a"; +App::$strings["Lonely"] = "Solo/a"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No disponible"; +App::$strings["Has crush"] = "Enamorado/a"; +App::$strings["Infatuated"] = "Apasionado/a"; +App::$strings["Dating"] = "Saliendo con alguien"; +App::$strings["Unfaithful"] = "Infiel"; +App::$strings["Sex Addict"] = "Con adicción al sexo"; +App::$strings["Friends/Benefits"] = "Amigos con algo extra"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Prometido/a"; +App::$strings["Married"] = "Casado/a"; +App::$strings["Imaginarily married"] = "Casado/a en sueños"; +App::$strings["Partners"] = "Pareja"; +App::$strings["Cohabiting"] = "Cohabitando"; +App::$strings["Common law"] = "Matrimonio tradicional"; +App::$strings["Happy"] = "Felíz"; +App::$strings["Not looking"] = "No estoy buscando"; +App::$strings["Swinger"] = "Libertino"; +App::$strings["Betrayed"] = "Engañado/a"; +App::$strings["Separated"] = "Separado/a"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciado/a"; +App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; +App::$strings["Widowed"] = "Viudo/a"; +App::$strings["Uncertain"] = "Indeterminado"; +App::$strings["It's complicated"] = "Es complicado"; +App::$strings["Don't care"] = "No me importa"; +App::$strings["Ask me"] = "Pregúnteme"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede el límite de %lu bytes del sitio"; +App::$strings["Image file is empty."] = "El fichero de imagen está vacío. "; +App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; +App::$strings["a new photo"] = "una nueva foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Upload New Photos"] = "Subir nuevas fotos"; +App::$strings["guest:"] = "invitado: "; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado"; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; +App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; +App::$strings["Categories:"] = "Temas:"; +App::$strings["Filed under:"] = "Archivado bajo:"; +App::$strings["View in context"] = "Mostrar en su contexto"; +App::$strings["remove"] = "eliminar"; +App::$strings["Loading..."] = "Cargando..."; +App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; +App::$strings["View Source"] = "Ver el código fuente de la entrada"; +App::$strings["Follow Thread"] = "Seguir este hilo"; +App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; +App::$strings["Activity/Posts"] = "Actividad y publicaciones"; +App::$strings["Edit Connection"] = "Editar conexión"; +App::$strings["Message"] = "Mensaje"; +App::$strings["%s likes this."] = "A %s le gusta esto."; +App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; +App::$strings["%2\$d people like this."] = array( + 0 => "a %2\$d personas le gusta esto.", + 1 => "A %2\$d personas les gusta esto.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "a %2\$d personas no les gusta esto.", + 1 => "A %2\$d personas no les gusta esto.", +); +App::$strings["and"] = "y"; +App::$strings[", and %d other people"] = array( + 0 => ", y %d persona más", + 1 => ", y %d personas más", +); +App::$strings["%s like this."] = "A %s le gusta esto."; +App::$strings["%s don't like this."] = "A %s no le gusta esto."; +App::$strings["Set your location"] = "Establecer su ubicación"; +App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; +App::$strings["Tag term:"] = "Término de la etiqueta:"; +App::$strings["Where are you right now?"] = "¿Donde está ahora?"; +App::$strings["Comments enabled"] = "Comentarios habilitados"; +App::$strings["Comments disabled"] = "Comentarios deshabilitados"; +App::$strings["Page link name"] = "Nombre del enlace de la página"; +App::$strings["Post as"] = "Publicar como"; +App::$strings["Toggle voting"] = "Cambiar votación"; +App::$strings["Disable comments"] = "Dehabilitar los comentarios"; +App::$strings["Toggle comments"] = "Activar o desactivar los comentarios"; +App::$strings["Categories (optional, comma-separated list)"] = "Temas (opcional, lista separada por comas)"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; +App::$strings["Discover"] = "Descubrir"; +App::$strings["Imported public streams"] = "Contenidos públicos importados"; +App::$strings["Commented Order"] = "Comentarios recientes"; +App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; +App::$strings["Posted Order"] = "Publicaciones recientes"; +App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; +App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; +App::$strings["Starred"] = "Preferidas"; +App::$strings["Favourite Posts"] = "Publicaciones favoritas"; +App::$strings["Spam"] = "Correo basura"; +App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; +App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; +App::$strings["About"] = "Mi perfil"; +App::$strings["Profile Details"] = "Detalles del perfil"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["Manage Webpages"] = "Administrar páginas web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participaré", + 1 => "Participaré", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "No participaré", + 1 => "No participaré", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso/a", + 1 => "Indecisos/as", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "De acuerdo", + 1 => "De acuerdo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "En desacuerdo", + 1 => "En desacuerdo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "se abstiene", + 1 => "Se abstienen", +); +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; +App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; +App::$strings["edit"] = "editar"; +App::$strings["Privacy Groups"] = "Grupos de canales"; +App::$strings["Edit group"] = "Editar grupo"; +App::$strings["Add privacy group"] = "Añadir un grupo de canales"; +App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; +App::$strings["New Page"] = "Nueva página"; +App::$strings["Title"] = "Título"; +App::$strings["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; +App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; +App::$strings["Starts:"] = "Comienza:"; +App::$strings["Finishes:"] = "Finaliza:"; +App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +App::$strings["Not specified"] = "Sin especificar"; +App::$strings["Needs Action"] = "Necesita de una intervención"; +App::$strings["Completed"] = "Completado/a"; +App::$strings["In Process"] = "En proceso"; +App::$strings["Cancelled"] = "Cancelado/a"; App::$strings["Attachments:"] = "Ficheros adjuntos:"; App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; App::$strings["Delete this item?"] = "¿Borrar este elemento?"; @@ -2222,6 +2098,140 @@ App::$strings["__ctx:calendar__ month"] = "mes"; 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["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +App::$strings["Channel location missing."] = "Falta la dirección del canal."; +App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["No source file."] = "Ningún fichero de origen"; +App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +App::$strings["Path not available."] = "Ruta no disponible."; +App::$strings["Empty pathname"] = "Ruta vacía"; +App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +App::$strings["Path not found."] = "Ruta no encontrada"; +App::$strings["mkdir failed."] = "mkdir ha fallado."; +App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +App::$strings["Empty path"] = "Ruta vacía"; +App::$strings["Logged out."] = "Desconectado/a."; +App::$strings["Failed authentication"] = "Autenticación fallida."; +App::$strings["Login failed."] = "El acceso ha fallado."; +App::$strings[" and "] = " y "; +App::$strings["public profile"] = "el perfil público"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["Invalid data packet"] = "Paquete de datos no válido"; +App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; +App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; +App::$strings["invalid target signature"] = "La firma recibida no es válida"; +App::$strings["General Features"] = "Funcionalidades básicas"; +App::$strings["Content Expiration"] = "Caducidad del contenido"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; +App::$strings["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Advanced Profiles"] = "Perfiles avanzados"; +App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; +App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; +App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; +App::$strings["Web Pages"] = "Páginas web"; +App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; +App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su canal"; +App::$strings["Private Notes"] = "Notas privadas"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; +App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; +App::$strings["Photo Location"] = "Ubicación de las fotos"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; +App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; +App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; +App::$strings["Expert Mode"] = "Modo de experto"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; +App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; +App::$strings["Large Photos"] = "Fotos de gran tamaño"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; +App::$strings["Even More Encryption"] = "Más cifrado todavía"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; +App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; +App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; +App::$strings["Disable Comments"] = "Deshabilitar comentarios"; +App::$strings["Provide the option to disable comments for a post"] = "Proporcionar la opción de desactivar los comentarios de una publicación"; +App::$strings["Delayed Posting"] = "Publicación aplazada"; +App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; +App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; +App::$strings["Search by Date"] = "Buscar por fecha"; +App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; +App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; +App::$strings["Network Personal Tab"] = "Actividad personal"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; +App::$strings["Network New Tab"] = "Contenido nuevo"; +App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; +App::$strings["Affinity Tool"] = "Herramienta de afinidad"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; +App::$strings["Connection Filtering"] = "Filtrado de conexiones"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; +App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; +App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; +App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +App::$strings["Post Categories"] = "Temas de las entradas"; +App::$strings["Add categories to your posts"] = "Añadir temas a sus publicaciones"; +App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\""; +App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas"; +App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; +App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +App::$strings["Star Posts"] = "Entradas destacadas"; +App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; +App::$strings["Tag Cloud"] = "Nube de etiquetas"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; +App::$strings["Premium Channel"] = "Canal premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +App::$strings["Tags"] = "Etiquetas"; +App::$strings["Keywords"] = "Palabras clave"; +App::$strings["have"] = "tener"; +App::$strings["has"] = "tiene"; +App::$strings["want"] = "quiero"; +App::$strings["wants"] = "quiere"; +App::$strings["likes"] = "gusta de"; +App::$strings["dislikes"] = "no gusta de"; +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["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."; +App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; +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["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["Image/photo"] = "Imagen/foto"; +App::$strings["Encrypted content"] = "Contenido cifrado"; +App::$strings["Install %s element: "] = "Instalar el elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; +App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["$1 wrote:"] = "$1 escribió:"; App::$strings["%d invitation available"] = array( 0 => "%d invitación pendiente", 1 => "%d invitaciones disponibles", @@ -2246,57 +2256,51 @@ App::$strings["No recipient provided."] = "No se ha especificado ningún destina App::$strings["[no subject]"] = "[sin asunto]"; App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; -App::$strings["Who can see this?"] = "¿Quién puede ver esto?"; -App::$strings["Custom selection"] = "Selección personalizada"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Seleccione \"Mostrar\" para permitir la visualización. La opción \"No mostrar\" le permite anular y limitar el alcance de \"Mostrar\"."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Los permisos de la entrada %s no se pueden cambiar %s una vez que se ha compartido.
    Estos permisos establecen quién está autorizado para ver el mensaje."; -App::$strings["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "año", - 1 => "años", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "meses", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semana", - 1 => "semanas", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "día", - 1 => "días", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "horas", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minutos", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segundo", - 1 => "segundos", -); -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; -App::$strings["Public Timeline"] = "Cronología pública"; -App::$strings["Invalid data packet"] = "Paquete de datos no válido"; -App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; -App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; -App::$strings["invalid target signature"] = "La firma recibida no es válida"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado."; +App::$strings["Channel clone failed. Import failed."] = "La clonación del canal no ha salido bien. La importación ha fallado."; +App::$strings["Logout"] = "Finalizar sesión"; +App::$strings["End this session"] = "Finalizar esta sesión"; +App::$strings["Home"] = "Inicio"; +App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Your photos"] = "Sus fotos"; +App::$strings["Your files"] = "Sus ficheros"; +App::$strings["Your chatrooms"] = "Sus salas de chat"; +App::$strings["Your bookmarks"] = "Sus marcadores"; +App::$strings["Your webpages"] = "Sus páginas web"; +App::$strings["Your wiki"] = "Su wiki"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +App::$strings["Remote authentication"] = "Acceder desde su servidor"; +App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +App::$strings["Home Page"] = "Página de inicio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +App::$strings["Channel Directory"] = "Directorio de canales"; +App::$strings["Your grid"] = "Mi red"; +App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Channel home"] = "Mi canal"; +App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +App::$strings["Notices"] = "Avisos"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["See all notifications"] = "Ver todas las notificaciones"; +App::$strings["Private mail"] = "Correo privado"; +App::$strings["See all private messages"] = "Ver todas los mensajes privados"; +App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +App::$strings["Event Calendar"] = "Calendario de eventos"; +App::$strings["See all events"] = "Ver todos los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; +App::$strings["Please wait..."] = "Espere por favor…"; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; -App::$strings["Select scheme"] = "Elegir un esquema"; App::$strings["Narrow navbar"] = "Estrechar la barra de navegación"; App::$strings["Navigation bar background color"] = "Color de fondo de la barra de navegación"; App::$strings["Navigation bar gradient top color"] = "Color superior del gradiente de la barra de navegación"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 9219a1c06..b9b6dd2e5 100644 --- a/view/nl/hmessages.po +++ b/view/nl/hmessages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-10 13:57+0000\n" +"POT-Creation-Date: 2016-08-26 00:02-0700\n" +"PO-Revision-Date: 2016-08-31 11:08+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -18,11 +18,157 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:939 +msgid "Social Networking" +msgstr "Sociaal netwerk" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:939 +msgid "Social - Mostly Public" +msgstr "Sociaal - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:939 +msgid "Social - Restricted" +msgstr "Sociaal - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:939 +msgid "Social - Private" +msgstr "Sociaal - Verborgen kanaal" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:940 +msgid "Community Forum" +msgstr "Groepsforum" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:940 +msgid "Forum - Mostly Public" +msgstr "Forum - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:940 +msgid "Forum - Restricted" +msgstr "Forum - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:940 +msgid "Forum - Private" +msgstr "Forum - Verborgen kanaal" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:941 +msgid "Feed Republish" +msgstr "Feed herpubliceren" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:941 +msgid "Feed - Mostly Public" +msgstr "Feed - Vrijwel alles openbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:941 +msgid "Feed - Restricted" +msgstr "Feed - Beperkt zichtbaar" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:942 +msgid "Special Purpose" +msgstr "Speciaal doel" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:942 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciaal - Beroemdheid/alleen volgen" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:942 +msgid "Special - Group Repository" +msgstr "Speciaal - Groepsopslag" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../include/permissions.php:943 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 +msgid "Other" +msgstr "Anders" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:943 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "Kan mijn kanaal en berichten bekijken" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "Kan de webpagina's van mijn kanaal bekijken" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "Kan wegpagina's van mijn kanaal aanmaken en bewerken" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "Kan een bericht in mijn kanaal plaatsen" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "Kan profielen en profieldingen leuk en niet leuk vinden " + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "Kan met mij chatten" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "Kan mijn kanaal beheren" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "omhoog" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 msgid "Collection" msgstr "map" @@ -46,16 +192,17 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Module/Photos.php:1249 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 +#: ../../include/conversation.php:1033 msgid "Unknown" msgstr "Onbekend" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 +#: ../../include/nav.php:95 msgid "Files" msgstr "Bestanden" @@ -67,24 +214,24 @@ msgstr "Totaal" msgid "Shared" msgstr "Gedeeld" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 +#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" msgstr "Aanmaken" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 msgid "Upload" msgstr "Uploaden" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 -#: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 +#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Naam" @@ -93,7 +240,7 @@ msgid "Type" msgstr "Type" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 msgid "Size" msgstr "Grootte" @@ -102,127 +249,121 @@ msgstr "Grootte" msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 +#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/menu.php:113 msgid "Edit" msgstr "Bewerken" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Editlayout.php:137 +#: ../../Zotlabs/Module/Editwebpage.php:170 +#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 +#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../include/conversation.php:660 msgid "Delete" msgstr "Verwijderen" -#: ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Storage/Browser.php:301 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Je gebruikt %1$s van de beschikbare bestandsopslag." -#: ../../Zotlabs/Storage/Browser.php:290 +#: ../../Zotlabs/Storage/Browser.php:306 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Je gebruikt %1$s van totaal %2$s beschikbare bestandsopslag. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:302 +#: ../../Zotlabs/Storage/Browser.php:317 msgid "WARNING:" msgstr "WAARSCHUWING:" -#: ../../Zotlabs/Storage/Browser.php:305 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Create new folder" msgstr "Nieuwe map aanmaken" -#: ../../Zotlabs/Storage/Browser.php:307 +#: ../../Zotlabs/Storage/Browser.php:324 msgid "Upload file" msgstr "Bestand uploaden" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Storage/Browser.php:337 +msgid "Drop files here to immediately upload" +msgstr "Sleep bestanden hierheen om ze onmiddelijk te uploaden" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 +#: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 +#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 #: ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/attach.php:142 ../../include/attach.php:190 +#: ../../include/attach.php:253 ../../include/attach.php:267 +#: ../../include/attach.php:274 ../../include/attach.php:339 +#: ../../include/attach.php:353 ../../include/attach.php:360 +#: ../../include/attach.php:440 ../../include/attach.php:902 +#: ../../include/attach.php:973 ../../include/attach.php:1125 msgid "Permission denied." msgstr "Toegang geweigerd." @@ -230,31 +371,40 @@ msgstr "Toegang geweigerd." msgid "Not Found" msgstr "Niet gevonden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Block.php:79 msgid "Page not found." msgstr "Pagina niet gevonden." +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:384 +msgid "Permission denied" +msgstr "Toegang geweigerd" + #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 +#: ../../Zotlabs/Zot/Auth.php:246 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "Opgevraagd profiel is niet beschikbaar" @@ -262,1296 +412,1347 @@ msgstr "Opgevraagd profiel is niet beschikbaar" msgid "Some blurb about what to do when you're new here" msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Bloknaam" - -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Blokken" +#: ../../Zotlabs/Module/Chatsvc.php:117 +msgid "Away" +msgstr "Afwezig" -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Bloktitel" +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "Online" -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Aangemaakt" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Ongeldig bericht" -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Bewerkt" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "geen resultaten" -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Delen" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "kanaalsync verwerkt" -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Weergeven" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in wachtrij" -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "verstuurd" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permissies niet toegestaan" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "geaccepteerd om afgeleverd te worden" -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "geüpdatet" -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Originele locatie" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "update genegeerd" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Gebeurtenis bewerken" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "toegang geweigerd" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Gebeurtenis aanmaken" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Vorige" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Volgende" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exporteren" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "privébericht afgeleverd" -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Importeren" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Afleveringsrapport voor %1$s" -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opties" -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Vandaag" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Opnieuw afleveren" -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Berichten en reacties" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Alleen berichten" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "Nee" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Beoordeling" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ik ben online" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Website:" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Vul een URL in:" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Tekst versleutelen" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Weblink invoegen" +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 +#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Pdledit.php:66 +#: ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 +#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 +#: ../../Zotlabs/Module/Settings.php:935 +#: ../../Zotlabs/Module/Settings.php:1040 +#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 +#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 +#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Opslaan" -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Functie uitgeschakeld." +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 +msgid "Public Hubs" +msgstr "Openbare hubs" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Naam chatkanaal" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Aantal minuten voordat chatberichten worden verwijderd" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Toegangs-
     type" -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Permissies" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Registratie-
     beleid" -#: ../../Zotlabs/Module/Chat.php:246 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Stats" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Geen chatkanalen beschikbaar" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Nieuwe aanmaken" +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Beoordelingen" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verloopt na" +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Beoordeel" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Locatie" -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" -msgstr "Afwezig" +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 +#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Weergeven" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Ga verder" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registreer op een andere hub." -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +#: ../../Zotlabs/Module/Register.php:204 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Jouw e-mailadres" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" -#: ../../Zotlabs/Module/Connedit.php:227 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" -#: ../../Zotlabs/Module/Connedit.php:229 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Name or caption" +msgstr "Naam" -#: ../../Zotlabs/Module/Connedit.php:276 -msgid "is now connected to" -msgstr "is nu verbonden met" +#: ../../Zotlabs/Module/Register.php:231 +#: ../../Zotlabs/Module/New_channel.php:128 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "No" -msgstr "Nee" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "Yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Register.php:233 +#: ../../Zotlabs/Module/New_channel.php:130 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" -#: ../../Zotlabs/Module/Connedit.php:411 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Channel role and privacy" +msgstr "Kanaaltype en privacy" -#: ../../Zotlabs/Module/Connedit.php:425 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Select a channel role with your privacy requirements." +msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." +#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/New_channel.php:132 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../Zotlabs/Module/Connedit.php:503 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "Nee" -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Connedit.php:522 -#, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" +#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 +msgid "Registration" +msgstr "Registratie" -#: ../../Zotlabs/Module/Connedit.php:526 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" +#: ../../Zotlabs/Module/Register.php:253 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../Zotlabs/Module/Connedit.php:529 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" +#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registreren" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Recent Activity" -msgstr "Recente activiteit/berichten" +#: ../../Zotlabs/Module/Register.php:266 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder." -#: ../../Zotlabs/Module/Connedit.php:536 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Deblokkeren" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 -msgid "Block" -msgstr "Blokkeren" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" -#: ../../Zotlabs/Module/Connedit.php:543 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." -#: ../../Zotlabs/Module/Connedit.php:544 -msgid "This connection is blocked!" -msgstr "Deze connectie is geblokkeerd!" +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../Zotlabs/Module/Connedit.php:548 -msgid "Unignore" -msgstr "Niet meer negeren" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1665 ../../include/nav.php:94 +msgid "Photos" +msgstr "Foto's" -#: ../../Zotlabs/Module/Connedit.php:548 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Negeren" +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 +#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Connedit.php:551 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ongeldig item." -#: ../../Zotlabs/Module/Connedit.php:552 -msgid "This connection is ignored!" -msgstr "Deze connectie wordt genegeerd!" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Unarchive" -msgstr "Niet meer archiveren" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Archive" -msgstr "Archiveren" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../Zotlabs/Module/Connedit.php:559 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" -#: ../../Zotlabs/Module/Connedit.php:560 -msgid "This connection is archived!" -msgstr "Deze connectie is gearchiveerd!" +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 +#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Opslaan" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Unhide" -msgstr "Niet meer verbergen" +#: ../../Zotlabs/Module/Network.php:94 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Hide" -msgstr "Verbergen" +#: ../../Zotlabs/Module/Network.php:134 +msgid "No such channel" +msgstr "Niet zo'n kanaal" -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" +#: ../../Zotlabs/Module/Network.php:139 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "This connection is hidden!" -msgstr "Deze connectie is verborgen!" +#: ../../Zotlabs/Module/Network.php:151 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" +#: ../../Zotlabs/Module/Network.php:217 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 -msgid "Me" -msgstr "Ik" +#: ../../Zotlabs/Module/Network.php:226 +msgid "Privacy group: " +msgstr "Privacygroep: " -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familie" +#: ../../Zotlabs/Module/Network.php:252 +msgid "Invalid connection." +msgstr "Ongeldige connectie." -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 -msgid "Friends" -msgstr "Vrienden" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Geblokkeerd" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Genegeerd" + +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Verborgen" + +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Gearchiveerd" + +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Nieuw" -#: ../../Zotlabs/Module/Connedit.php:594 #: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 msgid "All" msgstr "Alles" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" -#: ../../Zotlabs/Module/Connedit.php:659 -msgid "Set Affinity" -msgstr "Verwantschapsfilter instellen" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Connedit.php:662 -msgid "Set Profile" -msgstr "Profiel instellen" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Toon alle connecties" -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Set Affinity & Profile" -msgstr "Verwantschapsfilter en profiel instellen" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "none" -msgstr "geen" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Connection requests will be approved without your interaction" -msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "This connection's primary address is" -msgstr "Het primaire kanaaladres van deze connectie is" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Connectie bewerken" -#: ../../Zotlabs/Module/Connedit.php:706 -msgid "Available locations:" -msgstr "Beschikbare locaties:" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Connectie verwijderen" -#: ../../Zotlabs/Module/Connedit.php:710 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaaladres" -#: ../../Zotlabs/Module/Connedit.php:711 -msgid "Connection Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Netwerk" -#: ../../Zotlabs/Module/Connedit.php:713 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" +#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 +msgid "Status" +msgstr "Status" -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Beoordeling" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Verbonden" -#: ../../Zotlabs/Module/Connedit.php:715 -msgid "Slide to adjust your rating" -msgstr "Gebruik de schuif om je beoordeling te geven" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Connectie accepteren" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 -msgid "Optionally explain your rating" -msgstr "Verklaar jouw beoordeling (niet verplicht)" +#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Admin.php:1050 +msgid "Approve" +msgstr "Goedkeuren" -#: ../../Zotlabs/Module/Connedit.php:718 -msgid "Custom Filter" -msgstr "Berichtenfilter" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Connectie negeren" -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Only import posts with this text" -msgstr "Importeer alleen berichten met deze tekst" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Negeren" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Recente activiteit" -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "Do not import posts with this text" -msgstr "Importeer geen berichten met deze tekst" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:190 +msgid "Connections" +msgstr "Connecties" -#: ../../Zotlabs/Module/Connedit.php:722 -msgid "This information is public!" -msgstr "Deze informatie is openbaar!" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 +#: ../../include/text.php:937 ../../include/acl_selectors.php:174 +#: ../../include/nav.php:169 +msgid "Search" +msgstr "Zoeken" -#: ../../Zotlabs/Module/Connedit.php:727 -msgid "Connection Pending Approval" -msgstr "Connectie moet nog geaccepteerd worden" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" -#: ../../Zotlabs/Module/Connedit.php:730 -msgid "inherited" -msgstr "geërfd" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Connecties zoeken" -#: ../../Zotlabs/Module/Connedit.php:732 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Vinden" -#: ../../Zotlabs/Module/Connedit.php:734 -msgid "Their Settings" -msgstr "Hun instellingen" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " -#: ../../Zotlabs/Module/Connedit.php:735 -msgid "My Settings" -msgstr "Mijn instellingen" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Omslagfoto's" -#: ../../Zotlabs/Module/Connedit.php:737 -msgid "Individual Permissions" -msgstr "Individuele permissies" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." -#: ../../Zotlabs/Module/Connedit.php:738 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" -#: ../../Zotlabs/Module/Connedit.php:740 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 +msgid "female" +msgstr "vrouw" -#: ../../Zotlabs/Module/Directory.php:243 +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d beoordeling" -msgstr[1] "%d beoordelingen" +msgid "%1$s updated her %2$s" +msgstr "%1$s heeft haar %2$s bijgewerkt" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Geslacht:" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 +msgid "male" +msgstr "man" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status: " +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s heeft zijn %2$s bijgewerkt" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage: " +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "De %2$s van %1$s is bijgewerkt" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "omslagfoto" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Plaats:" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Omschrijving:" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Bestand uploaden:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 -msgid "About:" -msgstr "Over:" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Omslagfoto uploaden" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 -msgid "Connect" -msgstr "Verbinden" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Settings.php:1180 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "of" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Openbaar forum:" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "sla deze stap over" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Trefwoorden: " +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Niet voorstellen" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Gemeenschappelijke connecties:" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Volledige kanalengids" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Klaar met bewerken" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Lokale kanalengids" +#: ../../Zotlabs/Module/Setup.php:183 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Hub - Setup" -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Vinden" +#: ../../Zotlabs/Module/Setup.php:187 +msgid "Could not connect to database." +msgstr "Could not connect to database." -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Gezocht naar:" +#: ../../Zotlabs/Module/Setup.php:191 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../Zotlabs/Module/Setup.php:198 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "volgende pagina" +#: ../../Zotlabs/Module/Setup.php:203 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "vorige pagina" +#: ../../Zotlabs/Module/Setup.php:207 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Sorteeropties" +#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 +#: ../../Zotlabs/Module/Setup.php:733 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetisch" +#: ../../Zotlabs/Module/Setup.php:267 +msgid "System check" +msgstr "System check" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" +#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Volgende" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" +#: ../../Zotlabs/Module/Setup.php:272 +msgid "Check again" +msgstr "Check again" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database connection" +msgstr "Database connection" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." +#: ../../Zotlabs/Module/Setup.php:295 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "In order to install $Projectname we need to know how to connect to your database." -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 -msgid "Item not found" -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Titel (optioneel)" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Database Server Name" +msgstr "Database Server Name" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../Zotlabs/Module/Setup.php:301 +msgid "Default is 127.0.0.1" +msgstr "Default is 127.0.0.1" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Port" +msgstr "Database Port" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Login Name" +msgstr "Database Login Name" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Geblokkeerd" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Password" +msgstr "Database Login Password" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Genegeerd" - -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Verborgen" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Name" +msgstr "Database Name" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Gearchiveerd" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Type" +msgstr "Database Type" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 -msgid "New" -msgstr "Nieuw" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "Site administrator email address" +msgstr "Hub administrator email address" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Website URL" +msgstr "Hub URL" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Toon alle connecties" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" +#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 +msgid "Basic/Minimal Social Networking" +msgstr "Basic/eenvoudig sociaal netwerk" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 +msgid "Standard Configuration (default)" +msgstr "Standaard (standaard)" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 +msgid "Professional" +msgstr "Professioneel " -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" +#: ../../Zotlabs/Module/Setup.php:343 +msgid "Site settings" +msgstr "Hub settings" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Moet nog geaccepteerd worden" +#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 +msgid "Server Configuration/Role" +msgstr "Configuratietype hub" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Setup.php:399 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP version 5.5 or greater is required." -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Connectie bewerken" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version" +msgstr "PHP version" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Connectie verwijderen" +#: ../../Zotlabs/Module/Setup.php:415 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Setup.php:416 +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 "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." -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Netwerk" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "PHP executable path" +msgstr "PHP executable path" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Status" +#: ../../Zotlabs/Module/Setup.php:420 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Verbonden" +#: ../../Zotlabs/Module/Setup.php:425 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Connectie accepteren" +#: ../../Zotlabs/Module/Setup.php:434 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Goedkeuren" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Connectie negeren" +#: ../../Zotlabs/Module/Setup.php:438 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Recente activiteit" +#: ../../Zotlabs/Module/Setup.php:456 +#, 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 "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." -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 -msgid "Connections" -msgstr "Connecties" +#: ../../Zotlabs/Module/Setup.php:461 +msgid "You can adjust these settings in the servers php.ini." +msgstr "You can adjust these settings in the servers php.ini." -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 -msgid "Search" -msgstr "Zoeken" +#: ../../Zotlabs/Module/Setup.php:463 +msgid "PHP upload limits" +msgstr "PHP upload limits" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" +#: ../../Zotlabs/Module/Setup.php:486 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Connecties zoeken" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../Zotlabs/Module/Setup.php:490 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Omslagfoto's" +#: ../../Zotlabs/Module/Setup.php:502 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." +#: ../../Zotlabs/Module/Setup.php:503 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 -msgid "female" -msgstr "vrouw" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "xml PHP module" +msgstr "xml PHP module" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s heeft haar %2$s bijgewerkt" +#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 -msgid "male" -msgstr "man" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s heeft zijn %2$s bijgewerkt" +#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "De %2$s van %1$s is bijgewerkt" +#: ../../Zotlabs/Module/Setup.php:517 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 -msgid "cover photo" -msgstr "omslagfoto" +#: ../../Zotlabs/Module/Setup.php:525 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../Zotlabs/Module/Setup.php:529 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Omslagfoto uploaden" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" -msgstr "of" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: xml PHP module required for DAV but not installed." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../Zotlabs/Module/Setup.php:563 +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 "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." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../Zotlabs/Module/Setup.php:564 +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 "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." -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" - -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../Zotlabs/Module/Setup.php:569 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../Zotlabs/Module/Setup.php:583 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Agenda-items geïmporteerd." +#: ../../Zotlabs/Module/Setup.php:584 +#, 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 "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." -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Geen agenda-items gevonden." +#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" +#: ../../Zotlabs/Module/Setup.php:586 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Niet in staat om voorvertoning te genereren" +#: ../../Zotlabs/Module/Setup.php:589 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../Zotlabs/Module/Setup.php:605 +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 Red top " +"level folder" +msgstr "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" +#: ../../Zotlabs/Module/Setup.php:609 +msgid "store is writable" +msgstr "store is writable" -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "gebeurtenis" +#: ../../Zotlabs/Module/Setup.php:642 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Titel bewerken" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Titel" +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Vereist" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" +#: ../../Zotlabs/Module/Setup.php:646 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Categorie" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Categorie" +#: ../../Zotlabs/Module/Setup.php:649 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "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." -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Begindatum en -tijd bewerken" +#: ../../Zotlabs/Module/Setup.php:652 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Begindatum en -tijd" +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" +#: ../../Zotlabs/Module/Setup.php:661 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Einddatum en -tijd bewerken" +#: ../../Zotlabs/Module/Setup.php:670 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Einddatum en -tijd" +#: ../../Zotlabs/Module/Setup.php:694 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" +#: ../../Zotlabs/Module/Setup.php:731 +msgid "

    What next

    " +msgstr "

    What next

    " -#: ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Setup.php:732 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." - -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Omschrijving bewerken" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Omschrijving" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d beoordeling" +msgstr[1] "%d beoordelingen" -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Locatie bewerken" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geslacht:" -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Locatie" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status: " -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage: " -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Permissies" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/event.php:52 ../../include/event.php:84 +#: ../../include/bb2diaspora.php:507 +msgid "Location:" +msgstr "Plaats:" -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Geavanceerde opties" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Omschrijving:" -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Gebeurtenis verwijderen" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Over:" -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "agenda" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 +#: ../../include/widgets.php:184 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +msgid "Connect" +msgstr "Verbinden" -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Openbaar forum:" -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Trefwoorden: " -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Foto's" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Niet voorstellen" -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Gemeenschappelijke connecties:" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Volledige kanalengids" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Lokale kanalengids" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Gezocht naar:" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- kies map -" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "volgende pagina" -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" -msgstr "Ongeldig bericht" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "vorige pagina" -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" -msgstr "geen resultaten" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Sorteeropties" -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Afleveringsrapport voor %1$s" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetisch" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "kanaalsync verwerkt" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "in wachtrij" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "verstuurd" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "geaccepteerd om afgeleverd te worden" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "geüpdatet" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "update genegeerd" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "toegang geweigerd" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Item niet gevonden" -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "ontvanger niet gevonden" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Privébericht ingetrokken" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Weblink invoegen" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "dubbel privébericht ontvangen" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "privébericht afgeleverd" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 msgid "Layout Name" msgstr "Naam lay-out" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 msgid "Layout Description (Optional)" msgstr "Lay-out-omschrijving (optioneel)" -#: ../../Zotlabs/Module/Editlayout.php:135 +#: ../../Zotlabs/Module/Editlayout.php:136 msgid "Edit Layout" msgstr "Lay-out bewerken" -#: ../../Zotlabs/Module/Editwebpage.php:143 +#: ../../Zotlabs/Module/Editwebpage.php:142 msgid "Page link" msgstr "Paginalink" @@ -1559,2026 +1760,1840 @@ msgstr "Paginalink" msgid "Edit Webpage" msgstr "Webpagina bewerken" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanaal toegevoegd." - -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "netwerk" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Privacygroep aangemaakt" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Kon privacygroep niet aanmaken" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 -msgid "Privacy group not found." -msgstr "Privacygroep niet gevonden" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Privacygroep bijgewerkt" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Privacygroep met kanalen aanmaken" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Naam privacygroep: " +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Privacygroep verwijderd." +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menu's" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Verwijderen privacygroep mislukt" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Verwijderen" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Privacygroep bewerken" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Aangemaakt" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Kanalen" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Bewerkt" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Zoek documentatie" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hulp:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 -msgid "Help" -msgstr "Hulp" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "$Projectname-documentatie" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bewerken" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App maken" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Naam van app" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Dit bestand delen" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Vereist" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Jouw connecties over dit bestand berichten" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Omschrijving" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apps" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Item is niet aanwezig." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../Zotlabs/Module/Import.php:32 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../Zotlabs/Module/Import.php:100 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Waarschuwing: database-versies lopen %1$d updates achter." +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Zoek documentatie" -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Hulp:" -#: ../../Zotlabs/Module/Import.php:160 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:163 +msgid "Help" +msgstr "Hulp" -#: ../../Zotlabs/Module/Import.php:510 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" +msgstr "$Projectname-documentatie" -#: ../../Zotlabs/Module/Import.php:532 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Item is niet aanwezig." -#: ../../Zotlabs/Module/Import.php:537 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../Zotlabs/Module/Import.php:538 -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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../Zotlabs/Module/Import.php:540 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulenaam:" -#: ../../Zotlabs/Module/Import.php:541 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Lay-out-hulp" -#: ../../Zotlabs/Module/Import.php:542 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Deel webpagina's vanuit Firefox met " -#: ../../Zotlabs/Module/Import.php:543 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activeer de $Projectname-service in Firefox" -#: ../../Zotlabs/Module/Import.php:544 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Import.php:545 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../Zotlabs/Module/Import.php:546 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." -#: ../../Zotlabs/Module/Import.php:547 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Zichtbaar voor:" -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permissies" -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 -msgid "Layouts" -msgstr "Lay-outs" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" -#: ../../Zotlabs/Module/Layouts.php:183 -msgid "Comanche page description language help" -msgstr "Hulp met de paginabeschrijvingstaal Comanche" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Dit bestand delen" -#: ../../Zotlabs/Module/Layouts.php:187 -msgid "Layout Description" -msgstr "Lay-out-omschrijving" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" -#: ../../Zotlabs/Module/Layouts.php:192 -msgid "Download PDL file" -msgstr "Download PDL-bestand" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Jouw connecties over dit bestand berichten" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Voornaam" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 +#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Bijwerken" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Achternaam" +#: ../../Zotlabs/Module/Settings.php:138 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dit kanaal heeft een limiet van %d tokens" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Bijnaam" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Naam en wachtwoord zijn vereist" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Volledige naam" +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token opgeslagen." -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-mail" +#: ../../Zotlabs/Module/Settings.php:312 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profielfoto" +#: ../../Zotlabs/Module/Settings.php:315 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profielfoto 16px" +#: ../../Zotlabs/Module/Settings.php:324 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profielfoto 32px" +#: ../../Zotlabs/Module/Settings.php:341 +msgid "Password verification failed." +msgstr "Wachtwoordverificatie mislukt" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profielfoto 48px" +#: ../../Zotlabs/Module/Settings.php:348 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profielfoto 64px" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profielfoto 80px" +#: ../../Zotlabs/Module/Settings.php:366 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profielfoto 128px" +#: ../../Zotlabs/Module/Settings.php:368 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Tijdzone" +#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 +#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 +#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/widgets.php:495 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/selectors.php:123 +msgid "Friends" +msgstr "Vrienden" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "URL homepagina" +#: ../../Zotlabs/Module/Settings.php:617 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Taal" - -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geboortejaar" - -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geboortemaand" +#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 +#: ../../Zotlabs/Module/Settings.php:743 +msgid "Add application" +msgstr "Applicatie toevoegen" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geboortedag" +#: ../../Zotlabs/Module/Settings.php:684 +msgid "Name of application" +msgstr "Naam van applicatie" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geboortedatum" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 +msgid "Consumer Key" +msgstr "Consumer key" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geslacht" +#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Man" +#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 +msgid "Consumer Secret" +msgstr "Consumer secret" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Vrouw" +#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webpagina" +#: ../../Zotlabs/Module/Settings.php:687 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "blok" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 +msgid "Icon url" +msgstr "Pictogram-URL" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "lay-out" +#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Optioneel" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Application not found." +msgstr "Applicatie niet gevonden." -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" +#: ../../Zotlabs/Module/Settings.php:742 +msgid "Connected Apps" +msgstr "Verbonden applicaties" -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installatie %s-element mislukt" +#: ../../Zotlabs/Module/Settings.php:746 +msgid "Client key starts with" +msgstr "Client key begint met" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../Zotlabs/Module/Settings.php:747 +msgid "No name" +msgstr "Geen naam" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." +#: ../../Zotlabs/Module/Settings.php:748 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." +#: ../../Zotlabs/Module/Settings.php:761 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen aanwezig" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../Zotlabs/Module/Settings.php:768 +msgid "Feature/Addon Settings" +msgstr "Plugin-instellingen" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "kanaal" +#: ../../Zotlabs/Module/Settings.php:791 +msgid "Account Settings" +msgstr "Account-instellingen" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "ding" +#: ../../Zotlabs/Module/Settings.php:792 +msgid "Current Password" +msgstr "Huidig wachtwoord" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../Zotlabs/Module/Settings.php:793 +msgid "Enter New Password" +msgstr "Nieuw wachtwoord invoeren" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Confirm New Password" +msgstr "Nieuw wachtwoord bevestigen" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Settings.php:794 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 -msgid "status" -msgstr "bericht" +#: ../../Zotlabs/Module/Settings.php:796 +#: ../../Zotlabs/Module/Settings.php:1236 +msgid "Email Address:" +msgstr "E-mailadres:" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +#: ../../Zotlabs/Module/Settings.php:797 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Account verwijderen" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Remove this account including all its channels" +msgstr "Dit account en al zijn kanalen verwijderen" -#: ../../Zotlabs/Module/Like.php:424 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s is het eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:832 +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." +msgstr "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud." -#: ../../Zotlabs/Module/Like.php:426 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s is het niet eens met %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:834 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:" -#: ../../Zotlabs/Module/Like.php:428 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 +msgid "Guest Access Tokens" +msgstr "Gasttoegang" -#: ../../Zotlabs/Module/Like.php:430 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s is aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:876 +msgid "Login Name" +msgstr "Inlognaam" -#: ../../Zotlabs/Module/Like.php:432 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s is niet aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:877 +msgid "Login Password" +msgstr "Wachtwoord:" -#: ../../Zotlabs/Module/Like.php:434 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" +#: ../../Zotlabs/Module/Settings.php:878 +msgid "Expires (yyyy-mm-dd)" +msgstr "Geldig t/m (yyyy-mm-dd)" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Hun instellingen" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." -msgstr "Bedankt" +#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Mijn instellingen" -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Importeren voltooid" +#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "geërfd" -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Importeer items" +#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Individuele permissies" -#: ../../Zotlabs/Module/Import_items.php:118 +#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "Off" +msgstr "Uit" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 +#: ../../Zotlabs/Module/Admin.php:691 +msgid "On" +msgstr "Aan" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Uitnodiging voor $Projectname" +#: ../../Zotlabs/Module/Settings.php:910 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." +#: ../../Zotlabs/Module/Settings.php:934 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." +#: ../../Zotlabs/Module/Settings.php:981 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Invite.php:83 +#: ../../Zotlabs/Module/Settings.php:984 #, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." - -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" +#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 +msgid "mobile" +msgstr "mobiel" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" +#: ../../Zotlabs/Module/Settings.php:1035 +msgid "Display Settings" +msgstr "Weergave-instellingen" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../Zotlabs/Module/Settings.php:1036 +msgid "Theme Settings" +msgstr "Thema-instellingen" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Custom Theme Settings" +msgstr "Handmatige thema-instellingen" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Je moet deze uitnodigingscode opgeven:" +#: ../../Zotlabs/Module/Settings.php:1038 +msgid "Content Settings" +msgstr "Inhoudsinstellingen" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Display Theme:" +msgstr "Gebruik thema:" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" +#: ../../Zotlabs/Module/Settings.php:1045 +msgid "Select scheme" +msgstr "Kies schema van thema" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "of bezoek" +#: ../../Zotlabs/Module/Settings.php:1047 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "Preload images before rendering the page" +msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../Zotlabs/Module/Settings.php:1048 +msgid "" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Locatie niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" +#: ../../Zotlabs/Module/Settings.php:1050 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Geen locaties gevonden." +#: ../../Zotlabs/Module/Settings.php:1052 +msgid "Show emoticons (smilies) as images" +msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primair" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Verwijderen" +#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Nu synchroniseren" +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Use blog/list mode on grid page" +msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." +#: ../../Zotlabs/Module/Settings.php:1059 +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." +#: ../../Zotlabs/Module/Settings.php:1060 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" +#: ../../Zotlabs/Module/Settings.php:1093 +msgid "Any connections" +msgstr "Alle connecties" -#: ../../Zotlabs/Module/Mail.php:78 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." +#: ../../Zotlabs/Module/Settings.php:1094 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" -#: ../../Zotlabs/Module/Mail.php:143 -msgid "Messages" -msgstr "Berichten" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Message recalled." -msgstr "Bericht ingetrokken." +#: ../../Zotlabs/Module/Settings.php:1096 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" -#: ../../Zotlabs/Module/Mail.php:191 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" +#: ../../Zotlabs/Module/Settings.php:1171 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" +#: ../../Zotlabs/Module/Settings.php:1176 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../Zotlabs/Module/Mail.php:242 -msgid "Send Private Message" -msgstr "Privébericht versturen" +#: ../../Zotlabs/Module/Settings.php:1185 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -msgid "To:" -msgstr "Aan:" +#: ../../Zotlabs/Module/Settings.php:1227 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 -msgid "Subject:" -msgstr "Onderwerp:" +#: ../../Zotlabs/Module/Settings.php:1234 +msgid "Basic Settings" +msgstr "Basis-instellingen" -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 -msgid "Attach file" -msgstr "Bestand toevoegen" +#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../Zotlabs/Module/Mail.php:253 -msgid "Send" -msgstr "Verzenden" +#: ../../Zotlabs/Module/Settings.php:1237 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" -#: ../../Zotlabs/Module/Mail.php:340 -msgid "Delete message" -msgstr "Bericht verwijderen" +#: ../../Zotlabs/Module/Settings.php:1238 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../Zotlabs/Module/Mail.php:341 -msgid "Delivery report" -msgstr "Afleveringsrapport" +#: ../../Zotlabs/Module/Settings.php:1239 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" -#: ../../Zotlabs/Module/Mail.php:342 -msgid "Recall message" -msgstr "Bericht intrekken" +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" -#: ../../Zotlabs/Module/Mail.php:344 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." +#: ../../Zotlabs/Module/Settings.php:1241 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../Zotlabs/Module/Mail.php:361 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" +#: ../../Zotlabs/Module/Settings.php:1243 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../Zotlabs/Module/Mail.php:363 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." +#: ../../Zotlabs/Module/Settings.php:1246 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../Zotlabs/Module/Mail.php:367 -msgid "Send Reply" -msgstr "Antwoord versturen" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" -#: ../../Zotlabs/Module/Mail.php:372 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%s):" +#: ../../Zotlabs/Module/Settings.php:1248 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." +#: ../../Zotlabs/Module/Settings.php:1250 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +#: ../../Zotlabs/Module/Settings.php:1251 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../Zotlabs/Module/Settings.php:1252 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." +#: ../../Zotlabs/Module/Settings.php:1254 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../Zotlabs/Module/Settings.php:1256 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" +#: ../../Zotlabs/Module/Settings.php:1258 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" -#: ../../Zotlabs/Module/Manage.php:173 +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" + +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "0 or blank to use the website limit." +msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." + +#: ../../Zotlabs/Module/Settings.php:1260 #, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" +msgid "This website expires after %d days." +msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Uitbesteed kanaal" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "This website does not expire imported content." +msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +#: ../../Zotlabs/Module/Settings.php:1261 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Default Post and Publish Permissions" +msgstr "Standaard permissies voor nieuwe berichten en publicaties" -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." +#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Use my default audience setting for the type of object published" +msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../Zotlabs/Module/Settings.php:1271 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." +#: ../../Zotlabs/Module/Settings.php:1281 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een bericht wanneer:" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../Zotlabs/Module/Settings.php:1283 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-mailadres" +#: ../../Zotlabs/Module/Settings.php:1285 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Menunaam" +#: ../../Zotlabs/Module/Settings.php:1289 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menutitel" +#: ../../Zotlabs/Module/Settings.php:1291 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" +#: ../../Zotlabs/Module/Settings.php:1292 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../Zotlabs/Module/Settings.php:1293 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" +#: ../../Zotlabs/Module/Settings.php:1296 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" +#: ../../Zotlabs/Module/Settings.php:1298 +msgid "Unseen grid activity" +msgstr "Niet bekeken grid-activiteit" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menu's" +#: ../../Zotlabs/Module/Settings.php:1299 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" +#: ../../Zotlabs/Module/Settings.php:1300 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Menu verwijderen" +#: ../../Zotlabs/Module/Settings.php:1300 +#: ../../Zotlabs/Module/Settings.php:1305 +#: ../../Zotlabs/Module/Settings.php:1306 +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "Recommended" +msgstr "Aanbevolen" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" +#: ../../Zotlabs/Module/Settings.php:1301 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dit menu bewerken" +#: ../../Zotlabs/Module/Settings.php:1302 +msgid "Events today" +msgstr "Gebeurtenissen van vandaag" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menu niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menu bewerken" +#: ../../Zotlabs/Module/Settings.php:1304 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../Zotlabs/Module/Settings.php:1305 +msgid "System info messages" +msgstr "Systeemmededelingen" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Naam van menu" +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "New connections" +msgstr "Nieuwe connecties" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titel van menu" +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Stemming" +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profielovereenkomst" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "Default photo upload folder" +msgstr "Standaard fotoalbum voor uploads" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../Zotlabs/Module/Settings.php:1319 +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "%Y - current year, %m - current month" +msgstr "%Y - dit jaar, %m - deze maand" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../Zotlabs/Module/Settings.php:1320 +msgid "Default file upload folder" +msgstr "Standaard bestandsmap voor uploads" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Collectie niet gevonden" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Niet zo'n kanaal" +#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "forum" - -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" - -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" - -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Privacygroep: " - -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ongeldige connectie." - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Systeemnotificaties" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" - -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Linknaam" - -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Linkdoel of submenu-doel" - -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" - -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Gebruik magic-auth wanneer beschikbaar" - -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Volgorde in lijst" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" - -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" - -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menu:" - -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Linkdoel" - -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menu bewerken" - -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Onderdeel bewerken" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Onderdeel verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Nieuw element" - -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menu-element toevoegen" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" - -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Remove this channel." +msgstr "Verwijder dit kanaal." -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-service voor Firefox Share" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Start calendar week on monday" +msgstr "Begin in de agenda de week op maandag" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "netwerk" -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Linktekst" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Naam" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Privacygroep aangemaakt" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Kon privacygroep niet aanmaken" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3931 +msgid "Privacy group not found." +msgstr "Privacygroep niet gevonden" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Privacygroep bijgewerkt" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Privacygroep met kanalen aanmaken" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Naam privacygroep: " -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Kanaal aanmaken" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Privacygroep verwijderd." -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Verwijderen privacygroep mislukt" -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Privacygroep bewerken" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Kanalen" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../Zotlabs/Module/Photos.php:84 +#: ../../Zotlabs/Module/Photos.php:82 msgid "Page owner information could not be retrieved." msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 #: ../../include/photo/photo_driver.php:718 msgid "Profile Photos" msgstr "Profielfoto's" -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 msgid "Album not found." msgstr "Album niet gevonden." -#: ../../Zotlabs/Module/Photos.php:132 +#: ../../Zotlabs/Module/Photos.php:130 msgid "Delete Album" msgstr "Verwijder album" -#: ../../Zotlabs/Module/Photos.php:153 +#: ../../Zotlabs/Module/Photos.php:151 msgid "" "Multiple storage folders exist with this album name, but within different " "directories. Please remove the desired folder or folders using the Files " "manager" msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 msgid "Delete Photo" msgstr "Verwijder foto" -#: ../../Zotlabs/Module/Photos.php:533 +#: ../../Zotlabs/Module/Photos.php:531 msgid "No photos selected" msgstr "Geen foto's geselecteerd" -#: ../../Zotlabs/Module/Photos.php:582 +#: ../../Zotlabs/Module/Photos.php:580 msgid "Access to this item is restricted." msgstr "Toegang tot dit item is beperkt." -#: ../../Zotlabs/Module/Photos.php:621 +#: ../../Zotlabs/Module/Photos.php:619 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Photos.php:624 +#: ../../Zotlabs/Module/Photos.php:622 #, php-format msgid "%1$.2f MB photo storage used." msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../Zotlabs/Module/Photos.php:660 +#: ../../Zotlabs/Module/Photos.php:658 msgid "Upload Photos" msgstr "Foto's uploaden" -#: ../../Zotlabs/Module/Photos.php:664 +#: ../../Zotlabs/Module/Photos.php:662 msgid "Enter an album name" msgstr "Vul een albumnaam in" -#: ../../Zotlabs/Module/Photos.php:665 +#: ../../Zotlabs/Module/Photos.php:663 msgid "or select an existing album (doubleclick)" msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Photos.php:666 +#: ../../Zotlabs/Module/Photos.php:664 msgid "Create a status post for this upload" msgstr "Plaats een bericht voor deze upload." -#: ../../Zotlabs/Module/Photos.php:667 +#: ../../Zotlabs/Module/Photos.php:665 msgid "Caption (optional):" msgstr "Bijschrift (optioneel):" -#: ../../Zotlabs/Module/Photos.php:668 +#: ../../Zotlabs/Module/Photos.php:666 msgid "Description (optional):" msgstr "Omschrijving (optioneel):" -#: ../../Zotlabs/Module/Photos.php:695 +#: ../../Zotlabs/Module/Photos.php:697 msgid "Album name could not be decoded" msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../Zotlabs/Module/Photos.php:743 +#: ../../Zotlabs/Module/Photos.php:745 msgid "Contact Photos" msgstr "Connectiefoto's" -#: ../../Zotlabs/Module/Photos.php:766 +#: ../../Zotlabs/Module/Photos.php:768 msgid "Show Newest First" msgstr "Nieuwste eerst weergeven" -#: ../../Zotlabs/Module/Photos.php:768 +#: ../../Zotlabs/Module/Photos.php:770 msgid "Show Oldest First" msgstr "Oudste eerst weergeven" -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 msgid "View Photo" msgstr "Foto weergeven" -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 msgid "Edit Album" msgstr "Album bewerken" -#: ../../Zotlabs/Module/Photos.php:870 +#: ../../Zotlabs/Module/Photos.php:872 msgid "Permission denied. Access to this item may be restricted." msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../Zotlabs/Module/Photos.php:872 +#: ../../Zotlabs/Module/Photos.php:874 msgid "Photo not available" msgstr "Foto niet aanwezig" -#: ../../Zotlabs/Module/Photos.php:930 +#: ../../Zotlabs/Module/Photos.php:932 msgid "Use as profile photo" msgstr "Als profielfoto gebruiken" -#: ../../Zotlabs/Module/Photos.php:931 +#: ../../Zotlabs/Module/Photos.php:933 msgid "Use as cover photo" msgstr "Als omslagfoto gebruiken" -#: ../../Zotlabs/Module/Photos.php:938 +#: ../../Zotlabs/Module/Photos.php:940 msgid "Private Photo" msgstr "Privéfoto" -#: ../../Zotlabs/Module/Photos.php:953 +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Vorige" + +#: ../../Zotlabs/Module/Photos.php:955 msgid "View Full Size" msgstr "Volledige grootte weergeven" -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 +#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 #: ../../Zotlabs/Module/Tagrm.php:137 msgid "Remove" msgstr "Verwijderen" -#: ../../Zotlabs/Module/Photos.php:1032 +#: ../../Zotlabs/Module/Photos.php:1034 msgid "Edit photo" msgstr "Foto bewerken" -#: ../../Zotlabs/Module/Photos.php:1034 +#: ../../Zotlabs/Module/Photos.php:1036 msgid "Rotate CW (right)" msgstr "Draai met de klok mee (naar rechts)" -#: ../../Zotlabs/Module/Photos.php:1035 +#: ../../Zotlabs/Module/Photos.php:1037 msgid "Rotate CCW (left)" msgstr "Draai tegen de klok in (naar links)" -#: ../../Zotlabs/Module/Photos.php:1038 +#: ../../Zotlabs/Module/Photos.php:1040 msgid "Enter a new album name" msgstr "Vul een nieuwe albumnaam in" -#: ../../Zotlabs/Module/Photos.php:1039 +#: ../../Zotlabs/Module/Photos.php:1041 msgid "or select an existing one (doubleclick)" msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../Zotlabs/Module/Photos.php:1042 +#: ../../Zotlabs/Module/Photos.php:1044 msgid "Caption" msgstr "Bijschrift" -#: ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Photos.php:1046 msgid "Add a Tag" msgstr "Tag toevoegen" -#: ../../Zotlabs/Module/Photos.php:1048 +#: ../../Zotlabs/Module/Photos.php:1054 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../Zotlabs/Module/Photos.php:1051 +#: ../../Zotlabs/Module/Photos.php:1057 msgid "Flag as adult in album view" msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 msgid "I like this (toggle)" msgstr "Vind ik leuk" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 msgid "I don't like this (toggle)" msgstr "Vind ik niet leuk" -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Delen" + +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../include/conversation.php:743 msgid "Please wait" msgstr "Even wachten" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:708 msgid "This is you" msgstr "Dit ben jij" -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 msgid "Comment" msgstr "Reactie" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 +#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 +msgid "Preview" +msgstr "Voorvertoning" + +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Likes" msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 msgctxt "title" msgid "Dislikes" msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Agree" msgstr "eens" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Disagree" msgstr "oneens" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 msgctxt "title" msgid "Abstain" msgstr "onthoudingen" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Attending" msgstr "aanwezig" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Not attending" msgstr "niet aanwezig" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 msgctxt "title" msgid "Might attend" msgstr "mogelijk aanwezig" -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 #: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 +#: ../../include/conversation.php:1756 msgid "View all" msgstr "Toon alles" -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1780 +#: ../../include/taxonomy.php:403 msgctxt "noun" msgid "Like" msgid_plural "Likes" msgstr[0] "vindt dit leuk" msgstr[1] "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1783 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "vindt dit niet leuk" msgstr[1] "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1235 +#: ../../Zotlabs/Module/Photos.php:1241 msgid "Photo Tools" msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Photos.php:1244 +#: ../../Zotlabs/Module/Photos.php:1250 msgid "In This Photo:" msgstr "Op deze foto:" -#: ../../Zotlabs/Module/Photos.php:1249 +#: ../../Zotlabs/Module/Photos.php:1255 msgid "Map" msgstr "Kaart" -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 msgctxt "noun" msgid "Likes" msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 msgctxt "noun" msgid "Dislikes" msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../include/acl_selectors.php:181 msgid "Close" msgstr "Sluiten" -#: ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Photos.php:1343 msgid "View Album" msgstr "Album weergeven" -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 msgid "Recent Photos" msgstr "Recente foto's" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webpagina" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "blok" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "lay-out" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[vandaag]" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importeren voltooid" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importeer items" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Import_items.php:120 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " +"Use this form to import existing posts and content from an export file." +msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Uitnodiging voor $Projectname" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Aanstoten" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Iemand aanstoten" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Je moet deze uitnodigingscode opgeven:" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profiel niet gevonden." +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profiel-" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "of bezoek" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Houdt van" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Kanaaladres" -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religie" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Homepage" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interesses" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "kanaal" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Hulpmiddelen" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "ding" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Omslagfoto wijzigen" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "foto" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "bericht" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "gebeurtenis" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relatie" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Jouw geslacht" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Burgerlijke staat" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Seksuele voorkeur" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Profielnaam" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Bedankt" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Jouw volledige naam" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titel/omschrijving" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Nieuwe aanmaken" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Straat en huisnummer" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:210 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Woonplaats" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Provincie/gewest/deelstaat" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "Postcode" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Land" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Wie (wanneer van toepassing)" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "Sinds (datum)" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Vertel ons iets over jezelf" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Oorspronkelijk uit" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Politieke overtuigingen" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Religieuze overtuigingen" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Trefwoorden voor in de kanalengids" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Linknaam" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisie" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Volgorde in lijst" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Liefde/romantiek" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "School/opleiding" - -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contactinformatie en sociale netwerken" - -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "Mijn andere kanalen" - -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 -msgid "Profile Image" -msgstr "Profielfoto" - -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 -msgid "Edit Profiles" -msgstr "Bewerk profielen" - -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" - -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " - -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profiel" - -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" - -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Zichtbaar voor" - -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Openbare hubs" - -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Toegangs-
     type" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Linkdoel" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registratie-
     beleid" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Menu bewerken" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Stats" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Onderdeel bewerken" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Onderdeel verwijderen" -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Beoordelingen" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nieuw element" -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Beoordeel" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Website:" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Menu-element toevoegen" -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Geen beoordelingen" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Beoordeling: " +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Website: " +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Linktekst" #: ../../Zotlabs/Module/Admin.php:77 msgid "Theme settings updated." @@ -3620,12 +3635,12 @@ msgstr "Berichtenwachtrij" msgid "Your software should be updated" msgstr "Jouw software moet worden bijgewerkt " -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 +#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 +#: ../../Zotlabs/Module/Admin.php:1745 msgid "Administration" msgstr "Beheer" @@ -3637,7 +3652,7 @@ msgstr "Samenvatting" msgid "Registered accounts" msgstr "Geregistreerde accounts" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 msgid "Pending registrations" msgstr "Accounts die op goedkeuring wachten" @@ -3645,7 +3660,7 @@ msgstr "Accounts die op goedkeuring wachten" msgid "Registered channels" msgstr "Geregistreerde kanalen" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 msgid "Active plugins" msgstr "Ingeschakelde plugins" @@ -3661,2522 +3676,2381 @@ msgstr "Versie repository (master)" msgid "Repository version (dev)" msgstr "Versie repository (dev)" -#: ../../Zotlabs/Module/Admin.php:373 +#: ../../Zotlabs/Module/Admin.php:377 msgid "Site settings updated." msgstr "Hub-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 +#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 msgid "Default" msgstr "Standaard" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" -msgstr "mobiel" - -#: ../../Zotlabs/Module/Admin.php:412 +#: ../../Zotlabs/Module/Admin.php:416 msgid "experimental" msgstr "experimenteel" -#: ../../Zotlabs/Module/Admin.php:414 +#: ../../Zotlabs/Module/Admin.php:418 msgid "unsupported" msgstr "Niet ondersteund" -#: ../../Zotlabs/Module/Admin.php:460 +#: ../../Zotlabs/Module/Admin.php:464 msgid "Yes - with approval" msgstr "Ja - met goedkeuring" -#: ../../Zotlabs/Module/Admin.php:466 +#: ../../Zotlabs/Module/Admin.php:470 msgid "My site is not a public server" msgstr "Mijn $Projectname-hub is niet openbaar" -#: ../../Zotlabs/Module/Admin.php:467 +#: ../../Zotlabs/Module/Admin.php:471 msgid "My site has paid access only" msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" -#: ../../Zotlabs/Module/Admin.php:468 +#: ../../Zotlabs/Module/Admin.php:472 msgid "My site has free access only" msgstr "Mijn $Projectname-hub kent alleen gratis toegang" -#: ../../Zotlabs/Module/Admin.php:469 +#: ../../Zotlabs/Module/Admin.php:473 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 +#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 msgid "Site" msgstr "Hub-instellingen" -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registratie" - -#: ../../Zotlabs/Module/Admin.php:494 +#: ../../Zotlabs/Module/Admin.php:504 msgid "File upload" msgstr "Bestand uploaden" -#: ../../Zotlabs/Module/Admin.php:495 +#: ../../Zotlabs/Module/Admin.php:505 msgid "Policies" msgstr "Beleid" -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Geavanceerd" -#: ../../Zotlabs/Module/Admin.php:500 +#: ../../Zotlabs/Module/Admin.php:510 msgid "Site name" msgstr "Naam van deze $Projectname-hub" -#: ../../Zotlabs/Module/Admin.php:501 +#: ../../Zotlabs/Module/Admin.php:514 msgid "Banner/Logo" msgstr "Banner/logo" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" +msgstr "Informatie over de beheerder" -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/Admin.php:515 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../Zotlabs/Module/Admin.php:503 +#: ../../Zotlabs/Module/Admin.php:516 msgid "System language" msgstr "Standaardtaal" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "System theme" msgstr "Standaardthema" -#: ../../Zotlabs/Module/Admin.php:504 +#: ../../Zotlabs/Module/Admin.php:517 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Mobile system theme" msgstr "Standaardthema voor mobiel" -#: ../../Zotlabs/Module/Admin.php:505 +#: ../../Zotlabs/Module/Admin.php:518 msgid "Theme for mobile devices" msgstr "Thema voor mobiele apparaten" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "Allow Feeds as Connections" msgstr "Sta feeds toe als connecties" -#: ../../Zotlabs/Module/Admin.php:507 +#: ../../Zotlabs/Module/Admin.php:520 msgid "(Heavy system resource usage)" msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "Maximum image size" msgstr "Maximale grootte van afbeeldingen" -#: ../../Zotlabs/Module/Admin.php:508 +#: ../../Zotlabs/Module/Admin.php:521 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../Zotlabs/Module/Admin.php:509 +#: ../../Zotlabs/Module/Admin.php:522 msgid "Does this site allow new member registration?" msgstr "Staat deze hub nieuwe accounts toe?" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "Invitation only" msgstr "Alleen op uitnodiging" -#: ../../Zotlabs/Module/Admin.php:510 +#: ../../Zotlabs/Module/Admin.php:523 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." -#: ../../Zotlabs/Module/Admin.php:511 +#: ../../Zotlabs/Module/Admin.php:524 msgid "Which best describes the types of account offered by this hub?" msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Register text" msgstr "Tekst tijdens registratie" -#: ../../Zotlabs/Module/Admin.php:512 +#: ../../Zotlabs/Module/Admin.php:525 msgid "Will be displayed prominently on the registration page." msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "Site homepage to show visitors (default: login box)" msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Admin.php:526 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "Preserve site homepage URL" msgstr "Behoudt de URL van de hub (/)" -#: ../../Zotlabs/Module/Admin.php:514 +#: ../../Zotlabs/Module/Admin.php:527 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "Accounts abandoned after x days" msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Admin.php:528 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "Allowed friend domains" msgstr "Toegestane domeinen" -#: ../../Zotlabs/Module/Admin.php:516 +#: ../../Zotlabs/Module/Admin.php:529 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "Allowed email domains" msgstr "Toegestane e-maildomeinen" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Admin.php:530 msgid "" "Comma separated list of domains which are allowed in email addresses for " "registrations to this site. Wildcards are accepted. Empty to allow any " "domains" msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "Not allowed email domains" msgstr "Niet toegestane e-maildomeinen" -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Admin.php:531 msgid "" "Comma separated list of domains which are not allowed in email addresses for" " registrations to this site. Wildcards are accepted. Empty to allow any " "domains, unless allowed domains have been defined." msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "Verify Email Addresses" msgstr "E-mailadres verifieren" -#: ../../Zotlabs/Module/Admin.php:519 +#: ../../Zotlabs/Module/Admin.php:532 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "Force publish" msgstr "Dwing kanaalvermelding af" -#: ../../Zotlabs/Module/Admin.php:520 +#: ../../Zotlabs/Module/Admin.php:533 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "Import Public Streams" msgstr "Openbare streams importeren" -#: ../../Zotlabs/Module/Admin.php:521 +#: ../../Zotlabs/Module/Admin.php:534 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "Login on Homepage" msgstr "Inlogformulier op de homepagina" -#: ../../Zotlabs/Module/Admin.php:522 +#: ../../Zotlabs/Module/Admin.php:535 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "Enable context help" msgstr "Schakel contextuele hulp in" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Admin.php:536 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt." -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Directory Server URL" msgstr "Server-URL voor de kanalengids" -#: ../../Zotlabs/Module/Admin.php:525 +#: ../../Zotlabs/Module/Admin.php:538 msgid "Default directory server" msgstr "Standaardserver voor de kanalengids" -#: ../../Zotlabs/Module/Admin.php:527 +#: ../../Zotlabs/Module/Admin.php:540 msgid "Proxy user" msgstr "Gebruikersnaam proxy" -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Admin.php:541 msgid "Proxy URL" msgstr "Proxy-URL" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Network timeout" msgstr "Netwerktimeout" -#: ../../Zotlabs/Module/Admin.php:529 +#: ../../Zotlabs/Module/Admin.php:542 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 msgid "Delivery interval" msgstr "Afleveringsinterval" -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Admin.php:543 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 "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "Deliveries per process" msgstr "Leveringen per serverproces" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Admin.php:544 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "Poll interval" msgstr "Poll-interval" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Admin.php:545 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "Maximum Load Average" msgstr "Maximaal gemiddelde systeembelasting" -#: ../../Zotlabs/Module/Admin.php:533 +#: ../../Zotlabs/Module/Admin.php:546 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "Expiration period in days for imported (grid/network) content" msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." -#: ../../Zotlabs/Module/Admin.php:534 +#: ../../Zotlabs/Module/Admin.php:547 msgid "0 for no expiration of imported content" msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" -msgstr "Uit" - -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" -msgstr "Aan" - -#: ../../Zotlabs/Module/Admin.php:678 +#: ../../Zotlabs/Module/Admin.php:691 #, php-format msgid "Lock feature %s" msgstr " Vergrendel de functie '%s'" -#: ../../Zotlabs/Module/Admin.php:686 +#: ../../Zotlabs/Module/Admin.php:699 msgid "Manage Additional Features" msgstr "Beheer - Extra functies" -#: ../../Zotlabs/Module/Admin.php:703 +#: ../../Zotlabs/Module/Admin.php:716 msgid "No server found" msgstr "Geen hub gevonden" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 +#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "for channel" msgstr "voor kanaal" -#: ../../Zotlabs/Module/Admin.php:710 +#: ../../Zotlabs/Module/Admin.php:723 msgid "on server" msgstr "op hub" -#: ../../Zotlabs/Module/Admin.php:712 +#: ../../Zotlabs/Module/Admin.php:725 msgid "Server" msgstr "Hubbeheer" -#: ../../Zotlabs/Module/Admin.php:746 +#: ../../Zotlabs/Module/Admin.php:759 msgid "" "By default, unfiltered HTML is allowed in embedded media. This is inherently" " insecure." msgstr "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig." -#: ../../Zotlabs/Module/Admin.php:749 +#: ../../Zotlabs/Module/Admin.php:762 msgid "" "The recommended setting is to only allow unfiltered HTML from the following " "sites:" msgstr "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:" -#: ../../Zotlabs/Module/Admin.php:750 +#: ../../Zotlabs/Module/Admin.php:763 msgid "" "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/
    " -#: ../../Zotlabs/Module/Admin.php:751 +#: ../../Zotlabs/Module/Admin.php:764 msgid "" "All other embedded content will be filtered, unless " "embedded content from that site is explicitly blocked." msgstr "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd." -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 +#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 msgid "Security" msgstr "Beveiliging" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "Block public" msgstr "Openbare toegang blokkeren" -#: ../../Zotlabs/Module/Admin.php:758 +#: ../../Zotlabs/Module/Admin.php:771 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently authenticated." msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." -#: ../../Zotlabs/Module/Admin.php:759 +#: ../../Zotlabs/Module/Admin.php:772 msgid "Set \"Transport Security\" HTTP header" msgstr "\"Transport Security\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Admin.php:760 +#: ../../Zotlabs/Module/Admin.php:773 msgid "Set \"Content Security Policy\" HTTP header" msgstr " \"Content Security Policy\" HTTP-header inschakelen" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "Allow communications only from these sites" msgstr "Alleen communicatie met deze hubs toestaan" -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Admin.php:774 msgid "" "One site per line. Leave empty to allow communication from anywhere by " "default" msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" -#: ../../Zotlabs/Module/Admin.php:762 +#: ../../Zotlabs/Module/Admin.php:775 msgid "Block communications from these sites" msgstr "Communicatie met deze hubs blokkeren" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "Allow communications only from these channels" msgstr "Sta alleen communicatie toe met deze kanalen" -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Admin.php:776 msgid "" "One channel (hash) per line. Leave empty to allow from any channel by " "default" msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" -#: ../../Zotlabs/Module/Admin.php:764 +#: ../../Zotlabs/Module/Admin.php:777 msgid "Block communications from these channels" msgstr "Communicatie met deze kanalen blokkeren" -#: ../../Zotlabs/Module/Admin.php:765 +#: ../../Zotlabs/Module/Admin.php:778 msgid "Only allow embeds from secure (SSL) websites and links." msgstr "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan." -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan" -#: ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:779 msgid "One site per line. By default embedded content is filtered." msgstr "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd." -#: ../../Zotlabs/Module/Admin.php:767 +#: ../../Zotlabs/Module/Admin.php:780 msgid "Block embedded HTML from these domains" msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" -#: ../../Zotlabs/Module/Admin.php:785 +#: ../../Zotlabs/Module/Admin.php:798 msgid "Update has been marked successful" msgstr "Update is als succesvol gemarkeerd" -#: ../../Zotlabs/Module/Admin.php:795 +#: ../../Zotlabs/Module/Admin.php:808 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../Zotlabs/Module/Admin.php:798 +#: ../../Zotlabs/Module/Admin.php:811 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s was geslaagd." -#: ../../Zotlabs/Module/Admin.php:802 +#: ../../Zotlabs/Module/Admin.php:815 #, php-format msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../Zotlabs/Module/Admin.php:805 +#: ../../Zotlabs/Module/Admin.php:818 #, php-format msgid "Update function %s could not be found." msgstr "Update-functie %s kon niet gevonden worden." -#: ../../Zotlabs/Module/Admin.php:821 +#: ../../Zotlabs/Module/Admin.php:834 msgid "No failed updates." msgstr "Geen mislukte updates." -#: ../../Zotlabs/Module/Admin.php:825 +#: ../../Zotlabs/Module/Admin.php:838 msgid "Failed Updates" msgstr "Mislukte updates" -#: ../../Zotlabs/Module/Admin.php:827 +#: ../../Zotlabs/Module/Admin.php:840 msgid "Mark success (if update was manually applied)" msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../Zotlabs/Module/Admin.php:828 +#: ../../Zotlabs/Module/Admin.php:841 msgid "Attempt to execute this update step automatically" msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../Zotlabs/Module/Admin.php:859 +#: ../../Zotlabs/Module/Admin.php:872 msgid "Queue Statistics" msgstr "Wachtrij-statistieken" -#: ../../Zotlabs/Module/Admin.php:860 +#: ../../Zotlabs/Module/Admin.php:873 msgid "Total Entries" msgstr "Aantal vermeldingen" -#: ../../Zotlabs/Module/Admin.php:861 +#: ../../Zotlabs/Module/Admin.php:874 msgid "Priority" msgstr "Prioriteit" -#: ../../Zotlabs/Module/Admin.php:862 +#: ../../Zotlabs/Module/Admin.php:875 msgid "Destination URL" msgstr "Doel-URL" -#: ../../Zotlabs/Module/Admin.php:863 +#: ../../Zotlabs/Module/Admin.php:876 msgid "Mark hub permanently offline" msgstr "Hub als permanent offline markeren" -#: ../../Zotlabs/Module/Admin.php:864 +#: ../../Zotlabs/Module/Admin.php:877 msgid "Empty queue for this hub" msgstr "Berichtenwachtrij voor deze hub legen" -#: ../../Zotlabs/Module/Admin.php:865 +#: ../../Zotlabs/Module/Admin.php:878 msgid "Last known contact" msgstr "Voor het laatst contact" -#: ../../Zotlabs/Module/Admin.php:901 +#: ../../Zotlabs/Module/Admin.php:914 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s account geblokkeerd/gedeblokkeerd" msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../Zotlabs/Module/Admin.php:908 +#: ../../Zotlabs/Module/Admin.php:921 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s account verwijderd" msgstr[1] "%s accounts verwijderd" -#: ../../Zotlabs/Module/Admin.php:944 +#: ../../Zotlabs/Module/Admin.php:957 msgid "Account not found" msgstr "Account niet gevonden" -#: ../../Zotlabs/Module/Admin.php:955 +#: ../../Zotlabs/Module/Admin.php:968 #, php-format msgid "Account '%s' deleted" msgstr "Account '%s' verwijderd" -#: ../../Zotlabs/Module/Admin.php:963 +#: ../../Zotlabs/Module/Admin.php:976 #, php-format msgid "Account '%s' blocked" msgstr "Account '%s' geblokkeerd" -#: ../../Zotlabs/Module/Admin.php:971 +#: ../../Zotlabs/Module/Admin.php:984 #, php-format msgid "Account '%s' unblocked" msgstr "Account '%s' gedeblokkeerd" -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1491 msgid "Accounts" msgstr "Accounts" -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 msgid "select all" msgstr "alles selecteren" -#: ../../Zotlabs/Module/Admin.php:1034 +#: ../../Zotlabs/Module/Admin.php:1047 msgid "Registrations waiting for confirm" msgstr "Accounts die op goedkeuring wachten" -#: ../../Zotlabs/Module/Admin.php:1035 +#: ../../Zotlabs/Module/Admin.php:1048 msgid "Request date" msgstr "Tijd/datum verzoek" -#: ../../Zotlabs/Module/Admin.php:1036 +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "E-mail" + +#: ../../Zotlabs/Module/Admin.php:1049 msgid "No registrations." msgstr "Geen verzoeken." -#: ../../Zotlabs/Module/Admin.php:1038 +#: ../../Zotlabs/Module/Admin.php:1051 msgid "Deny" msgstr "Afkeuren" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blokkeren" + +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Deblokkeren" + +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 msgid "All Channels" msgstr "Alle kanalen" -#: ../../Zotlabs/Module/Admin.php:1049 +#: ../../Zotlabs/Module/Admin.php:1062 msgid "Register date" msgstr "Geregistreerd" -#: ../../Zotlabs/Module/Admin.php:1050 +#: ../../Zotlabs/Module/Admin.php:1063 msgid "Last login" msgstr "Laatste keer ingelogd" -#: ../../Zotlabs/Module/Admin.php:1051 +#: ../../Zotlabs/Module/Admin.php:1064 msgid "Expires" msgstr "Verloopt" -#: ../../Zotlabs/Module/Admin.php:1052 +#: ../../Zotlabs/Module/Admin.php:1065 msgid "Service Class" msgstr "Abonnementen" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Admin.php:1067 msgid "" "Selected accounts will be deleted!\\n\\nEverything these accounts had posted" " on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1055 +#: ../../Zotlabs/Module/Admin.php:1068 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 "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1091 +#: ../../Zotlabs/Module/Admin.php:1104 #, php-format msgid "%s channel censored/uncensored" msgid_plural "%s channels censored/uncensored" msgstr[0] "%s kanaal gecensureerd/ongecensureerd" msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../Zotlabs/Module/Admin.php:1100 +#: ../../Zotlabs/Module/Admin.php:1113 #, php-format msgid "%s channel code allowed/disallowed" msgid_plural "%s channels code allowed/disallowed" msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" -#: ../../Zotlabs/Module/Admin.php:1106 +#: ../../Zotlabs/Module/Admin.php:1119 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s kanaal verwijderd" msgstr[1] "%s kanalen verwijderd" -#: ../../Zotlabs/Module/Admin.php:1126 +#: ../../Zotlabs/Module/Admin.php:1139 msgid "Channel not found" msgstr "Kanaal niet gevonden" -#: ../../Zotlabs/Module/Admin.php:1136 +#: ../../Zotlabs/Module/Admin.php:1149 #, php-format msgid "Channel '%s' deleted" msgstr "Kanaal '%s' verwijderd" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' censored" msgstr "Kanaal '%s' gecensureerd" -#: ../../Zotlabs/Module/Admin.php:1148 +#: ../../Zotlabs/Module/Admin.php:1161 #, php-format msgid "Channel '%s' uncensored" msgstr "Kanaal '%s' ongecensureerd" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code allowed" msgstr "Scripts toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin.php:1159 +#: ../../Zotlabs/Module/Admin.php:1172 #, php-format msgid "Channel '%s' code disallowed" msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 msgid "Channels" msgstr "Kanalen" -#: ../../Zotlabs/Module/Admin.php:1214 +#: ../../Zotlabs/Module/Admin.php:1227 msgid "Censor" msgstr "Censureren" -#: ../../Zotlabs/Module/Admin.php:1215 +#: ../../Zotlabs/Module/Admin.php:1228 msgid "Uncensor" msgstr "Niet censureren" -#: ../../Zotlabs/Module/Admin.php:1216 +#: ../../Zotlabs/Module/Admin.php:1229 msgid "Allow Code" msgstr "Scripts toestaan" -#: ../../Zotlabs/Module/Admin.php:1217 +#: ../../Zotlabs/Module/Admin.php:1230 msgid "Disallow Code" msgstr "Scripts niet toestaan" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 msgid "Channel" msgstr "Kanaal" -#: ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1235 msgid "UID" msgstr "UID" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:1239 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " "channels on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1227 +#: ../../Zotlabs/Module/Admin.php:1240 msgid "" "The channel {0} will be deleted!\\n\\nEverything that was posted in this " "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../Zotlabs/Module/Admin.php:1284 +#: ../../Zotlabs/Module/Admin.php:1297 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s uitgeschakeld." -#: ../../Zotlabs/Module/Admin.php:1288 +#: ../../Zotlabs/Module/Admin.php:1301 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s ingeschakeld" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 +#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 msgid "Disable" msgstr "Uitschakelen" -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 +#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 msgid "Enable" msgstr "Inschakelen" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 +#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 +#: ../../include/widgets.php:1495 msgid "Plugins" msgstr "Plugins" -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 +#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 msgid "Toggle" msgstr "Omschakelen" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 +#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 +#: ../../include/nav.php:212 msgid "Settings" msgstr "Instellingen" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 msgid "Author: " msgstr "Auteur: " -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 msgid "Maintainer: " msgstr "Beheerder: " -#: ../../Zotlabs/Module/Admin.php:1341 +#: ../../Zotlabs/Module/Admin.php:1354 msgid "Minimum project version: " msgstr "Minimum versie Hubzilla: " -#: ../../Zotlabs/Module/Admin.php:1342 +#: ../../Zotlabs/Module/Admin.php:1355 msgid "Maximum project version: " msgstr "Maximum versie Hubzilla:" -#: ../../Zotlabs/Module/Admin.php:1343 +#: ../../Zotlabs/Module/Admin.php:1356 msgid "Minimum PHP version: " msgstr "Minimum versie PHP: " -#: ../../Zotlabs/Module/Admin.php:1344 +#: ../../Zotlabs/Module/Admin.php:1357 +msgid "Compatible Server Roles: " +msgstr "Werkt met configuratietypes: " + +#: ../../Zotlabs/Module/Admin.php:1358 msgid "Requires: " msgstr "Vereist: " -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 +#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 msgid "Disabled - version incompatibility" msgstr "Uitgeschakeld - versie is incompatibel" -#: ../../Zotlabs/Module/Admin.php:1394 +#: ../../Zotlabs/Module/Admin.php:1408 msgid "Enter the public git repository URL of the plugin repo." msgstr "Vul de openbare Git-URL in van de plugin-repository." -#: ../../Zotlabs/Module/Admin.php:1395 +#: ../../Zotlabs/Module/Admin.php:1409 msgid "Plugin repo git URL" msgstr "Git-URL plugin-repository" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "Custom repo name" msgstr "Handmatige repository-naam" -#: ../../Zotlabs/Module/Admin.php:1396 +#: ../../Zotlabs/Module/Admin.php:1410 msgid "(optional)" msgstr "(optioneel)" -#: ../../Zotlabs/Module/Admin.php:1397 +#: ../../Zotlabs/Module/Admin.php:1411 msgid "Download Plugin Repo" msgstr "Plugin-repository downloaden" -#: ../../Zotlabs/Module/Admin.php:1404 +#: ../../Zotlabs/Module/Admin.php:1418 msgid "Install new repo" msgstr "Nieuwe repository installeren" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 msgid "Install" msgstr "Installeren" -#: ../../Zotlabs/Module/Admin.php:1427 +#: ../../Zotlabs/Module/Admin.php:1441 msgid "Manage Repos" msgstr "Repositories beheren" -#: ../../Zotlabs/Module/Admin.php:1428 +#: ../../Zotlabs/Module/Admin.php:1442 msgid "Installed Plugin Repositories" msgstr "Toegevoegde plugin-repositories" -#: ../../Zotlabs/Module/Admin.php:1429 +#: ../../Zotlabs/Module/Admin.php:1443 msgid "Install a New Plugin Repository" msgstr "Nieuwe plugin-repository toevoegen" -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 -msgid "Update" -msgstr "Bijwerken" - -#: ../../Zotlabs/Module/Admin.php:1436 +#: ../../Zotlabs/Module/Admin.php:1450 msgid "Switch branch" msgstr "Branch veranderen" -#: ../../Zotlabs/Module/Admin.php:1550 +#: ../../Zotlabs/Module/Admin.php:1564 msgid "No themes found." msgstr "Geen thema's gevonden" -#: ../../Zotlabs/Module/Admin.php:1606 +#: ../../Zotlabs/Module/Admin.php:1620 msgid "Screenshot" msgstr "Schermafdruk" -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 +#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 +#: ../../include/widgets.php:1496 msgid "Themes" msgstr "Thema's" -#: ../../Zotlabs/Module/Admin.php:1652 +#: ../../Zotlabs/Module/Admin.php:1666 msgid "[Experimental]" msgstr "[Experimenteel]" -#: ../../Zotlabs/Module/Admin.php:1653 +#: ../../Zotlabs/Module/Admin.php:1667 msgid "[Unsupported]" msgstr "[Niet ondersteund]" -#: ../../Zotlabs/Module/Admin.php:1677 +#: ../../Zotlabs/Module/Admin.php:1691 msgid "Log settings updated." msgstr "Logboek-instellingen bijgewerkt." -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 +#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 +#: ../../include/widgets.php:1527 msgid "Logs" msgstr "Logboeken" -#: ../../Zotlabs/Module/Admin.php:1734 +#: ../../Zotlabs/Module/Admin.php:1748 msgid "Clear" msgstr "Leegmaken" -#: ../../Zotlabs/Module/Admin.php:1740 +#: ../../Zotlabs/Module/Admin.php:1754 msgid "Debugging" msgstr "Debuggen" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "Log file" msgstr "Logbestand" -#: ../../Zotlabs/Module/Admin.php:1741 +#: ../../Zotlabs/Module/Admin.php:1755 msgid "" "Must be writable by web server. Relative to your top-level webserver " "directory." msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." -#: ../../Zotlabs/Module/Admin.php:1742 +#: ../../Zotlabs/Module/Admin.php:1756 msgid "Log level" msgstr "Logniveau" -#: ../../Zotlabs/Module/Admin.php:2028 +#: ../../Zotlabs/Module/Admin.php:2042 msgid "New Profile Field" msgstr "Nieuw profielveld" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "Field nickname" msgstr "Bijnaam voor veld" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 +#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 msgid "System name of field" msgstr "Systeemnaam voor veld" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 +#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 msgid "Input type" msgstr "Invoertype" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Field Name" msgstr "Veldnaam" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 +#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 msgid "Label on profile pages" msgstr "Tekstlabel voor op profielpagina's" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Help text" msgstr "Helptekst" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 +#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 msgid "Additional info (optional)" msgstr "Extra informatie (optioneel)" -#: ../../Zotlabs/Module/Admin.php:2042 +#: ../../Zotlabs/Module/Admin.php:2056 msgid "Field definition not found" msgstr "Velddefinitie niet gevonden" -#: ../../Zotlabs/Module/Admin.php:2048 +#: ../../Zotlabs/Module/Admin.php:2062 msgid "Edit Profile Field" msgstr "Profielveld bewerken" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 +#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 msgid "Profile Fields" msgstr "Profielvelden" -#: ../../Zotlabs/Module/Admin.php:2107 +#: ../../Zotlabs/Module/Admin.php:2121 msgid "Basic Profile Fields" msgstr "Standaard profielvelden" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "Advanced Profile Fields" msgstr "Geavanceerde profielvelden" -#: ../../Zotlabs/Module/Admin.php:2108 +#: ../../Zotlabs/Module/Admin.php:2122 msgid "(In addition to basic fields)" msgstr "(als toevoeging op de standaard velden)" -#: ../../Zotlabs/Module/Admin.php:2110 +#: ../../Zotlabs/Module/Admin.php:2124 msgid "All available fields" msgstr "Alle beschikbare velden" -#: ../../Zotlabs/Module/Admin.php:2111 +#: ../../Zotlabs/Module/Admin.php:2125 msgid "Custom Fields" msgstr "Extra (handmatig toegevoegde) velden" -#: ../../Zotlabs/Module/Admin.php:2115 +#: ../../Zotlabs/Module/Admin.php:2129 msgid "Create Custom Field" msgstr "Extra velden aanmaken" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App geïnstalleerd" - -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bewerken" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App maken" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Naam van app" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versie-ID" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prijs van de app" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Stemming" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profiel niet gevonden." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profiel-" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registreer op een andere hub." +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Huwelijke status" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze $Projectname-hub" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Romantische partner" -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Houdt van" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Jouw e-mailadres" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Houdt niet van" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Werk/arbeid" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religie" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "Nee" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geslacht" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Homepage" -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 -msgid "Register" -msgstr "Registreren" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interesses" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Volgende stap: aanmaken van jouw eerste kanaal" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Inloggen." +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." -#: ../../Zotlabs/Module/Removeaccount.php:34 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" -#: ../../Zotlabs/Module/Removeaccount.php:56 -msgid "Remove This Account" -msgstr "Verwijder dit account" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "WARNING: " -msgstr "WAARSCHUWING: " +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." - -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "This action is permanent and can not be undone!" -msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Removeaccount.php:59 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../Zotlabs/Module/Removeaccount.php:59 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 -msgid "Remove Account" -msgstr "Account verwijderen" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../Zotlabs/Module/Removeme.php:33 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../Zotlabs/Module/Removeme.php:58 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../Zotlabs/Module/Removeme.php:59 -msgid "This channel will be completely removed from the network. " -msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 +#: ../../include/conversation.php:1559 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relatie" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Jouw geslacht" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Burgerlijke staat" -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Profielnaam" -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Items getagd met %s" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Jouw volledige naam" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Zoekresultaten voor %s" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titel/omschrijving" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Geen abonnementsbeperkingen gevonden." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Straat en huisnummer" -#: ../../Zotlabs/Module/Settings.php:69 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Woonplaats" -#: ../../Zotlabs/Module/Settings.php:73 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Provincie/gewest/deelstaat" -#: ../../Zotlabs/Module/Settings.php:225 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "Postcode" -#: ../../Zotlabs/Module/Settings.php:228 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Land" -#: ../../Zotlabs/Module/Settings.php:237 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Wie (wanneer van toepassing)" -#: ../../Zotlabs/Module/Settings.php:254 -msgid "Password verification failed." -msgstr "Wachtwoordverificatie mislukt" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" -#: ../../Zotlabs/Module/Settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "Sinds (datum)" -#: ../../Zotlabs/Module/Settings.php:265 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Vertel ons iets over jezelf" -#: ../../Zotlabs/Module/Settings.php:279 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "URL homepagina" -#: ../../Zotlabs/Module/Settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Oorspronkelijk uit" -#: ../../Zotlabs/Module/Settings.php:525 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Religieuze overtuigingen" -#: ../../Zotlabs/Module/Settings.php:592 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Trefwoorden voor in de kanalengids" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisie" -#: ../../Zotlabs/Module/Settings.php:595 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 -msgid "Icon url" -msgstr "Pictogram-URL" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optioneel" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Liefde/romantiek" -#: ../../Zotlabs/Module/Settings.php:607 -msgid "Application not found." -msgstr "Applicatie niet gevonden." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "School/opleiding" -#: ../../Zotlabs/Module/Settings.php:650 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../Zotlabs/Module/Settings.php:654 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Settings.php:655 -msgid "No name" -msgstr "Geen naam" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../Zotlabs/Module/Settings.php:656 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 +#: ../../include/nav.php:90 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../Zotlabs/Module/Settings.php:669 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen aanwezig" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../Zotlabs/Module/Settings.php:676 -msgid "Feature/Addon Settings" -msgstr "Plugin-instellingen" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../Zotlabs/Module/Settings.php:700 -msgid "Current Password" -msgstr "Huidig wachtwoord" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../Zotlabs/Module/Settings.php:701 -msgid "Enter New Password" -msgstr "Nieuw wachtwoord invoeren" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Confirm New Password" -msgstr "Nieuw wachtwoord bevestigen" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import Webpage Elements" +msgstr "Webpagina-elementen importeren" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import selected" +msgstr "Importbestand geselecteerd" -#: ../../Zotlabs/Module/Settings.php:706 -msgid "Remove this account including all its channels" -msgstr "Dit account en al zijn kanalen verwijderen" +#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1718 ../../include/nav.php:108 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../Zotlabs/Module/Settings.php:729 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Acties" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" +#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Paginalink" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../Zotlabs/Module/Webpages.php:227 +msgid "Page Title" +msgstr "Paginatitel" -#: ../../Zotlabs/Module/Settings.php:795 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +#: ../../Zotlabs/Module/Webpages.php:258 +msgid "Invalid file type." +msgstr "Ongeldig bestandsformaat" -#: ../../Zotlabs/Module/Settings.php:837 -msgid "Display Settings" -msgstr "Weergave-instellingen" +#: ../../Zotlabs/Module/Webpages.php:270 +msgid "Error opening zip file" +msgstr "Fout met openen zipbestand" -#: ../../Zotlabs/Module/Settings.php:838 -msgid "Theme Settings" -msgstr "Thema-instellingen" +#: ../../Zotlabs/Module/Webpages.php:281 +msgid "Invalid folder path." +msgstr "Ongeldige maplocatie" -#: ../../Zotlabs/Module/Settings.php:839 -msgid "Custom Theme Settings" -msgstr "Handmatige thema-instellingen" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "No webpage elements detected." +msgstr "Geen webpagina-elementen gedecteerd" -#: ../../Zotlabs/Module/Settings.php:840 -msgid "Content Settings" -msgstr "Inhoudsinstellingen" +#: ../../Zotlabs/Module/Webpages.php:382 +msgid "Import complete." +msgstr "Importeren voltooid." -#: ../../Zotlabs/Module/Settings.php:846 -msgid "Display Theme:" -msgstr "Gebruik thema:" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Agenda-items geïmporteerd." -#: ../../Zotlabs/Module/Settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Geen agenda-items gevonden." -#: ../../Zotlabs/Module/Settings.php:848 -msgid "Preload images before rendering the page" -msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../Zotlabs/Module/Settings.php:848 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" -#: ../../Zotlabs/Module/Settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Titel bewerken" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Titel" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Toon emoticons (smilies) als afbeeldingen" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Categorie" -#: ../../Zotlabs/Module/Settings.php:853 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Categorie" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Begindatum en -tijd bewerken" -#: ../../Zotlabs/Module/Settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Begindatum en -tijd" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" -#: ../../Zotlabs/Module/Settings.php:858 -msgid "Use blog/list mode on grid page" -msgstr "Gebruik blog/lijst-modus op gridpagina" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Einddatum en -tijd bewerken" -#: ../../Zotlabs/Module/Settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Einddatum en -tijd" -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" -#: ../../Zotlabs/Module/Settings.php:860 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." -#: ../../Zotlabs/Module/Settings.php:894 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Omschrijving bewerken" -#: ../../Zotlabs/Module/Settings.php:895 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Locatie bewerken" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Any connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 +msgid "Permission settings" +msgstr "Permissies" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Geavanceerde opties" -#: ../../Zotlabs/Module/Settings.php:899 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Settings.php:900 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: ../../Zotlabs/Module/Settings.php:901 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" -#: ../../Zotlabs/Module/Settings.php:976 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1716 +msgid "Link to Source" +msgstr "Originele locatie" -#: ../../Zotlabs/Module/Settings.php:981 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "agenda" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" -#: ../../Zotlabs/Module/Settings.php:1032 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" -#: ../../Zotlabs/Module/Settings.php:1039 -msgid "Basic Settings" -msgstr "Basis-instellingen" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exporteren" -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Maand" -#: ../../Zotlabs/Module/Settings.php:1042 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Week" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Dag" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Vandaag" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../Zotlabs/Module/Settings.php:1056 +#: ../../Zotlabs/Module/Import.php:548 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" +"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 "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../Zotlabs/Module/Settings.php:1061 +#: ../../Zotlabs/Module/Import.php:554 msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" - -#: ../../Zotlabs/Module/Settings.php:1063 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" - -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "0 or blank to use the website limit." -msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken." +"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 "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../Zotlabs/Module/Settings.php:1065 -#, php-format -msgid "This website expires after %d days." -msgstr "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "This website does not expire imported content." -msgstr "Deze hub laat de inhoud van andere kanalen niet verlopen." +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang." +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Kanaal aanmaken" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Default Post and Publish Permissions" -msgstr "Standaard permissies voor nieuwe berichten en publicaties" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Use my default audience setting for the type of object published" -msgstr "Gebruik mijn standaard privacy-instelling voor dit type publicatie" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[vandaag]" -#: ../../Zotlabs/Module/Settings.php:1081 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../Zotlabs/Module/Settings.php:1082 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een bericht wanneer:" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../Zotlabs/Module/Settings.php:1083 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" -#: ../../Zotlabs/Module/Settings.php:1084 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Aanstoten" -#: ../../Zotlabs/Module/Settings.php:1086 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" -#: ../../Zotlabs/Module/Settings.php:1087 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: ../../Zotlabs/Module/Settings.php:1088 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" -#: ../../Zotlabs/Module/Settings.php:1089 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../Zotlabs/Module/Settings.php:1099 -msgid "Unseen grid activity" -msgstr "Niet bekeken grid-activiteit" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profiel" -#: ../../Zotlabs/Module/Settings.php:1100 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../Zotlabs/Module/Settings.php:1101 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "Recommended" -msgstr "Aanbevolen" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." -#: ../../Zotlabs/Module/Settings.php:1102 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" -#: ../../Zotlabs/Module/Settings.php:1103 -msgid "Events today" -msgstr "Gebeurtenissen van vandaag" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Berichten en reacties" -#: ../../Zotlabs/Module/Settings.php:1105 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Alleen berichten" -#: ../../Zotlabs/Module/Settings.php:1106 -msgid "System info messages" -msgstr "Systeemmededelingen" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../Zotlabs/Module/Settings.php:1107 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versie %s" -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "New connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" -#: ../../Zotlabs/Module/Settings.php:1109 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" -#: ../../Zotlabs/Module/Settings.php:1110 +#: ../../Zotlabs/Module/Siteinfo.php:49 msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Siteinfo.php:59 msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " -#: ../../Zotlabs/Module/Settings.php:1119 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" -#: ../../Zotlabs/Module/Settings.php:1120 -msgid "Default photo upload folder" -msgstr "Standaard fotoalbum voor uploads" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-issues" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "%Y - current year, %m - current month" -msgstr "%Y - dit jaar, %m - deze maand" +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "Default file upload folder" -msgstr "Standaard bestandsmap voor uploads" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Hubbeheerders: " -#: ../../Zotlabs/Module/Settings.php:1123 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 +msgid "Blocks" +msgstr "Blokken" -#: ../../Zotlabs/Module/Settings.php:1125 -msgid "Remove this channel." -msgstr "Verwijder dit kanaal." +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Bloktitel" -#: ../../Zotlabs/Module/Settings.php:1126 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-service voor Firefox Share" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 +msgid "Layouts" +msgstr "Lay-outs" -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Start calendar week on monday" -msgstr "Begin in de agenda de week op maandag" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Hub - Setup" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Lay-out-omschrijving" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Download PDL-bestand" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Beoordeling: " -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Website: " -#: ../../Zotlabs/Module/Setup.php:203 +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Omschrijving: " + +#: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "System check" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Check again" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 +msgid "Import" +msgstr "Importeren" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Database connection" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "In order to install $Projectname we need to know how to connect to your database." +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Database Port" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Berichten" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Bericht ingetrokken." -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Database Name" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Vul een URL in:" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Database Type" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Your account email address must match this in order to use the web admin panel." +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Privébericht versturen" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Hub URL" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "Aan:" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Onderwerp:" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1239 +msgid "Attach file" +msgstr "Bestand toevoegen" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Hub settings" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Verzenden" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Enable $Projectname advanced features?" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1284 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../include/conversation.php:1289 +msgid "Encrypt text" +msgstr "Tekst versleutelen" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Bericht verwijderen" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "PHP version" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Afleveringsrapport" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Bericht intrekken" -#: ../../Zotlabs/Module/Setup.php:405 -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 "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." +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" -#: ../../Zotlabs/Module/Setup.php:409 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Antwoord versturen" -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." -#: ../../Zotlabs/Module/Setup.php:445 -#, 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 "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." +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "You can adjust these settings in the servers php.ini." +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "PHP upload limits" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "is nu verbonden met" -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/conversation.php:955 ../../include/nav.php:88 +msgid "View Profile" +msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Recente activiteit/berichten" -#: ../../Zotlabs/Module/Setup.php:497 -msgid "xml PHP module" -msgstr "xml PHP module" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" -#: ../../Zotlabs/Module/Setup.php:501 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Deze connectie is geblokkeerd!" -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Niet meer negeren" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" -#: ../../Zotlabs/Module/Setup.php:515 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Deze connectie wordt genegeerd!" -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Niet meer archiveren" -#: ../../Zotlabs/Module/Setup.php:523 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archiveren" -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Connedit.php:594 msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" -#: ../../Zotlabs/Module/Setup.php:531 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Deze connectie is gearchiveerd!" -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Niet meer verbergen" -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Verbergen" -#: ../../Zotlabs/Module/Setup.php:557 -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 "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." +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../Zotlabs/Module/Setup.php:558 -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 "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." +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Deze connectie is verborgen!" -#: ../../Zotlabs/Module/Setup.php:559 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" -#: ../../Zotlabs/Module/Setup.php:560 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +msgid "Me" +msgstr "Ik" -#: ../../Zotlabs/Module/Setup.php:563 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +msgid "Family" +msgstr "Familie" -#: ../../Zotlabs/Module/Setup.php:577 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../Zotlabs/Module/Setup.php:578 -#, 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 "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." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../Zotlabs/Module/Setup.php:580 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Verwantschapsfilter instellen" -#: ../../Zotlabs/Module/Setup.php:583 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Profiel instellen" -#: ../../Zotlabs/Module/Setup.php:599 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Verwantschapsfilter en profiel instellen" -#: ../../Zotlabs/Module/Setup.php:603 -msgid "store is writable" -msgstr "store is writable" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "geen" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" -#: ../../Zotlabs/Module/Setup.php:637 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" -#: ../../Zotlabs/Module/Setup.php:639 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" -#: ../../Zotlabs/Module/Setup.php:640 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Het primaire kanaaladres van deze connectie is" + +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Beschikbare locaties:" -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Connedit.php:758 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../Zotlabs/Module/Setup.php:643 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Hulpmiddelen" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../Zotlabs/Module/Setup.php:652 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../Zotlabs/Module/Setup.php:661 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../Zotlabs/Module/Setup.php:685 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Berichtenfilter" -#: ../../Zotlabs/Module/Setup.php:719 -msgid "

    What next

    " -msgstr "

    What next

    " +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importeer alleen berichten met deze tekst" -#: ../../Zotlabs/Module/Setup.php:720 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." - -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Bestanden: met mij gedeeld" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NIEUW" +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Importeer geen berichten met deze tekst" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Verwijder alle bestanden" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Deze informatie is openbaar!" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Verwijder dit bestand" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Connectie moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Connedit.php:780 #, php-format -msgid "Version %s" -msgstr "Versie %s" - -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" - -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken." -#: ../../Zotlabs/Module/Siteinfo.php:66 +#: ../../Zotlabs/Module/Connedit.php:787 msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Laatste wijziging:" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" +#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 +#: ../../include/nav.php:167 +msgid "Apps" +msgstr "Apps" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Ga verder" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname-issues" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" -#: ../../Zotlabs/Module/Siteinfo.php:80 +#: ../../Zotlabs/Module/Connect.php:96 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Authenticeren" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Kanaalnaam" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Inloggen." -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" - -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Bron niet gevonden" - -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Bron bewerken" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Verwijder dit account" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "WAARSCHUWING: " -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s niet meer" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../Zotlabs/Module/Suggest.php:39 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 -msgid "post" -msgstr "bericht" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "reactie" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag verwijderd" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Verwijder item-tag" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Kies een tag om te verwijderen" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../Zotlabs/Module/Uexport.php:57 +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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" - -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Ding toegevoegd" - -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" - -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Ding weergeven" - -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Item niet gevonden" - -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Ding bewerken" - -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Kies een profiel" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Plaats een bericht" - -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." - -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" - -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" - -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL voor foto van ding (optioneel)" - -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" - -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanaal exporteren" - -#: ../../Zotlabs/Module/Uexport.php:57 -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 "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." - -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" #: ../../Zotlabs/Module/Uexport.php:59 msgid "" @@ -6221,194 +6095,477 @@ msgid "" " please import or restore these in date order (oldest first)." msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." -#: ../../Zotlabs/Module/Viewconnections.php:62 -msgid "No connections." -msgstr "Geen connecties." +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" + +#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../Zotlabs/Module/Viewconnections.php:75 +#: ../../Zotlabs/Module/Search.php:216 #, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +msgid "Items tagged with: %s" +msgstr "Items getagd met %s" -#: ../../Zotlabs/Module/Viewconnections.php:104 -msgid "View Connections" -msgstr "Connecties weergeven" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Zoekresultaten voor %s" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Bron van item" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Acties" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Paginalink" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Paginatitel" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan opzoeken" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Bugrapport" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Bladwijzers bekijken" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Mijn chatkanalen" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Firefox Share" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Diagnose op afstand" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "URL voor foto van ding (optioneel)" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Inloggen" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Grid" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Agenda" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Kanalengids" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "Dubbel bericht tegengehouden." -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Privéberichten" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chatten" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Bestanden: met mij gedeeld" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NIEUW" -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Verwijder alle bestanden" -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Bericht" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Verwijder dit bestand" -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Niet gevonden" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/conversation.php:1728 ../../include/conversation.php:1731 +#: ../../include/features.php:57 ../../include/nav.php:110 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Zandbak" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\"" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Revisies vergelijken" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Ongedaan maken" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 -msgid "$Projectname Notification" -msgstr "$Projectname-notificatie" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Vul de naam in van jouw nieuwe wiki:" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Vul de naam in van de nieuwe pagina:" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 -msgid "Thank You," -msgstr "Bedankt," +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Vul de nieuwe naam in:" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Afbeelding uit een fotoalbum invoegen" -#: ../../Zotlabs/Lib/Enotify.php:100 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 +msgid "Embed an image from your albums" +msgstr "Afbeelding uit jouw albums invoegen" -#: ../../Zotlabs/Lib/Enotify.php:104 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 +#: ../../include/conversation.php:1291 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Lib/Enotify.php:106 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Kies afbeeldingen om in te voegen" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Kies een album" -#: ../../Zotlabs/Lib/Enotify.php:107 -msgid "a private message" -msgstr "een privébericht" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Kies een ander album..." + +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Fout met ophalen albumlijst" + +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Fout met ophalen fotolink" + +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Fout met ophalen album" + +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." + +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Bron aangemaakt." + +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Bron aangemaakt." + +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" + +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:639 +#: ../../include/features.php:71 +msgid "Channel Sources" +msgstr "Kanaalbronnen" + +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" + +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nieuwe bron" + +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" + +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Kanaalnaam" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)" + +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Bron niet gevonden" + +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Bron bewerken" + +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Bron verwijderen" + +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Bron verwijderd" + +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." + +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" + +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s niet meer" + +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." + +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" + +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "bericht" + +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 +#: ../../include/conversation.php:150 +msgid "comment" +msgstr "reactie" + +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" + +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag verwijderd" + +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Verwijder item-tag" + +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Kies een tag om te verwijderen" + +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanaal toegevoegd." + +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Geen connecties." + +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" + +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Connecties weergeven" + +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Bron van item" + +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" + +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" + +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" + +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" + +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ik ben online" + +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" + +#: ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Functie uitgeschakeld." + +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Naam chatkanaal" + +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Aantal minuten voordat chatberichten worden verwijderd" + +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" + +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Geen chatkanalen beschikbaar" + +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Verloopt na" + +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" + +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" + +#: ../../Zotlabs/Lib/Chatroom.php:27 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" + +#: ../../Zotlabs/Lib/Chatroom.php:36 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" + +#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" + +#: ../../Zotlabs/Lib/Chatroom.php:126 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" + +#: ../../Zotlabs/Lib/Chatroom.php:147 +msgid "Room is full" +msgstr "Chatkanaal is vol" + +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 +msgid "$Projectname Notification" +msgstr "$Projectname-notificatie" + +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 +msgid "$projectname" +msgstr "$projectname" + +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 +msgid "Thank You," +msgstr "Bedankt," + +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" + +#: ../../Zotlabs/Lib/Enotify.php:100 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../Zotlabs/Lib/Enotify.php:104 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" + +#: ../../Zotlabs/Lib/Enotify.php:106 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:107 +msgid "a private message" +msgstr "een privébericht" #: ../../Zotlabs/Lib/Enotify.php:108 #, php-format @@ -6574,11 +6731,168 @@ msgstr "maakte een nieuw bericht aan" msgid "commented on %s's post" msgstr "gaf een reactie op een bericht van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "Niet voor iedereen zichtbaar" +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Hubbeheerder" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Bugrapport" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Bladwijzers bekijken" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Mijn chatkanalen" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Diagnose op afstand" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:90 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:114 +#: ../../boot.php:1738 +msgid "Login" +msgstr "Inloggen" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:183 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:186 +msgid "Channel Home" +msgstr "Jouw kanaal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1682 +#: ../../include/conversation.php:1685 ../../include/nav.php:205 +msgid "Events" +msgstr "Agenda" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:171 +msgid "Directory" +msgstr "Kanalengids" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:197 +msgid "Mail" +msgstr "Privéberichten" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:98 +msgid "Chat" +msgstr "Chatten" + +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Onderzoeken" + +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Voorstellen" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Willekeurig kanaal" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Uitnodigen " + +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1494 +msgid "Features" +msgstr "Extra functies" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Taal" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Bericht" + +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profielfoto" + +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Aanschaffen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Alleen ik" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Openbaar" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Iedereen in het $Projectname-netwerk" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Iedereen op %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Al mijn geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" + +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 +msgid "Private Message" +msgstr "Niet voor iedereen zichtbaar" + +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Kies" @@ -6626,11 +6940,11 @@ msgstr "Ster toevoegen of verwijderen" msgid "starred" msgstr "met ster" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Berichtkenmerk gevalideerd" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Berichtkenmerk onjuist" @@ -6638,114 +6952,115 @@ msgstr "Berichtkenmerk onjuist" msgid "Add Tag" msgstr "Tag toevoegen" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:316 msgid "like" msgstr "vind dit leuk" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:317 msgid "dislike" msgstr "vind dit niet leuk" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:267 msgid "Share This" msgstr "Delen" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:267 msgid "share" msgstr "delen" -#: ../../Zotlabs/Lib/ThreadItem.php:275 +#: ../../Zotlabs/Lib/ThreadItem.php:276 msgid "Delivery Report" msgstr "Afleveringsrapport" -#: ../../Zotlabs/Lib/ThreadItem.php:293 +#: ../../Zotlabs/Lib/ThreadItem.php:294 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d reactie" msgstr[1] "%d reacties weergeven" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#: ../../Zotlabs/Lib/ThreadItem.php:323 ../../Zotlabs/Lib/ThreadItem.php:324 #, php-format msgid "View %s's profile - %s" msgstr "Profiel van %s bekijken - %s" -#: ../../Zotlabs/Lib/ThreadItem.php:326 +#: ../../Zotlabs/Lib/ThreadItem.php:327 msgid "to" msgstr "aan" -#: ../../Zotlabs/Lib/ThreadItem.php:327 +#: ../../Zotlabs/Lib/ThreadItem.php:328 msgid "via" msgstr "via" -#: ../../Zotlabs/Lib/ThreadItem.php:328 +#: ../../Zotlabs/Lib/ThreadItem.php:329 msgid "Wall-to-Wall" msgstr "Kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:329 +#: ../../Zotlabs/Lib/ThreadItem.php:330 msgid "via Wall-To-Wall:" msgstr "via kanaal-naar-kanaal" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:342 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "van %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "laatst bewerkt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Verloopt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:370 +#: ../../Zotlabs/Lib/ThreadItem.php:371 msgid "Save Bookmarks" msgstr "Bladwijzers opslaan" -#: ../../Zotlabs/Lib/ThreadItem.php:371 +#: ../../Zotlabs/Lib/ThreadItem.php:372 msgid "Add to Calendar" msgstr "Aan agenda toevoegen" -#: ../../Zotlabs/Lib/ThreadItem.php:380 +#: ../../Zotlabs/Lib/ThreadItem.php:381 msgid "Mark all seen" msgstr "Markeer alles als bekeken" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" +#: ../../Zotlabs/Lib/ThreadItem.php:422 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s alle" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1234 msgid "Bold" msgstr "Vet" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1235 msgid "Italic" msgstr "Cursief" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1236 msgid "Underline" msgstr "Onderstrepen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1237 msgid "Quote" msgstr "Citeren" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1238 msgid "Code" msgstr "Broncode" -#: ../../Zotlabs/Lib/ThreadItem.php:716 +#: ../../Zotlabs/Lib/ThreadItem.php:717 msgid "Image" msgstr "Afbeelding" -#: ../../Zotlabs/Lib/ThreadItem.php:717 +#: ../../Zotlabs/Lib/ThreadItem.php:718 msgid "Insert Link" msgstr "Link invoegen" -#: ../../Zotlabs/Lib/ThreadItem.php:718 +#: ../../Zotlabs/Lib/ThreadItem.php:719 msgid "Video" msgstr "Video" @@ -6753,461 +7068,507 @@ msgstr "Video" msgid "No username found in import file." msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." -#: ../../include/dba/dba_driver.php:171 +#: ../../include/dba/dba_driver.php:173 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorieën" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tags" +#: ../../include/network.php:1935 ../../include/account.php:317 +#: ../../include/account.php:344 ../../include/account.php:404 +msgid "Administrator" +msgstr "Beheerder" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Geen onderwerp" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "heb" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "heeft" +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "wil" +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU social" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "wil" +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "vindt dit leuk" +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Start:" +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Einde:" +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Niet aangegeven" +#: ../../include/oembed.php:340 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Actie vereist" +#: ../../include/oembed.php:349 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Voltooid" +#: ../../include/permissions.php:29 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "In behandeling" +#: ../../include/permissions.php:33 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "Geannuleerd" +#: ../../include/permissions.php:37 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." +#: ../../include/permissions.php:40 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../include/permissions.php:40 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../include/permissions.php:42 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../include/permissions.php:42 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." +#: ../../include/permissions.php:43 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../include/permissions.php:44 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" + +#: ../../include/permissions.php:45 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" + +#: ../../include/permissions.php:47 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" + +#: ../../include/permissions.php:49 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" + +#: ../../include/permissions.php:49 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../include/items.php:1142 +#: ../../include/items.php:899 ../../include/items.php:944 +msgid "(Unknown)" +msgstr "(Onbekend)" + +#: ../../include/items.php:1143 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." + +#: ../../include/items.php:1145 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." + +#: ../../include/items.php:1147 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." + +#: ../../include/items.php:1149 msgid "Visible to anybody authenticated." msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../include/items.php:1144 +#: ../../include/items.php:1151 #, php-format msgid "Visible to anybody on %s." msgstr "Voor iedereen op %s zichtbaar." -#: ../../include/items.php:1146 +#: ../../include/items.php:1153 msgid "Visible to all connections." msgstr "Voor alle connecties zichtbaar." -#: ../../include/items.php:1148 +#: ../../include/items.php:1155 msgid "Visible to approved connections." msgstr "Voor alle geaccepteerde connecties zichtbaar." -#: ../../include/items.php:1150 +#: ../../include/items.php:1157 msgid "Visible to specific connections." msgstr "Voor specifieke connecties zichtbaar." -#: ../../include/items.php:3909 +#: ../../include/items.php:3947 msgid "Privacy group is empty." msgstr "Privacygroep is leeg" -#: ../../include/items.php:3916 +#: ../../include/items.php:3954 #, php-format msgid "Privacy group: %s" msgstr "Privacygroep: %s" -#: ../../include/items.php:3928 +#: ../../include/items.php:3966 msgid "Connection not found." msgstr "Connectie niet gevonden." -#: ../../include/items.php:4277 +#: ../../include/items.php:4319 msgid "profile photo" msgstr "profielfoto" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." - -#: ../../include/text.php:428 +#: ../../include/text.php:404 msgid "prev" msgstr "vorige" -#: ../../include/text.php:430 +#: ../../include/text.php:406 msgid "first" msgstr "eerste" -#: ../../include/text.php:459 +#: ../../include/text.php:435 msgid "last" msgstr "laatste" -#: ../../include/text.php:462 +#: ../../include/text.php:438 msgid "next" msgstr "volgende" -#: ../../include/text.php:472 +#: ../../include/text.php:448 msgid "older" msgstr "ouder" -#: ../../include/text.php:474 +#: ../../include/text.php:450 msgid "newer" msgstr "nieuwer" -#: ../../include/text.php:863 +#: ../../include/text.php:843 msgid "No connections" msgstr "Geen connecties" -#: ../../include/text.php:888 +#: ../../include/text.php:868 #, php-format msgid "View all %s connections" msgstr "Toon alle %s connecties" -#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/text.php:1013 ../../include/text.php:1018 msgid "poke" msgstr "aanstoten" -#: ../../include/text.php:1033 ../../include/text.php:1038 +#: ../../include/text.php:1013 ../../include/text.php:1018 #: ../../include/conversation.php:243 msgid "poked" msgstr "aangestoten" -#: ../../include/text.php:1039 +#: ../../include/text.php:1019 msgid "ping" msgstr "ping" -#: ../../include/text.php:1039 +#: ../../include/text.php:1019 msgid "pinged" msgstr "gepingd" -#: ../../include/text.php:1040 +#: ../../include/text.php:1020 msgid "prod" msgstr "por" -#: ../../include/text.php:1040 +#: ../../include/text.php:1020 msgid "prodded" msgstr "gepord" -#: ../../include/text.php:1041 +#: ../../include/text.php:1021 msgid "slap" msgstr "slaan" -#: ../../include/text.php:1041 +#: ../../include/text.php:1021 msgid "slapped" msgstr "sloeg" -#: ../../include/text.php:1042 +#: ../../include/text.php:1022 msgid "finger" msgstr "finger" -#: ../../include/text.php:1042 +#: ../../include/text.php:1022 msgid "fingered" msgstr "gefingerd" -#: ../../include/text.php:1043 +#: ../../include/text.php:1023 msgid "rebuff" msgstr "afpoeieren" -#: ../../include/text.php:1043 +#: ../../include/text.php:1023 msgid "rebuffed" msgstr "afgepoeierd" -#: ../../include/text.php:1055 +#: ../../include/text.php:1035 msgid "happy" msgstr "gelukkig" -#: ../../include/text.php:1056 +#: ../../include/text.php:1036 msgid "sad" msgstr "bedroefd" -#: ../../include/text.php:1057 +#: ../../include/text.php:1037 msgid "mellow" msgstr "mellow" -#: ../../include/text.php:1058 +#: ../../include/text.php:1038 msgid "tired" msgstr "moe" -#: ../../include/text.php:1059 +#: ../../include/text.php:1039 msgid "perky" msgstr "parmantig" -#: ../../include/text.php:1060 +#: ../../include/text.php:1040 msgid "angry" msgstr "boos" -#: ../../include/text.php:1061 +#: ../../include/text.php:1041 msgid "stupefied" msgstr "verbijsterd" -#: ../../include/text.php:1062 +#: ../../include/text.php:1042 msgid "puzzled" msgstr "verward" -#: ../../include/text.php:1063 +#: ../../include/text.php:1043 msgid "interested" msgstr "geïnteresseerd" -#: ../../include/text.php:1064 +#: ../../include/text.php:1044 msgid "bitter" msgstr "verbitterd" -#: ../../include/text.php:1065 +#: ../../include/text.php:1045 msgid "cheerful" msgstr "vrolijk" -#: ../../include/text.php:1066 +#: ../../include/text.php:1046 msgid "alive" msgstr "levendig" -#: ../../include/text.php:1067 +#: ../../include/text.php:1047 msgid "annoyed" msgstr "geërgerd" -#: ../../include/text.php:1068 +#: ../../include/text.php:1048 msgid "anxious" msgstr "bezorgd" -#: ../../include/text.php:1069 +#: ../../include/text.php:1049 msgid "cranky" msgstr "humeurig" -#: ../../include/text.php:1070 +#: ../../include/text.php:1050 msgid "disturbed" msgstr "verontrust" -#: ../../include/text.php:1071 +#: ../../include/text.php:1051 msgid "frustrated" msgstr "gefrustreerd " -#: ../../include/text.php:1072 +#: ../../include/text.php:1052 msgid "depressed" msgstr "gedeprimeerd" -#: ../../include/text.php:1073 +#: ../../include/text.php:1053 msgid "motivated" msgstr "gemotiveerd" -#: ../../include/text.php:1074 +#: ../../include/text.php:1054 msgid "relaxed" msgstr "ontspannen" -#: ../../include/text.php:1075 +#: ../../include/text.php:1055 msgid "surprised" msgstr "verrast" -#: ../../include/text.php:1257 ../../include/js_strings.php:70 +#: ../../include/text.php:1239 ../../include/js_strings.php:70 msgid "Monday" msgstr "maandag" -#: ../../include/text.php:1257 ../../include/js_strings.php:71 +#: ../../include/text.php:1239 ../../include/js_strings.php:71 msgid "Tuesday" msgstr "dinsdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:72 +#: ../../include/text.php:1239 ../../include/js_strings.php:72 msgid "Wednesday" msgstr "woensdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:73 +#: ../../include/text.php:1239 ../../include/js_strings.php:73 msgid "Thursday" msgstr "donderdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:74 +#: ../../include/text.php:1239 ../../include/js_strings.php:74 msgid "Friday" msgstr "vrijdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:75 +#: ../../include/text.php:1239 ../../include/js_strings.php:75 msgid "Saturday" msgstr "zaterdag" -#: ../../include/text.php:1257 ../../include/js_strings.php:69 +#: ../../include/text.php:1239 ../../include/js_strings.php:69 msgid "Sunday" msgstr "zondag" -#: ../../include/text.php:1261 ../../include/js_strings.php:45 +#: ../../include/text.php:1243 ../../include/js_strings.php:45 msgid "January" msgstr "januari" -#: ../../include/text.php:1261 ../../include/js_strings.php:46 +#: ../../include/text.php:1243 ../../include/js_strings.php:46 msgid "February" msgstr "februari" -#: ../../include/text.php:1261 ../../include/js_strings.php:47 +#: ../../include/text.php:1243 ../../include/js_strings.php:47 msgid "March" msgstr "maart" -#: ../../include/text.php:1261 ../../include/js_strings.php:48 +#: ../../include/text.php:1243 ../../include/js_strings.php:48 msgid "April" msgstr "april" -#: ../../include/text.php:1261 +#: ../../include/text.php:1243 msgid "May" msgstr "mei" -#: ../../include/text.php:1261 ../../include/js_strings.php:50 +#: ../../include/text.php:1243 ../../include/js_strings.php:50 msgid "June" msgstr "juni" -#: ../../include/text.php:1261 ../../include/js_strings.php:51 +#: ../../include/text.php:1243 ../../include/js_strings.php:51 msgid "July" msgstr "juli" -#: ../../include/text.php:1261 ../../include/js_strings.php:52 +#: ../../include/text.php:1243 ../../include/js_strings.php:52 msgid "August" msgstr "augustus" -#: ../../include/text.php:1261 ../../include/js_strings.php:53 +#: ../../include/text.php:1243 ../../include/js_strings.php:53 msgid "September" msgstr "september" -#: ../../include/text.php:1261 ../../include/js_strings.php:54 +#: ../../include/text.php:1243 ../../include/js_strings.php:54 msgid "October" msgstr "oktober" -#: ../../include/text.php:1261 ../../include/js_strings.php:55 +#: ../../include/text.php:1243 ../../include/js_strings.php:55 msgid "November" msgstr "november" -#: ../../include/text.php:1261 ../../include/js_strings.php:56 +#: ../../include/text.php:1243 ../../include/js_strings.php:56 msgid "December" msgstr "december" -#: ../../include/text.php:1338 ../../include/text.php:1342 +#: ../../include/text.php:1320 ../../include/text.php:1324 msgid "Unknown Attachment" msgstr "Onbekende bijlage" -#: ../../include/text.php:1344 +#: ../../include/text.php:1326 msgid "unknown" msgstr "onbekend" -#: ../../include/text.php:1380 +#: ../../include/text.php:1362 msgid "remove category" msgstr "categorie verwijderen" -#: ../../include/text.php:1457 +#: ../../include/text.php:1439 msgid "remove from file" msgstr "uit map verwijderen" -#: ../../include/text.php:1753 ../../include/text.php:1824 +#: ../../include/text.php:1738 ../../include/text.php:1809 msgid "default" msgstr "standaard" -#: ../../include/text.php:1761 +#: ../../include/text.php:1746 msgid "Page layout" msgstr "Pagina-lay-out" -#: ../../include/text.php:1761 +#: ../../include/text.php:1746 msgid "You can create your own with the layouts tool" msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" -#: ../../include/text.php:1803 +#: ../../include/text.php:1788 msgid "Page content type" msgstr "Opmaaktype pagina" -#: ../../include/text.php:1836 +#: ../../include/text.php:1821 msgid "Select an alternate language" msgstr "Kies een andere taal" -#: ../../include/text.php:1953 +#: ../../include/text.php:1958 msgid "activity" msgstr "activiteit" -#: ../../include/text.php:2262 +#: ../../include/text.php:2259 msgid "Design Tools" msgstr "Ontwerp-hulpmiddelen" -#: ../../include/text.php:2268 +#: ../../include/text.php:2265 msgid "Pages" msgstr "Pagina's" +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Website importeren..." + +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Kies een map om te importeren" + +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Vanuit een zipbestand importeren:" + +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Vanuit de cloud importeren:" + +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/maplocatie" + +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Voer de locatie in van de websitebestanden" + +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Kies een map" + +#: ../../include/widgets.php:46 ../../include/widgets.php:429 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Categorieën" + #: ../../include/widgets.php:103 msgid "System" msgstr "Systeem" @@ -7249,7 +7610,7 @@ msgstr "Aantekeningen" msgid "Remove term" msgstr "Verwijder zoekterm" -#: ../../include/widgets.php:281 ../../include/features.php:84 +#: ../../include/widgets.php:281 ../../include/features.php:85 msgid "Saved Searches" msgstr "Opgeslagen zoekopdrachten" @@ -7257,8 +7618,8 @@ msgstr "Opgeslagen zoekopdrachten" msgid "add" msgstr "toevoegen" -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 +#: ../../include/widgets.php:310 ../../include/features.php:99 +#: ../../include/contact_widgets.php:53 msgid "Saved Folders" msgstr "Bewaarde mappen" @@ -7307,504 +7668,736 @@ msgstr "Kanaal exporteren" msgid "Connected apps" msgstr "Verbonden applicaties" -#: ../../include/widgets.php:622 +#: ../../include/widgets.php:631 msgid "Premium Channel Settings" msgstr "Instellingen premiumkanaal" -#: ../../include/widgets.php:651 +#: ../../include/widgets.php:660 msgid "Private Mail Menu" msgstr "Privéberichten" -#: ../../include/widgets.php:653 +#: ../../include/widgets.php:662 msgid "Combined View" msgstr "Gecombineerd postvak" -#: ../../include/widgets.php:658 ../../include/nav.php:196 +#: ../../include/widgets.php:667 ../../include/nav.php:200 msgid "Inbox" msgstr "Postvak IN" -#: ../../include/widgets.php:663 ../../include/nav.php:197 +#: ../../include/widgets.php:672 ../../include/nav.php:201 msgid "Outbox" msgstr "Postvak UIT" -#: ../../include/widgets.php:668 ../../include/nav.php:198 +#: ../../include/widgets.php:677 ../../include/nav.php:202 msgid "New Message" msgstr "Nieuw bericht" -#: ../../include/widgets.php:685 ../../include/widgets.php:697 +#: ../../include/widgets.php:694 ../../include/widgets.php:706 msgid "Conversations" msgstr "Conversaties" -#: ../../include/widgets.php:689 +#: ../../include/widgets.php:698 msgid "Received Messages" msgstr "Ontvangen berichten" -#: ../../include/widgets.php:693 +#: ../../include/widgets.php:702 msgid "Sent Messages" msgstr "Verzonden berichten" -#: ../../include/widgets.php:707 +#: ../../include/widgets.php:716 msgid "No messages." msgstr "Geen berichten" -#: ../../include/widgets.php:725 +#: ../../include/widgets.php:734 msgid "Delete conversation" msgstr "Verwijder conversatie" -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Agenda-menu" - -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Dag tonen" - -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Week tonen" - -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Maand tonen" - -#: ../../include/widgets.php:766 +#: ../../include/widgets.php:760 msgid "Events Tools" msgstr "Agenda-hulpmiddelen" -#: ../../include/widgets.php:767 +#: ../../include/widgets.php:761 msgid "Export Calendar" msgstr "Exporteren" -#: ../../include/widgets.php:768 +#: ../../include/widgets.php:762 msgid "Import Calendar" msgstr "Importeren" -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 +#: ../../include/widgets.php:850 ../../include/conversation.php:1695 +#: ../../include/conversation.php:1698 msgid "Chatrooms" msgstr "Chatkanalen" -#: ../../include/widgets.php:846 +#: ../../include/widgets.php:854 msgid "Overview" msgstr "Overzicht" -#: ../../include/widgets.php:853 +#: ../../include/widgets.php:861 msgid "Chat Members" msgstr "Chatleden" -#: ../../include/widgets.php:876 +#: ../../include/widgets.php:883 +msgid "Wiki List" +msgstr "Wiki's" + +#: ../../include/widgets.php:921 +msgid "Wiki Pages" +msgstr "Wikipagina's" + +#: ../../include/widgets.php:956 msgid "Bookmarked Chatrooms" msgstr "Bladwijzers van chatkanalen" -#: ../../include/widgets.php:899 +#: ../../include/widgets.php:979 msgid "Suggested Chatrooms" msgstr "Voorgestelde chatkanalen" -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 +#: ../../include/widgets.php:1125 ../../include/widgets.php:1237 msgid "photo/image" msgstr "foto/afbeelding" -#: ../../include/widgets.php:1099 +#: ../../include/widgets.php:1180 msgid "Click to show more" msgstr "Klik voor meer" -#: ../../include/widgets.php:1250 +#: ../../include/widgets.php:1331 msgid "Rating Tools" msgstr "Beoordelingen" -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 +#: ../../include/widgets.php:1335 ../../include/widgets.php:1337 msgid "Rate Me" msgstr "Beoordeel mij" -#: ../../include/widgets.php:1259 +#: ../../include/widgets.php:1340 msgid "View Ratings" msgstr "Bekijk beoordelingen" -#: ../../include/widgets.php:1316 +#: ../../include/widgets.php:1424 msgid "Forums" msgstr "Forums" -#: ../../include/widgets.php:1345 +#: ../../include/widgets.php:1453 msgid "Tasks" msgstr "Taken" -#: ../../include/widgets.php:1354 +#: ../../include/widgets.php:1462 msgid "Documentation" msgstr "Documentatie" -#: ../../include/widgets.php:1356 +#: ../../include/widgets.php:1464 msgid "Project/Site Information" msgstr "Project- en hub-informatie" -#: ../../include/widgets.php:1357 +#: ../../include/widgets.php:1465 msgid "For Members" msgstr "Voor leden" -#: ../../include/widgets.php:1358 +#: ../../include/widgets.php:1466 msgid "For Administrators" msgstr "Voor beheerders" -#: ../../include/widgets.php:1359 +#: ../../include/widgets.php:1467 msgid "For Developers" msgstr "Voor ontwikkelaars" -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 +#: ../../include/widgets.php:1491 ../../include/widgets.php:1529 msgid "Member registrations waiting for confirmation" msgstr "Accounts die op goedkeuring wachten" -#: ../../include/widgets.php:1389 +#: ../../include/widgets.php:1497 msgid "Inspect queue" msgstr "Inspecteer berichtenwachtrij" -#: ../../include/widgets.php:1391 +#: ../../include/widgets.php:1499 msgid "DB updates" msgstr "Database-updates" -#: ../../include/widgets.php:1416 ../../include/nav.php:216 +#: ../../include/widgets.php:1524 ../../include/nav.php:220 msgid "Admin" msgstr "Beheer" -#: ../../include/widgets.php:1417 +#: ../../include/widgets.php:1525 msgid "Plugin Features" msgstr "Plugin-opties" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nieuw venster" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Wie kan dit zien?" -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Handmatige selectie" -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Tonen" -#: ../../include/bookmarks.php:35 +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Niet tonen" + +#: ../../include/acl_selectors.php:207 #, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien." -#: ../../include/api.php:1336 +#: ../../include/api.php:1330 msgid "Public Timeline" msgstr "Openbare tijdlijn" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 schreef:" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Opties kanalengids" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Alleen deze hub" +#: ../../include/channel.php:963 ../../include/nav.php:92 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Uitloggen" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Status:" -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Nu online" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "F j Y" -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "F j" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Geboortedatum:" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Tags:" -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religie:" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Inloggen" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisie:" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Jouw grid" +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Jouw kanaal" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Notificaties" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Notificaties" +#: ../../include/datetime.php:272 ../../boot.php:2577 +msgid "never" +msgstr "nooit" -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Elk uur" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nieuw venster" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Dagelijks" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Kanalen vinden" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Man" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Vrouw" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Willekeurig profiel" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transgender" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transseksueel" + +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" + +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Genderneutraal" + +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "Niet gespecificeerd" + +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Nog niet beslist" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Mannen" + +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Vrouwen" + +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Homoseksueel" + +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" + +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Geen voorkeur" + +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Biseksueel" + +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autoseksueel" + +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Seksuele onthouding" + +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Maagd" + +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Afwijkend" + +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisj" + +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Veel" + +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Aseksueel" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Alleen" + +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Eenzaam" + +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Beschikbaar" + +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Niet beschikbaar" + +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" + +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Smoorverliefd" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Aan het daten" + +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Ontrouw" + +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Seksverslaafd" + +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" + +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Ongebonden/vluchtig" + +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verloofd" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Getrouwd" + +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" + +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partners" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Samenwonend" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Common-law-huwelijk" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Gelukkig" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Niet op zoek" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Verraden" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Uit elkaar" + +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Onstabiel" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Gescheiden" + +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" + +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Onzeker" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Het is ingewikkeld" + +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Maakt mij niks uit" + +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Vraag het me" + +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "een nieuwe foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1668 +msgid "Photo Albums" +msgstr "Fotoalbums" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" + +#: ../../include/security.php:109 +msgid "guest:" +msgstr "gast:" + +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " #: ../../include/conversation.php:204 #, php-format @@ -7816,975 +8409,861 @@ msgstr "%1$s is nu met %2$s verbonden" msgid "%1$s poked %2$s" msgstr "%1$s heeft %2$s aangestoten" -#: ../../include/conversation.php:691 +#: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" msgstr "Bekijk het profiel van %s @ %s" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:713 msgid "Categories:" msgstr "Categorieën:" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:714 msgid "Filed under:" msgstr "Bewaard onder:" -#: ../../include/conversation.php:738 +#: ../../include/conversation.php:741 msgid "View in context" msgstr "In context bekijken" -#: ../../include/conversation.php:847 +#: ../../include/conversation.php:851 msgid "remove" msgstr "verwijderen" -#: ../../include/conversation.php:852 +#: ../../include/conversation.php:855 ../../include/nav.php:251 +msgid "Loading..." +msgstr "Aan het laden..." + +#: ../../include/conversation.php:856 msgid "Delete Selected Items" msgstr "Verwijder de geselecteerde items" -#: ../../include/conversation.php:948 +#: ../../include/conversation.php:949 msgid "View Source" msgstr "Bron weergeven" -#: ../../include/conversation.php:949 +#: ../../include/conversation.php:950 msgid "Follow Thread" msgstr "Conversatie volgen" -#: ../../include/conversation.php:950 +#: ../../include/conversation.php:951 msgid "Unfollow Thread" msgstr "Conversatie niet meer volgen" -#: ../../include/conversation.php:955 +#: ../../include/conversation.php:956 msgid "Activity/Posts" msgstr "Activiteit/berichten connectie" -#: ../../include/conversation.php:957 +#: ../../include/conversation.php:958 msgid "Edit Connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:958 +#: ../../include/conversation.php:959 msgid "Message" msgstr "Bericht" -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1076 #, php-format msgid "%s likes this." msgstr "%s vindt dit leuk." -#: ../../include/conversation.php:1075 +#: ../../include/conversation.php:1076 #, php-format msgid "%s doesn't like this." msgstr "%s vindt dit niet leuk." -#: ../../include/conversation.php:1079 +#: ../../include/conversation.php:1080 #, php-format msgid "%2$d people like this." msgid_plural "%2$d people like this." msgstr[0] "%2$d persoon vindt dit leuk." msgstr[1] "%2$d personen vinden dit leuk." -#: ../../include/conversation.php:1081 +#: ../../include/conversation.php:1082 #, php-format msgid "%2$d people don't like this." msgid_plural "%2$d people don't like this." msgstr[0] "%2$d persoon vindt dit niet leuk." msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../include/conversation.php:1087 +#: ../../include/conversation.php:1088 msgid "and" msgstr "en" -#: ../../include/conversation.php:1090 +#: ../../include/conversation.php:1091 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] ", en %d ander persoon" msgstr[1] ", en %d andere personen" -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1092 #, php-format msgid "%s like this." msgstr "%s vinden dit leuk." -#: ../../include/conversation.php:1091 +#: ../../include/conversation.php:1092 #, php-format msgid "%s don't like this." msgstr "%s vinden dit niet leuk." -#: ../../include/conversation.php:1130 +#: ../../include/conversation.php:1135 msgid "Set your location" msgstr "Locatie instellen" -#: ../../include/conversation.php:1131 +#: ../../include/conversation.php:1136 msgid "Clear browser location" msgstr "Locatie van webbrowser wissen" -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1184 msgid "Tag term:" msgstr "Tag:" -#: ../../include/conversation.php:1178 +#: ../../include/conversation.php:1185 msgid "Where are you right now?" msgstr "Waar bevind je je op dit moment?" -#: ../../include/conversation.php:1210 +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Reacties ingeschakeld" + +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Reacties uitgeschakeld" + +#: ../../include/conversation.php:1229 msgid "Page link name" msgstr "Linknaam pagina" -#: ../../include/conversation.php:1213 +#: ../../include/conversation.php:1232 msgid "Post as" msgstr "Bericht plaatsen als" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1246 msgid "Toggle voting" msgstr "Peiling in- of uitschakelen" -#: ../../include/conversation.php:1231 +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Reacties uitschakelen" + +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Reacties in- of uitschakelen" + +#: ../../include/conversation.php:1258 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/conversation.php:1254 +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" + +#: ../../include/conversation.php:1287 msgid "Set publish date" msgstr "Publicatiedatum instellen" -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1503 +#: ../../include/conversation.php:1536 msgid "Discover" msgstr "Ontdekken" -#: ../../include/conversation.php:1506 +#: ../../include/conversation.php:1539 msgid "Imported public streams" msgstr "Openbare streams importeren" -#: ../../include/conversation.php:1511 +#: ../../include/conversation.php:1544 msgid "Commented Order" msgstr "Nieuwe reacties bovenaan" -#: ../../include/conversation.php:1514 +#: ../../include/conversation.php:1547 msgid "Sort by Comment Date" msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../include/conversation.php:1518 +#: ../../include/conversation.php:1551 msgid "Posted Order" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1521 +#: ../../include/conversation.php:1554 msgid "Sort by Post Date" msgstr "Nieuwe berichten bovenaan" -#: ../../include/conversation.php:1529 +#: ../../include/conversation.php:1562 msgid "Posts that mention or involve you" msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../include/conversation.php:1538 +#: ../../include/conversation.php:1571 msgid "Activity Stream - by date" msgstr "Activiteitenstroom - volgens datum" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1577 msgid "Starred" msgstr "Met ster" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1580 msgid "Favourite Posts" msgstr "Favoriete berichten" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1587 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1557 +#: ../../include/conversation.php:1590 msgid "Posts flagged as SPAM" msgstr "Berichten gemarkeerd als SPAM" -#: ../../include/conversation.php:1614 +#: ../../include/conversation.php:1647 msgid "Status Messages and Posts" msgstr "Berichten in dit kanaal" -#: ../../include/conversation.php:1623 +#: ../../include/conversation.php:1656 msgid "About" msgstr "Over" -#: ../../include/conversation.php:1626 +#: ../../include/conversation.php:1659 msgid "Profile Details" msgstr "Profiel" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalbums" - -#: ../../include/conversation.php:1642 +#: ../../include/conversation.php:1675 msgid "Files and Storage" msgstr "Bestanden en opslagruimte" -#: ../../include/conversation.php:1678 +#: ../../include/conversation.php:1708 ../../include/nav.php:104 +msgid "Bookmarks" +msgstr "Bladwijzers" + +#: ../../include/conversation.php:1711 msgid "Saved Bookmarks" msgstr "Opgeslagen bladwijzers" -#: ../../include/conversation.php:1688 +#: ../../include/conversation.php:1721 msgid "Manage Webpages" msgstr "Webpagina's beheren" -#: ../../include/conversation.php:1747 +#: ../../include/conversation.php:1786 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "aanwezig" msgstr[1] "aanwezig" -#: ../../include/conversation.php:1750 +#: ../../include/conversation.php:1789 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "niet aanwezig" msgstr[1] "niet aanwezig" -#: ../../include/conversation.php:1753 +#: ../../include/conversation.php:1792 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "nog niet beslist" msgstr[1] "nog niet beslist" -#: ../../include/conversation.php:1756 +#: ../../include/conversation.php:1795 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "eens" msgstr[1] "eens" -#: ../../include/conversation.php:1759 +#: ../../include/conversation.php:1798 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "oneens" msgstr[1] "oneens" -#: ../../include/conversation.php:1762 +#: ../../include/conversation.php:1801 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "onthouding" msgstr[1] "onthoudingen" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Elk uur" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Voeg nieuwe connecties aan deze privacygroep toe" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Dagelijks" +#: ../../include/group.php:289 +msgid "edit" +msgstr "bewerken" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../include/group.php:311 ../../include/features.php:84 +msgid "Privacy Groups" +msgstr "Privacygroepen" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Privacygroep bewerken" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momenteel man" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Privacygroep toevoegen" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momenteel vrouw" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanalen die zich in geen enkele privacygroep bevinden" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Voornamelijk man" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Interseksueel" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transseksueel" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Start:" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Einde:" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Genderneutraal" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Niet gespecificeerd" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Niet aangegeven" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Anders" +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Actie vereist" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Nog niet beslist" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Voltooid" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Mannen" +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In behandeling" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Vrouwen" +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Geannuleerd" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Homoseksueel" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Bijlagen:" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Geen voorkeur" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Biseksueel" +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" +msgstr "%s minder reacties weergeven" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autoseksueel" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" +msgstr "%s uitklappen" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Seksuele onthouding" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "%s inklappen" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Maagd" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Afwijkend" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisj" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "iedereen" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Veel" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Aseksueel" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Alleen" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Eenzaam" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Beschikbaar" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Beoordeel dit kanaal (dit is openbaar)" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Omschrijving (optioneel)" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Smoorverliefd" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vul een URL in:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Aan het daten" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Ontrouw" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Seksverslaafd" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "geleden" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Ongebonden/vluchtig" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "vanaf nu" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verloofd" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Getrouwd" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partners" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Samenwonend" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Common-law-huwelijk" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "een dag" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Gelukkig" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Niet op zoek" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d maanden" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Verraden" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Uit elkaar" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d jaren" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Onstabiel" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Gescheiden" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mei" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "jan" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Onzeker" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Het is ingewikkeld" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mrt" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Maakt mij niks uit" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "apr" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Vraag het me" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "mei" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Alleen ik" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Openbaar" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "aug" -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Iedereen in het $Projectname-netwerk" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" -msgstr "Iedereen op %s" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "okt" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Al mijn geaccepteerde connecties" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Alleen connecties die uitdrukkelijk door jou zijn toegestaan" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dec" -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Geauthenticeerde leden (kan bezoekers van andere netwerken bevatten)" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "zo" -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Al mijn geaccepteerde en nog niet geaccepteerde connecties" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "ma" -#: ../../include/PermissionDescription.php:161 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dit is de standaard privacy-instelling voor wie jouw berichten kan bekijken" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "di" -#: ../../include/PermissionDescription.php:162 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dit is de standaard privacy-instelling voor wie jouw standaardprofiel kan bekijken" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "wo" -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "do" -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vr" -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "za" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "vandaag" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "maand" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "week" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "dag" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "hele dag" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Beheerder" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" - -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" - -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account goedgekeurd" - -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" - -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." - -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." - -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../include/attach.php:247 ../../include/attach.php:333 +#: ../../include/attach.php:248 ../../include/attach.php:334 msgid "Item was not found." msgstr "Item niet gevonden" -#: ../../include/attach.php:497 +#: ../../include/attach.php:500 msgid "No source file." msgstr "Geen bronbestand." -#: ../../include/attach.php:519 +#: ../../include/attach.php:522 msgid "Cannot locate file to replace" msgstr "Kan het te vervangen bestand niet vinden" -#: ../../include/attach.php:537 +#: ../../include/attach.php:540 msgid "Cannot locate file to revise/update" msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../include/attach.php:672 +#: ../../include/attach.php:675 #, php-format msgid "File exceeds size limit of %d" msgstr "Bestand is groter dan de toegelaten %d" -#: ../../include/attach.php:686 +#: ../../include/attach.php:689 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../include/attach.php:842 +#: ../../include/attach.php:847 msgid "File upload failed. Possible system limit or action terminated." msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../include/attach.php:855 +#: ../../include/attach.php:860 msgid "Stored file could not be verified. Upload failed." msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../include/attach.php:909 ../../include/attach.php:925 +#: ../../include/attach.php:916 ../../include/attach.php:932 msgid "Path not available." -msgstr "Pad niet beschikbaar." +msgstr "Locatie niet beschikbaar." -#: ../../include/attach.php:971 ../../include/attach.php:1123 +#: ../../include/attach.php:978 ../../include/attach.php:1130 msgid "Empty pathname" -msgstr "Padnaam leeg" +msgstr "Ontbrekende locatienaam" -#: ../../include/attach.php:997 +#: ../../include/attach.php:1004 msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" +msgstr "dubbele bestandsnaam of locatie" -#: ../../include/attach.php:1019 +#: ../../include/attach.php:1026 msgid "Path not found." -msgstr "Pad niet gevonden" +msgstr "Locatie niet gevonden" -#: ../../include/attach.php:1077 +#: ../../include/attach.php:1084 msgid "mkdir failed." msgstr "directory aanmaken (mkdir) mislukt." -#: ../../include/attach.php:1081 +#: ../../include/attach.php:1088 msgid "database storage failed." msgstr "opslag in database mislukt." -#: ../../include/attach.php:1129 +#: ../../include/attach.php:1136 msgid "Empty path" -msgstr "Ontbrekend bestandspad" - -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" - -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" - -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Naam te lang" - -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Geen account-identificator" - -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" - -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." - -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." - -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" - -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standaardprofiel" - -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." - -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +msgstr "Ontbrekende locatie" -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" - -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Geslacht:" - -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" - -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Homepagina:" - -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "Nu online" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uitgelogd." -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "F j Y" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Inloggen mislukt." -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "F j" +#: ../../include/activities.php:41 +msgid " and " +msgstr " en " -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "openbaar profiel" -#: ../../include/channel.php:1192 +#: ../../include/activities.php:58 #, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" - -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" - -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Tags:" - -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" - -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religie:" - -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" - -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Houdt van:" - -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Houdt niet van:" - -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" - -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Mijn andere kanalen" - -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Muzikale interesses:" - -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Televisie:" +#: ../../include/activities.php:59 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" -#: ../../include/features.php:48 +#: ../../include/features.php:50 msgid "General Features" msgstr "Algemene functies" -#: ../../include/features.php:50 +#: ../../include/features.php:52 msgid "Content Expiration" msgstr "Inhoud laten verlopen" -#: ../../include/features.php:50 +#: ../../include/features.php:52 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" -#: ../../include/features.php:51 +#: ../../include/features.php:53 msgid "Multiple Profiles" msgstr "Meerdere profielen" -#: ../../include/features.php:51 +#: ../../include/features.php:53 msgid "Ability to create multiple profiles" msgstr "Mogelijkheid om meerdere profielen aan te maken" -#: ../../include/features.php:52 +#: ../../include/features.php:54 msgid "Advanced Profiles" msgstr "Geavanceerde profielen" -#: ../../include/features.php:52 +#: ../../include/features.php:54 msgid "Additional profile sections and selections" msgstr "Extra onderdelen en keuzes voor je profiel" -#: ../../include/features.php:53 +#: ../../include/features.php:55 msgid "Profile Import/Export" msgstr "Profiel importen/exporteren" -#: ../../include/features.php:53 +#: ../../include/features.php:55 msgid "Save and load profile details across sites/channels" msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." -#: ../../include/features.php:54 +#: ../../include/features.php:56 msgid "Web Pages" msgstr "Webpagina's" -#: ../../include/features.php:54 +#: ../../include/features.php:56 msgid "Provide managed web pages on your channel" msgstr "Sta beheerde webpagina's op jouw kanaal toe" -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Beoordelingen verbergen" - -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Voeg een wiki aan jouw kanaal toe" -#: ../../include/features.php:56 +#: ../../include/features.php:59 msgid "Private Notes" msgstr "Privé-aantekeningen" -#: ../../include/features.php:56 +#: ../../include/features.php:59 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" -#: ../../include/features.php:57 +#: ../../include/features.php:60 msgid "Navigation Channel Select" msgstr "Kanaal kiezen in navigatiemenu" -#: ../../include/features.php:57 +#: ../../include/features.php:60 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../include/features.php:58 +#: ../../include/features.php:61 msgid "Photo Location" msgstr "Fotolocatie" -#: ../../include/features.php:58 +#: ../../include/features.php:61 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." -#: ../../include/features.php:59 +#: ../../include/features.php:62 msgid "Access Controlled Chatrooms" msgstr "Chatkanalen met toegangscontrole " -#: ../../include/features.php:59 +#: ../../include/features.php:62 msgid "Provide chatrooms and chat services with access control." msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." -#: ../../include/features.php:60 +#: ../../include/features.php:63 msgid "Smart Birthdays" msgstr "Slimme verjaardagen" -#: ../../include/features.php:60 +#: ../../include/features.php:63 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." -#: ../../include/features.php:61 +#: ../../include/features.php:64 msgid "Expert Mode" msgstr "Expertmodus" -#: ../../include/features.php:61 +#: ../../include/features.php:64 msgid "Enable Expert Mode to provide advanced configuration options" msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Premiumkanaal" - -#: ../../include/features.php:62 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" - -#: ../../include/features.php:67 +#: ../../include/features.php:69 msgid "Post Composition Features" msgstr "Functies voor het opstellen van berichten" @@ -8813,1015 +9292,747 @@ msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde g #: ../../include/features.php:73 msgid "Enable Voting Tools" -msgstr "Peilingen inschakelen" - -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." - -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Berichten uitstellen" - -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." - -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Dubbele berichten/reacties tegenhouden" - -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " - -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" - -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Zoek op datum" - -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " - -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Privacygroepen" - -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Beheer en selectie van privacygroepen inschakelen" - -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" - -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" - -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" - -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" - -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" - -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" - -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" - -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Berichtenfilters" - -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" - -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" - -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" - -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Taggen door anderen" - -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" - -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Categorieën berichten" - -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" - -#: ../../include/features.php:97 -msgid "Emoji Reactions" -msgstr "Emoji-reacties" - -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "Emoji-reacties in berichten toestaan" - -#: ../../include/features.php:98 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" - -#: ../../include/features.php:99 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" - -#: ../../include/features.php:99 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" - -#: ../../include/features.php:100 -msgid "Star Posts" -msgstr "Geef berichten een ster" - -#: ../../include/features.php:100 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" - -#: ../../include/features.php:101 -msgid "Tag Cloud" -msgstr "Tagwolk" - -#: ../../include/features.php:101 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" - -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" - -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" - -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Wie kan dit zien?" - -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Handmatige selectie" - -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"." - -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Tonen" - -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Niet tonen" - -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" - -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien." - -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Uitgelogd." - -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" - -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" - -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Leeftijd:" - -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" - -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "nooit" - -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" - -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" - -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" - -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" - -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" - -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" - -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" - -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" - -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" - -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" - -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." +msgstr "Peilingen inschakelen" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Voeg nieuwe connecties aan deze privacygroep toe" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../include/group.php:289 -msgid "edit" -msgstr "bewerken" +#: ../../include/features.php:74 +msgid "Disable Comments" +msgstr "Reacties uitschakelen" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Privacygroep bewerken" +#: ../../include/features.php:74 +msgid "Provide the option to disable comments for a post" +msgstr "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Privacygroep toevoegen" +#: ../../include/features.php:75 +msgid "Delayed Posting" +msgstr "Berichten uitstellen" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanalen die zich in geen enkele privacygroep bevinden" +#: ../../include/features.php:75 +msgid "Allow posts to be published at a later date" +msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../include/features.php:76 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" +#: ../../include/features.php:76 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" +#: ../../include/features.php:82 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" +#: ../../include/features.php:83 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" +#: ../../include/features.php:83 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" +#: ../../include/features.php:84 +msgid "Enable management and selection of privacy groups" +msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "iedereen" +#: ../../include/features.php:85 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" +#: ../../include/features.php:86 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../include/features.php:86 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." +#: ../../include/features.php:87 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../include/features.php:87 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../include/features.php:88 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Beoordeel dit kanaal (dit is openbaar)" +#: ../../include/features.php:88 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Omschrijving (optioneel)" +#: ../../include/features.php:89 +msgid "Connection Filtering" +msgstr "Berichtenfilters" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vul een URL in:" +#: ../../include/features.php:89 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" +#: ../../include/features.php:90 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/features.php:95 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/features.php:96 +msgid "Community Tagging" +msgstr "Taggen door anderen" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "geleden" +#: ../../include/features.php:96 +msgid "Ability to tag existing posts" +msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "vanaf nu" +#: ../../include/features.php:97 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../include/features.php:97 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../include/features.php:98 +msgid "Emoji Reactions" +msgstr "Emoji-reacties" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" +#: ../../include/features.php:98 +msgid "Add emoji reaction ability to posts" +msgstr "Emoji-reacties in berichten toestaan" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../include/features.php:99 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +#: ../../include/features.php:100 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "een dag" +#: ../../include/features.php:100 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d dagen" +#: ../../include/features.php:101 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "ongeveer een maand" +#: ../../include/features.php:101 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d maanden" +#: ../../include/features.php:102 +msgid "Tag Cloud" +msgstr "Tagwolk" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../include/features.php:102 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d jaren" +#: ../../include/features.php:111 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/features.php:112 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Tags" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mei" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "jan" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "heb" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "heeft" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mrt" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "wil" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "apr" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "wil" + +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "vindt dit leuk" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "mei" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "vindt dit niet leuk" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "aug" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "okt" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dec" +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "zo" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "ma" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "di" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "wo" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "do" +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vr" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "za" +#: ../../include/account.php:739 ../../include/account.php:741 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "vandaag" +#: ../../include/account.php:747 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "maand" +#: ../../include/account.php:752 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "week" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 +#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 +#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 +#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 +#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 +#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 +#: ../../include/bbcode.php:917 +msgid "Image/photo" +msgstr "Afbeelding/foto" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "dag" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "hele dag" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " -#: ../../include/network.php:657 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren." -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Geen onderwerp" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schreef het volgende %2$s %3$s" -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU social" +#: ../../include/bbcode.php:866 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Willekeurig profiel" -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" -#: ../../include/photos.php:110 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "meer connecties weergeven" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "een nieuwe foto" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Opties kanalengids" -#: ../../include/photos.php:299 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" -#: ../../include/zot.php:699 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Alleen deze hub" -#: ../../include/zot.php:715 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../include/zot.php:2363 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../include/zot.php:3712 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../include/nav.php:84 ../../include/nav.php:117 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan mijn foto's en andere bestanden bekijken" +#: ../../include/nav.php:87 ../../include/nav.php:148 +msgid "Home" +msgstr "Home" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../include/nav.php:87 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" +#: ../../include/nav.php:88 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../include/nav.php:90 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../include/nav.php:92 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../include/nav.php:94 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../include/nav.php:95 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../include/nav.php:98 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../include/nav.php:104 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../include/nav.php:108 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../include/nav.php:110 +msgid "Your wiki" +msgstr "Jouw wiki" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" +#: ../../include/nav.php:114 +msgid "Sign in" +msgstr "Inloggen" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../include/nav.php:131 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" +#: ../../include/nav.php:134 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../include/nav.php:134 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../include/nav.php:148 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +#: ../../include/nav.php:151 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../include/nav.php:163 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Sociaal - Vrijwel alles openbaar" +#: ../../include/nav.php:167 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Sociaal - Beperkt zichtbaar" +#: ../../include/nav.php:169 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Sociaal - Verborgen kanaal" +#: ../../include/nav.php:171 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../include/nav.php:183 +msgid "Your grid" +msgstr "Jouw grid" -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Vrijwel alles openbaar" +#: ../../include/nav.php:184 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beperkt zichtbaar" +#: ../../include/nav.php:186 +msgid "Channel home" +msgstr "Jouw kanaal" -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Verborgen kanaal" +#: ../../include/nav.php:187 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../include/nav.php:193 +msgid "Notices" +msgstr "Notificaties" -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feed - Vrijwel alles openbaar" +#: ../../include/nav.php:193 +msgid "Notifications" +msgstr "Notificaties" -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feed - Beperkt zichtbaar" +#: ../../include/nav.php:194 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Speciaal doel" +#: ../../include/nav.php:197 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciaal - Beroemdheid/alleen volgen" +#: ../../include/nav.php:198 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speciaal - Groepsopslag" +#: ../../include/nav.php:199 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../include/nav.php:205 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../include/activities.php:41 -msgid " and " -msgstr " en " +#: ../../include/nav.php:206 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "openbaar profiel" +#: ../../include/nav.php:207 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" +#: ../../include/nav.php:210 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" +#: ../../include/nav.php:212 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." +#: ../../include/nav.php:220 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Bijlagen:" +#: ../../include/nav.php:256 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" +#: ../../include/nav.php:257 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../view/theme/redbasic/php/config.php:6 msgid "Focus (Hubzilla default)" msgstr "Focus (Hubzilla-standaard)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Thema-instellingen" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Kies schema van thema" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Smalle navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Achtergrondkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Bovenste gradiëntkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Onderste gradiëntkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Bovenste gradiëntkleur actieve knop navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Onderste gradiëntkleur actieve knop op navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Randkleur navigatiebalk " -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Pictogramkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Actieve pictogramkleur navigatiebalk" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "Linkkleur instellen" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Tekstkleur van banner instellen" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Achtergrondkleur instellen" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Achtergrondafbeelding instellen" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Achtergrondkleur items instellen" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Achtergrondkleur reacties instellen" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Randkleur reacties instellen" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Inspringen reacties instellen" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Basiskleur itempictogrammen instellen" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Hoverkleur itempictogrammen instellen" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Tekstgrootte van de volledige applicatie instellen" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Voorbeeld: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Lettergrootte voor berichten en reacties instellen" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Tekstkleur van berichten en reacties" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Radius van hoeken instellen" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Schaduwdiepte van foto's instellen" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Maximumbreedte conversatieruimte instellen (in pixels)" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Laat leeg voor standaardbreedte" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Inhoud links uitlijnen" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Minimale ondoorzichtigheid navigatiebalk (- om te verbergen)" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Grootte profielfoto's van berichten instellen" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1162 +#: ../../boot.php:1194 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1194 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1512 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1483 +#: ../../boot.php:1515 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1684 +#: ../../boot.php:1719 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla" -#: ../../boot.php:1706 +#: ../../boot.php:1740 +msgid "Login/Email" +msgstr "E-mailadres of inlognaam" + +#: ../../boot.php:1741 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1707 +#: ../../boot.php:1742 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1710 +#: ../../boot.php:1745 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2276 +#: ../../boot.php:2314 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2425 +#: ../../boot.php:2469 msgid "Website SSL certificate is not valid. Please correct." msgstr "Het SSL-certificaat van deze website is ongeldig. Corrigeer dit a.u.b." -#: ../../boot.php:2428 +#: ../../boot.php:2472 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2469 +#: ../../boot.php:2576 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2473 +#: ../../boot.php:2580 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-taken zijn niet actief op %s" diff --git a/view/nl/hstrings.php b/view/nl/hstrings.php index 4ff83f788..5313cefbe 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_nl")) { function string_plural_select_nl($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Sociaal netwerk"; +App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; +App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; +App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; +App::$strings["Community Forum"] = "Groepsforum"; +App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; +App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; +App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; +App::$strings["Feed Republish"] = "Feed herpubliceren"; +App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; +App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; +App::$strings["Special Purpose"] = "Speciaal doel"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; +App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; +App::$strings["Other"] = "Anders"; +App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +App::$strings["Can view my channel stream and posts"] = "Kan mijn kanaal en berichten bekijken"; +App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; +App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; +App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; +App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; +App::$strings["Can upload/modify my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can view my channel webpages"] = "Kan de webpagina's van mijn kanaal bekijken"; +App::$strings["Can create/edit my channel webpages"] = "Kan wegpagina's van mijn kanaal aanmaken en bewerken"; +App::$strings["Can post on my channel (wall) page"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; +App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; +App::$strings["Can like/dislike profiles and profile things"] = "Kan profielen en profieldingen leuk en niet leuk vinden "; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Can chat with me"] = "Kan met mij chatten"; +App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; +App::$strings["Can administer my channel"] = "Kan mijn kanaal beheren"; App::$strings["parent"] = "omhoog"; App::$strings["Collection"] = "map"; App::$strings["Principal"] = "principal"; @@ -29,186 +61,114 @@ App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%) App::$strings["WARNING:"] = "WAARSCHUWING:"; App::$strings["Create new folder"] = "Nieuwe map aanmaken"; App::$strings["Upload file"] = "Bestand uploaden"; -App::$strings["Permission denied"] = "Toegang geweigerd"; +App::$strings["Drop files here to immediately upload"] = "Sleep bestanden hierheen om ze onmiddelijk te uploaden"; App::$strings["Permission denied."] = "Toegang geweigerd."; App::$strings["Not Found"] = "Niet gevonden"; App::$strings["Page not found."] = "Pagina niet gevonden."; +App::$strings["Permission denied"] = "Toegang geweigerd"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; App::$strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; App::$strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; -App::$strings["Block Name"] = "Bloknaam"; -App::$strings["Blocks"] = "Blokken"; -App::$strings["Block Title"] = "Bloktitel"; -App::$strings["Created"] = "Aangemaakt"; -App::$strings["Edited"] = "Bewerkt"; -App::$strings["Share"] = "Delen"; -App::$strings["View"] = "Weergeven"; -App::$strings["Channel not found."] = "Kanaal niet gevonden."; -App::$strings["Permissions denied."] = "Permissies niet toegestaan"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Link to Source"] = "Originele locatie"; -App::$strings["Edit Event"] = "Gebeurtenis bewerken"; -App::$strings["Create Event"] = "Gebeurtenis aanmaken"; -App::$strings["Previous"] = "Vorige"; -App::$strings["Next"] = "Volgende"; -App::$strings["Export"] = "Exporteren"; -App::$strings["Import"] = "Importeren"; -App::$strings["Submit"] = "Opslaan"; -App::$strings["Today"] = "Vandaag"; -App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -App::$strings["Posts and comments"] = "Berichten en reacties"; -App::$strings["Only posts"] = "Alleen berichten"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -App::$strings["Room not found"] = "Chatkanaal niet gevonden"; -App::$strings["Leave Room"] = "Chatkanaal verlaten"; -App::$strings["Delete Room"] = "Chatkanaal verwijderen"; -App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; -App::$strings["I am online"] = "Ik ben online"; -App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -App::$strings["Please enter a link URL:"] = "Vul een URL in:"; -App::$strings["Encrypt text"] = "Tekst versleutelen"; -App::$strings["Insert web link"] = "Weblink invoegen"; -App::$strings["Feature disabled."] = "Functie uitgeschakeld."; -App::$strings["New Chatroom"] = "Nieuw chatkanaal"; -App::$strings["Chatroom name"] = "Naam chatkanaal"; -App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; -App::$strings["Permissions"] = "Permissies"; -App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; -App::$strings["Create New"] = "Nieuwe aanmaken"; -App::$strings["Expiration"] = "Verloopt na"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Afwezig"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Invalid message"] = "Ongeldig bericht"; +App::$strings["no results"] = "geen resultaten"; +App::$strings["channel sync processed"] = "kanaalsync verwerkt"; +App::$strings["queued"] = "in wachtrij"; +App::$strings["posted"] = "verstuurd"; +App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; +App::$strings["updated"] = "geüpdatet"; +App::$strings["update ignored"] = "update genegeerd"; +App::$strings["permission denied"] = "toegang geweigerd"; +App::$strings["recipient not found"] = "ontvanger niet gevonden"; +App::$strings["mail recalled"] = "Privébericht ingetrokken"; +App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; +App::$strings["mail delivered"] = "privébericht afgeleverd"; +App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; +App::$strings["Options"] = "Opties"; +App::$strings["Redeliver"] = "Opnieuw afleveren"; +App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; +App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +App::$strings["Return to your app and insert this Security Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["Yes"] = "Ja"; +App::$strings["No"] = "Nee"; +App::$strings["Rating"] = "Beoordeling"; +App::$strings["Website:"] = "Website:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; +App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; +App::$strings["Submit"] = "Opslaan"; +App::$strings["Public Hubs"] = "Openbare hubs"; +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."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Toegangs-
     type"; +App::$strings["Registration Policy"] = "Registratie-
     beleid"; +App::$strings["Stats"] = "Stats"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Beoordelingen"; +App::$strings["Rate"] = "Beoordeel"; +App::$strings["Location"] = "Locatie"; +App::$strings["View"] = "Weergeven"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; +App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; +App::$strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; +App::$strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; +App::$strings["Registration on this hub is disabled."] = "Registreren van nieuwe accounts is op deze hub uitgeschakeld."; +App::$strings["Registration on this hub is by approval only."] = "Registraties op deze hub moeten eerst worden goedgekeurd."; +App::$strings["Register at another affiliated hub."] = "Registreer op een andere hub."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; +App::$strings["Terms of Service"] = "Gebruiksvoorwaarden"; +App::$strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ik ben 13 jaar of ouder en accepteer de %s van deze \$Projectname-hub"; +App::$strings["Your email address"] = "Jouw e-mailadres"; +App::$strings["Choose a password"] = "Geef een wachtwoord op"; +App::$strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; +App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; +App::$strings["Name or caption"] = "Naam"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; +App::$strings["Choose a short nickname"] = "Korte bijnaam"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; +App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; +App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; +App::$strings["no"] = "Nee"; +App::$strings["yes"] = "Ja"; +App::$strings["Registration"] = "Registratie"; +App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; +App::$strings["Register"] = "Registreren"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Mogelijk moet op deze hub eerst jouw e-mail geverifieerd worden. Wanneer je na het indienen van dit formulier op de inlogpagina terecht komt, dan dien je jouw e-mail te controleren voor instructies. Controleer eventueel ook jouw spamfolder."; App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; App::$strings["My Bookmarks"] = "Mijn bladwijzers"; App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -App::$strings["Continue"] = "Ga verder"; -App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -App::$strings["Connection updated."] = "Connectie bijgewerkt."; -App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -App::$strings["is now connected to"] = "is nu verbonden met"; -App::$strings["No"] = "Nee"; -App::$strings["Yes"] = "Ja"; -App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -App::$strings["Connection has been removed."] = "Connectie is verwijderd"; -App::$strings["View Profile"] = "Profiel weergeven"; -App::$strings["View %s's profile"] = "Profiel van %s weergeven"; -App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; -App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; -App::$strings["Recent Activity"] = "Recente activiteit/berichten"; -App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -App::$strings["Unblock"] = "Deblokkeren"; -App::$strings["Block"] = "Blokkeren"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; -App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; -App::$strings["Unignore"] = "Niet meer negeren"; -App::$strings["Ignore"] = "Negeren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; -App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; -App::$strings["Unarchive"] = "Niet meer archiveren"; -App::$strings["Archive"] = "Archiveren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; -App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; -App::$strings["Unhide"] = "Niet meer verbergen"; -App::$strings["Hide"] = "Verbergen"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; -App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; -App::$strings["Delete this connection"] = "Deze connectie verwijderen"; -App::$strings["Me"] = "Ik"; -App::$strings["Family"] = "Familie"; -App::$strings["Friends"] = "Vrienden"; -App::$strings["Acquaintances"] = "Kennissen"; -App::$strings["All"] = "Alles"; -App::$strings["Approve this connection"] = "Deze connectie accepteren"; -App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; -App::$strings["Set Profile"] = "Profiel instellen"; -App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; -App::$strings["none"] = "geen"; -App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; -App::$strings["Connection: %s"] = "Connectie: %s"; -App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; -App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; -App::$strings["Available locations:"] = "Beschikbare locaties:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; -App::$strings["Connection Tools"] = "Hulpmiddelen"; -App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -App::$strings["Rating"] = "Beoordeling"; -App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; -App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; -App::$strings["Custom Filter"] = "Berichtenfilter"; -App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; -App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; -App::$strings["This information is public!"] = "Deze informatie is openbaar!"; -App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; -App::$strings["inherited"] = "geërfd"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -App::$strings["Their Settings"] = "Hun instellingen"; -App::$strings["My Settings"] = "Mijn instellingen"; -App::$strings["Individual Permissions"] = "Individuele permissies"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; -App::$strings["Last update:"] = "Laatste wijziging:"; App::$strings["Public access denied."] = "Openbare toegang geweigerd."; -App::$strings["%d rating"] = array( - 0 => "%d beoordeling", - 1 => "%d beoordelingen", -); -App::$strings["Gender: "] = "Geslacht:"; -App::$strings["Status: "] = "Status: "; -App::$strings["Homepage: "] = "Homepage: "; -App::$strings["Age:"] = "Leeftijd:"; -App::$strings["Location:"] = "Plaats:"; -App::$strings["Description:"] = "Omschrijving:"; -App::$strings["Hometown:"] = "Oorspronkelijk uit:"; -App::$strings["About:"] = "Over:"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Public Forum:"] = "Openbaar forum:"; -App::$strings["Keywords: "] = "Trefwoorden: "; -App::$strings["Don't suggest"] = "Niet voorstellen"; -App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; -App::$strings["Global Directory"] = "Volledige kanalengids"; -App::$strings["Local Directory"] = "Lokale kanalengids"; -App::$strings["Find"] = "Vinden"; -App::$strings["Finding:"] = "Gezocht naar:"; -App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; -App::$strings["next page"] = "volgende pagina"; -App::$strings["previous page"] = "vorige pagina"; -App::$strings["Sort options"] = "Sorteeropties"; -App::$strings["Alphabetic"] = "Alfabetisch"; -App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -App::$strings["Newest to Oldest"] = "Nieuw naar oud"; -App::$strings["Oldest to Newest"] = "Oud naar nieuw"; -App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; App::$strings["Item not found."] = "Item niet gevonden."; -App::$strings["Item not found"] = "Item niet gevonden"; -App::$strings["Title (optional)"] = "Titel (optioneel)"; -App::$strings["Edit Block"] = "Blok bewerken"; -App::$strings["No channel."] = "Geen kanaal."; -App::$strings["Common connections"] = "Veel voorkomende connecties"; -App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -App::$strings["Blocked"] = "Geblokkeerd"; -App::$strings["Ignored"] = "Genegeerd"; -App::$strings["Hidden"] = "Verborgen"; -App::$strings["Archived"] = "Gearchiveerd"; -App::$strings["New"] = "Nieuw"; -App::$strings["New Connections"] = "Nieuwe connecties"; +App::$strings["Photos"] = "Foto's"; +App::$strings["Cancel"] = "Annuleren"; +App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Bewaar in map: "; +App::$strings["- select -"] = "- kies map -"; +App::$strings["Save"] = "Opslaan"; +App::$strings["No such group"] = "Collectie niet gevonden"; +App::$strings["No such channel"] = "Niet zo'n kanaal"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Zoekresultaten voor:"; +App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; +App::$strings["Privacy group: "] = "Privacygroep: "; +App::$strings["Invalid connection."] = "Ongeldige connectie."; +App::$strings["Blocked"] = "Geblokkeerd"; +App::$strings["Ignored"] = "Genegeerd"; +App::$strings["Hidden"] = "Verborgen"; +App::$strings["Archived"] = "Gearchiveerd"; +App::$strings["New"] = "Nieuw"; +App::$strings["All"] = "Alles"; +App::$strings["New Connections"] = "Nieuwe connecties"; App::$strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; App::$strings["All Connections"] = "Alle connecties"; App::$strings["Show all connections"] = "Toon alle connecties"; @@ -227,11 +187,13 @@ App::$strings["Connected"] = "Verbonden"; App::$strings["Approve connection"] = "Connectie accepteren"; App::$strings["Approve"] = "Goedkeuren"; App::$strings["Ignore connection"] = "Connectie negeren"; +App::$strings["Ignore"] = "Negeren"; App::$strings["Recent activity"] = "Recente activiteit"; App::$strings["Connections"] = "Connecties"; App::$strings["Search"] = "Zoeken"; App::$strings["Search your connections"] = "Doorzoek jouw connecties"; App::$strings["Connections search"] = "Connecties zoeken"; +App::$strings["Find"] = "Vinden"; App::$strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; App::$strings["Cover Photos"] = "Omslagfoto's"; App::$strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; @@ -254,275 +216,137 @@ App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw App::$strings["Crop Image"] = "Afbeelding bijsnijden"; App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; App::$strings["Done Editing"] = "Klaar met bewerken"; -App::$strings["Item is not editable"] = "Item is niet te bewerken"; -App::$strings["Edit post"] = "Bericht bewerken"; -App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; -App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; -App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; -App::$strings["event"] = "gebeurtenis"; -App::$strings["Edit event title"] = "Titel bewerken"; -App::$strings["Event title"] = "Titel"; -App::$strings["Required"] = "Vereist"; -App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -App::$strings["Edit Category"] = "Categorie"; -App::$strings["Category"] = "Categorie"; -App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; -App::$strings["Start date and time"] = "Begindatum en -tijd"; -App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; -App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; -App::$strings["Finish date and time"] = "Einddatum en -tijd"; -App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -App::$strings["Edit Description"] = "Omschrijving bewerken"; -App::$strings["Description"] = "Omschrijving"; -App::$strings["Edit Location"] = "Locatie bewerken"; -App::$strings["Location"] = "Locatie"; -App::$strings["Share this event"] = "Deel deze gebeurtenis"; -App::$strings["Preview"] = "Voorvertoning"; -App::$strings["Permission settings"] = "Permissies"; -App::$strings["Advanced Options"] = "Geavanceerde opties"; -App::$strings["Edit event"] = "Gebeurtenis bewerken"; -App::$strings["Delete event"] = "Gebeurtenis verwijderen"; -App::$strings["calendar"] = "agenda"; -App::$strings["Event removed"] = "Gebeurtenis verwijderd"; -App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; -App::$strings["Photos"] = "Foto's"; -App::$strings["Cancel"] = "Annuleren"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup"; +App::$strings["Could not connect to database."] = "Could not connect to database."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; +App::$strings["Could not create table."] = "Could not create table."; +App::$strings["Your site database has been installed."] = "Your hub database has been installed."; +App::$strings["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."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; +App::$strings["System check"] = "System check"; +App::$strings["Next"] = "Volgende"; +App::$strings["Check again"] = "Check again"; +App::$strings["Database connection"] = "Database connection"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings."; +App::$strings["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."; +App::$strings["Database Server Name"] = "Database Server Name"; +App::$strings["Default is 127.0.0.1"] = "Default is 127.0.0.1"; +App::$strings["Database Port"] = "Database Port"; +App::$strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; +App::$strings["Database Login Name"] = "Database Login Name"; +App::$strings["Database Login Password"] = "Database Login Password"; +App::$strings["Database Name"] = "Database Name"; +App::$strings["Database Type"] = "Database Type"; +App::$strings["Site administrator email address"] = "Hub administrator email address"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; +App::$strings["Website URL"] = "Hub URL"; +App::$strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; +App::$strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; +App::$strings["Basic/Minimal Social Networking"] = "Basic/eenvoudig sociaal netwerk"; +App::$strings["Standard Configuration (default)"] = "Standaard (standaard)"; +App::$strings["Professional"] = "Professioneel "; +App::$strings["Site settings"] = "Hub settings"; +App::$strings["Server Configuration/Role"] = "Configuratietype hub"; +App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 or greater is required."; +App::$strings["PHP version"] = "PHP version"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; +App::$strings["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."; +App::$strings["PHP executable path"] = "PHP executable path"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; +App::$strings["Command line PHP"] = "Command line PHP"; +App::$strings["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."; +App::$strings["This is required for message delivery to work."] = "This is required for message delivery to work."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["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."; +App::$strings["You can adjust these settings in the servers php.ini."] = "You can adjust these settings in the servers php.ini."; +App::$strings["PHP upload limits"] = "PHP upload limits"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Generate encryption keys"; +App::$strings["libCurl PHP module"] = "libCurl PHP module"; +App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; +App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; +App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; +App::$strings["mb_string PHP module"] = "mb_string PHP module"; +App::$strings["xml PHP module"] = "xml PHP module"; +App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; +App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; +App::$strings["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."; +App::$strings["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."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php is writable"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; +App::$strings["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."; +App::$strings["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."; +App::$strings["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."; +App::$strings["%s is writable"] = "%s is writable"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; +App::$strings["store is writable"] = "store is writable"; +App::$strings["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 hub."; +App::$strings["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 hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; +App::$strings["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."; +App::$strings["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 hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; +App::$strings["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 hub) so we must insist on this requirement."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; +App::$strings["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."; +App::$strings["SSL certificate validation"] = "SSL certificate validation"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; +App::$strings["Url rewrite is working"] = "Url rewrite is working"; +App::$strings["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."; +App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; +App::$strings["

    What next

    "] = "

    What next

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; +App::$strings["%d rating"] = array( + 0 => "%d beoordeling", + 1 => "%d beoordelingen", +); +App::$strings["Gender: "] = "Geslacht:"; +App::$strings["Status: "] = "Status: "; +App::$strings["Homepage: "] = "Homepage: "; +App::$strings["Age:"] = "Leeftijd:"; +App::$strings["Location:"] = "Plaats:"; +App::$strings["Description:"] = "Omschrijving:"; +App::$strings["Hometown:"] = "Oorspronkelijk uit:"; +App::$strings["About:"] = "Over:"; +App::$strings["Connect"] = "Verbinden"; +App::$strings["Public Forum:"] = "Openbaar forum:"; +App::$strings["Keywords: "] = "Trefwoorden: "; +App::$strings["Don't suggest"] = "Niet voorstellen"; +App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; +App::$strings["Global Directory"] = "Volledige kanalengids"; +App::$strings["Local Directory"] = "Lokale kanalengids"; +App::$strings["Finding:"] = "Gezocht naar:"; +App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; +App::$strings["next page"] = "volgende pagina"; +App::$strings["previous page"] = "vorige pagina"; +App::$strings["Sort options"] = "Sorteeropties"; +App::$strings["Alphabetic"] = "Alfabetisch"; +App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +App::$strings["Newest to Oldest"] = "Nieuw naar oud"; +App::$strings["Oldest to Newest"] = "Oud naar nieuw"; +App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; -App::$strings["Save to Folder:"] = "Bewaar in map: "; -App::$strings["- select -"] = "- kies map -"; -App::$strings["Save"] = "Opslaan"; -App::$strings["Invalid message"] = "Ongeldig bericht"; -App::$strings["no results"] = "geen resultaten"; -App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; -App::$strings["channel sync processed"] = "kanaalsync verwerkt"; -App::$strings["queued"] = "in wachtrij"; -App::$strings["posted"] = "verstuurd"; -App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; -App::$strings["updated"] = "geüpdatet"; -App::$strings["update ignored"] = "update genegeerd"; -App::$strings["permission denied"] = "toegang geweigerd"; -App::$strings["recipient not found"] = "ontvanger niet gevonden"; -App::$strings["mail recalled"] = "Privébericht ingetrokken"; -App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; -App::$strings["mail delivered"] = "privébericht afgeleverd"; +App::$strings["Item not found"] = "Item niet gevonden"; +App::$strings["Block Name"] = "Bloknaam"; +App::$strings["Insert web link"] = "Weblink invoegen"; +App::$strings["Title (optional)"] = "Titel (optioneel)"; +App::$strings["Edit Block"] = "Blok bewerken"; App::$strings["Layout Name"] = "Naam lay-out"; App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; App::$strings["Edit Layout"] = "Lay-out bewerken"; App::$strings["Page link"] = "Paginalink"; App::$strings["Edit Webpage"] = "Webpagina bewerken"; -App::$strings["Channel added."] = "Kanaal toegevoegd."; -App::$strings["network"] = "netwerk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; -App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; -App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; -App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; -App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; -App::$strings["Privacy group name: "] = "Naam privacygroep: "; -App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; -App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; -App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; -App::$strings["Privacy group editor"] = "Privacygroep bewerken"; -App::$strings["Members"] = "Kanalen"; -App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; -App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; -App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; -App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; -App::$strings["Documentation Search"] = "Zoek documentatie"; -App::$strings["Help:"] = "Hulp:"; -App::$strings["Help"] = "Hulp"; -App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; -App::$strings["Permission Denied."] = "Toegang geweigerd"; -App::$strings["File not found."] = "Bestand niet gevonden."; -App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; -App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; -App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; -App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; -App::$strings["Share this file"] = "Dit bestand delen"; -App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; -App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; -App::$strings["Apps"] = "Apps"; -App::$strings["Item not available."] = "Item is niet aanwezig."; -App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; -App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; -App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; -App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; -App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; -App::$strings["Import completed."] = "Import voltooid."; -App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; -App::$strings["Import Channel"] = "Kanaal importeren"; -App::$strings["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."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; -App::$strings["File to Upload"] = "Bestand om te uploaden"; -App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; -App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; -App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; -App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; -App::$strings["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."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; -App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; -App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; -App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; -App::$strings["Layouts"] = "Lay-outs"; -App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; -App::$strings["Layout Description"] = "Lay-out-omschrijving"; -App::$strings["Download PDL file"] = "Download PDL-bestand"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Welkom op %s"; -App::$strings["First Name"] = "Voornaam"; -App::$strings["Last Name"] = "Achternaam"; -App::$strings["Nickname"] = "Bijnaam"; -App::$strings["Full Name"] = "Volledige naam"; -App::$strings["Email"] = "E-mail"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; -App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; -App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; -App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; -App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; -App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; -App::$strings["Timezone"] = "Tijdzone"; -App::$strings["Homepage URL"] = "URL homepagina"; -App::$strings["Language"] = "Taal"; -App::$strings["Birth Year"] = "Geboortejaar"; -App::$strings["Birth Month"] = "Geboortemaand"; -App::$strings["Birth Day"] = "Geboortedag"; -App::$strings["Birthdate"] = "Geboortedatum"; -App::$strings["Gender"] = "Geslacht"; -App::$strings["Male"] = "Man"; -App::$strings["Female"] = "Vrouw"; -App::$strings["webpage"] = "Webpagina"; -App::$strings["block"] = "blok"; -App::$strings["layout"] = "lay-out"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; -App::$strings["Like/Dislike"] = "Leuk/niet leuk"; -App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; -App::$strings["Invalid request."] = "Ongeldig verzoek"; -App::$strings["channel"] = "kanaal"; -App::$strings["thing"] = "ding"; -App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; -App::$strings["photo"] = "foto"; -App::$strings["status"] = "bericht"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; -App::$strings["Action completed."] = "Actie voltooid"; -App::$strings["Thank you."] = "Bedankt"; -App::$strings["Import completed"] = "Importeren voltooid"; -App::$strings["Import Items"] = "Importeer items"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; -App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -App::$strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", -); -App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -App::$strings["Send invitations"] = "Uitnodigingen verzenden"; -App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -App::$strings["Your message:"] = "Jouw bericht:"; -App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; -App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; -App::$strings["or visit"] = "of bezoek"; -App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -App::$strings["Visible to:"] = "Zichtbaar voor:"; -App::$strings["Location not found."] = "Locatie niet gevonden."; -App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; -App::$strings["Syncing locations"] = "Locaties synchronizeren"; -App::$strings["No locations found."] = "Geen locaties gevonden."; -App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -App::$strings["Address"] = "Kanaaladres"; -App::$strings["Primary"] = "Primair"; -App::$strings["Drop"] = "Verwijderen"; -App::$strings["Sync Now"] = "Nu synchroniseren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -App::$strings["Hub not found."] = "Hub niet gevonden."; -App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -App::$strings["Messages"] = "Berichten"; -App::$strings["Message recalled."] = "Bericht ingetrokken."; -App::$strings["Conversation removed."] = "Conversatie verwijderd"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; -App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; -App::$strings["Send Private Message"] = "Privébericht versturen"; -App::$strings["To:"] = "Aan:"; -App::$strings["Subject:"] = "Onderwerp:"; -App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["Send"] = "Verzenden"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; -App::$strings["Delete message"] = "Bericht verwijderen"; -App::$strings["Delivery report"] = "Afleveringsrapport"; -App::$strings["Recall message"] = "Bericht intrekken"; -App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; -App::$strings["Delete Conversation"] = "Verwijder conversatie"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -App::$strings["Send Reply"] = "Antwoord versturen"; -App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -App::$strings["Channel Manager"] = "Kanaalbeheer"; -App::$strings["Current Channel"] = "Huidig kanaal"; -App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -App::$strings["Default Channel"] = "Standaardkanaal"; -App::$strings["Make Default"] = "Als standaard instellen"; -App::$strings["%d new messages"] = "%d nieuwe berichten"; -App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; -App::$strings["No valid account found."] = "Geen geldige account gevonden."; -App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; -App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -App::$strings["Password Reset"] = "Wachtwoord vergeten?"; -App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -App::$strings["click here to login"] = "klik dan hier om in te loggen"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -App::$strings["Email Address"] = "E-mailadres"; -App::$strings["Reset"] = "Opnieuw instellen"; App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; App::$strings["Menu Name"] = "Menunaam"; @@ -533,6 +357,9 @@ App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; App::$strings["Menus"] = "Menu's"; +App::$strings["Drop"] = "Verwijderen"; +App::$strings["Created"] = "Aangemaakt"; +App::$strings["Edited"] = "Bewerkt"; App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; App::$strings["Delete this menu"] = "Menu verwijderen"; App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; @@ -547,1384 +374,1160 @@ App::$strings["Menu title"] = "Titel van menu"; App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; App::$strings["Not found."] = "Niet gevonden."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -App::$strings["Mood"] = "Stemming"; -App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -App::$strings["Profile Match"] = "Profielovereenkomst"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -App::$strings["is interested in:"] = "is geïnteresseerd in:"; -App::$strings["No matches"] = "Geen overeenkomsten"; -App::$strings["No such group"] = "Collectie niet gevonden"; -App::$strings["No such channel"] = "Niet zo'n kanaal"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Zoekresultaten voor:"; -App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; -App::$strings["Privacy group: "] = "Privacygroep: "; -App::$strings["Invalid connection."] = "Ongeldige connectie."; -App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; -App::$strings["System Notifications"] = "Systeemnotificaties"; -App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; -App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -App::$strings["Menu Item Permissions"] = "Permissies menu-item"; -App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -App::$strings["Link Name"] = "Linknaam"; -App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; -App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; -App::$strings["Open link in new window"] = "Open link in nieuw venster"; -App::$strings["Order in list"] = "Volgorde in lijst"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -App::$strings["Submit and finish"] = "Opslaan en afsluiten"; -App::$strings["Submit and continue"] = "Opslaan en doorgaan"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Linkdoel"; -App::$strings["Edit menu"] = "Menu bewerken"; -App::$strings["Edit element"] = "Onderdeel bewerken"; -App::$strings["Drop element"] = "Onderdeel verwijderen"; -App::$strings["New element"] = "Nieuw element"; -App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; -App::$strings["Add menu element"] = "Menu-element toevoegen"; -App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; -App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; -App::$strings["Menu item not found."] = "Menu-item niet gevonden."; -App::$strings["Menu item deleted."] = "Menu-item verwijderd."; -App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -App::$strings["Edit Menu Element"] = "Menu-element bewerken"; -App::$strings["Link text"] = "Linktekst"; -App::$strings["Name or caption"] = "Naam"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; -App::$strings["Choose a short nickname"] = "Korte bijnaam"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; -App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; -App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; -App::$strings["Create Channel"] = "Kanaal aanmaken"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; -App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; -App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -App::$strings["Discard"] = "Annuleren"; -App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; -App::$strings["Profile Photos"] = "Profielfoto's"; -App::$strings["Album not found."] = "Album niet gevonden."; -App::$strings["Delete Album"] = "Verwijder album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; -App::$strings["Delete Photo"] = "Verwijder foto"; -App::$strings["No photos selected"] = "Geen foto's geselecteerd"; -App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; -App::$strings["Upload Photos"] = "Foto's uploaden"; -App::$strings["Enter an album name"] = "Vul een albumnaam in"; -App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; -App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; -App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; -App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; -App::$strings["Contact Photos"] = "Connectiefoto's"; -App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; -App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; -App::$strings["View Photo"] = "Foto weergeven"; -App::$strings["Edit Album"] = "Album bewerken"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; -App::$strings["Photo not available"] = "Foto niet aanwezig"; -App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; -App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; -App::$strings["Private Photo"] = "Privéfoto"; -App::$strings["View Full Size"] = "Volledige grootte weergeven"; -App::$strings["Remove"] = "Verwijderen"; -App::$strings["Edit photo"] = "Foto bewerken"; -App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; -App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; -App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; -App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; -App::$strings["Caption"] = "Bijschrift"; -App::$strings["Add a Tag"] = "Tag toevoegen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; -App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; -App::$strings["I like this (toggle)"] = "Vind ik leuk"; -App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -App::$strings["Please wait"] = "Even wachten"; -App::$strings["This is you"] = "Dit ben jij"; -App::$strings["Comment"] = "Reactie"; -App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["__ctx:title__ Agree"] = "eens"; -App::$strings["__ctx:title__ Disagree"] = "oneens"; -App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; -App::$strings["__ctx:title__ Attending"] = "aanwezig"; -App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; -App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; -App::$strings["View all"] = "Toon alles"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", -); -App::$strings["Photo Tools"] = "Hulpmiddelen"; -App::$strings["In This Photo:"] = "Op deze foto:"; -App::$strings["Map"] = "Kaart"; -App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["Close"] = "Sluiten"; -App::$strings["View Album"] = "Album weergeven"; -App::$strings["Recent Photos"] = "Recente foto's"; -App::$strings["sent you a private message"] = "stuurde jou een privébericht"; -App::$strings["added your channel"] = "voegde jouw kanaal toe"; -App::$strings["g A l F d"] = "G:i, l d F"; -App::$strings["[today]"] = "[vandaag]"; -App::$strings["posted an event"] = "plaatste een gebeurtenis"; -App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -App::$strings["Post successful."] = "Verzenden bericht geslaagd."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -App::$strings["Login failed."] = "Inloggen mislukt."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; -App::$strings["Configuration Editor"] = "Configuratiebewerker"; -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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["App installed."] = "App geïnstalleerd"; +App::$strings["Malformed app."] = "Misvormde app."; +App::$strings["Embed code"] = "Insluitcode"; +App::$strings["Edit App"] = "App bewerken"; +App::$strings["Create App"] = "App maken"; +App::$strings["Name of app"] = "Naam van app"; +App::$strings["Required"] = "Vereist"; +App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; +App::$strings["Description"] = "Omschrijving"; +App::$strings["Photo icon URL"] = "URL van pictogram"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Version ID"] = "Versie-ID"; +App::$strings["Price of app"] = "Prijs van de app"; +App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +App::$strings["Documentation Search"] = "Zoek documentatie"; +App::$strings["Help:"] = "Hulp:"; +App::$strings["Help"] = "Hulp"; +App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; +App::$strings["Item not available."] = "Item is niet aanwezig."; App::$strings["Layout updated."] = "Lay-out bijgewerkt."; App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; App::$strings["Layout not found."] = "Lay-out niet gevonden."; App::$strings["Module Name:"] = "Modulenaam:"; App::$strings["Layout Help"] = "Lay-out-hulp"; -App::$strings["Poke"] = "Aanstoten"; -App::$strings["Poke somebody"] = "Iemand aanstoten"; -App::$strings["Poke/Prod"] = "Aanstoten/porren"; -App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; -App::$strings["Recipient"] = "Ontvanger"; -App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; -App::$strings["Make this post private"] = "Maak dit bericht privé"; -App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -App::$strings["Profile not found."] = "Profiel niet gevonden."; -App::$strings["Profile deleted."] = "Profiel verwijderd."; -App::$strings["Profile-"] = "Profiel-"; -App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; -App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; -App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; -App::$strings["Profile Name is required."] = "Profielnaam is vereist"; -App::$strings["Marital Status"] = "Huwelijke status"; -App::$strings["Romantic Partner"] = "Romantische partner"; -App::$strings["Likes"] = "Houdt van"; -App::$strings["Dislikes"] = "Houdt niet van"; -App::$strings["Work/Employment"] = "Werk/arbeid"; -App::$strings["Religion"] = "Religie"; -App::$strings["Political Views"] = "Politieke overtuigingen"; -App::$strings["Sexual Preference"] = "Seksuele voorkeur"; -App::$strings["Homepage"] = "Homepage"; -App::$strings["Interests"] = "Interesses"; -App::$strings["Profile updated."] = "Profiel bijgewerkt"; -App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; -App::$strings["Edit Profile Details"] = "Profiel bewerken"; -App::$strings["View this profile"] = "Profiel weergeven"; -App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; -App::$strings["Profile Tools"] = "Hulpmiddelen"; -App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; -App::$strings["Change profile photo"] = "Profielfoto veranderen"; -App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; -App::$strings["Clone this profile"] = "Dit profiel klonen"; -App::$strings["Delete this profile"] = "Dit profiel verwijderen"; -App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; -App::$strings["Personal"] = "Persoonlijk"; -App::$strings["Relation"] = "Relatie"; -App::$strings["Miscellaneous"] = "Diversen"; -App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; -App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; -App::$strings["Your gender"] = "Jouw geslacht"; -App::$strings["Marital status"] = "Burgerlijke staat"; -App::$strings["Sexual preference"] = "Seksuele voorkeur"; -App::$strings["Profile name"] = "Profielnaam"; -App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; -App::$strings["Your full name"] = "Jouw volledige naam"; -App::$strings["Title/Description"] = "Titel/omschrijving"; -App::$strings["Street address"] = "Straat en huisnummer"; -App::$strings["Locality/City"] = "Woonplaats"; -App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; -App::$strings["Postal/Zip code"] = "Postcode"; -App::$strings["Country"] = "Land"; -App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; -App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; -App::$strings["Since (date)"] = "Sinds (datum)"; -App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; -App::$strings["Hometown"] = "Oorspronkelijk uit"; -App::$strings["Political views"] = "Politieke overtuigingen"; -App::$strings["Religious views"] = "Religieuze overtuigingen"; -App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; -App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; -App::$strings["Musical interests"] = "Muzikale interesses"; -App::$strings["Books, literature"] = "Boeken/literatuur"; -App::$strings["Television"] = "Televisie"; -App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; -App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; -App::$strings["Love/Romance"] = "Liefde/romantiek"; -App::$strings["School/Education"] = "School/opleiding"; -App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; -App::$strings["My other channels"] = "Mijn andere kanalen"; -App::$strings["Profile Image"] = "Profielfoto"; -App::$strings["Edit Profiles"] = "Bewerk profielen"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; -App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; -App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; -App::$strings["Profile"] = "Profiel"; -App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; -App::$strings["Visible To"] = "Zichtbaar voor"; -App::$strings["Public Hubs"] = "Openbare hubs"; -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."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Toegangs-
     type"; -App::$strings["Registration Policy"] = "Registratie-
     beleid"; -App::$strings["Stats"] = "Stats"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Beoordelingen"; -App::$strings["Rate"] = "Beoordeel"; -App::$strings["Website:"] = "Website:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; -App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -App::$strings["No ratings"] = "Geen beoordelingen"; -App::$strings["Rating: "] = "Beoordeling: "; -App::$strings["Website: "] = "Website: "; -App::$strings["Description: "] = "Omschrijving: "; -App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; -App::$strings["# Accounts"] = "# accounts"; -App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; -App::$strings["# expired accounts"] = "# verlopen accounts"; -App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; -App::$strings["# Channels"] = "# Kanalen"; -App::$strings["# primary"] = "# primair"; -App::$strings["# clones"] = "# klonen"; -App::$strings["Message queues"] = "Berichtenwachtrij"; -App::$strings["Your software should be updated"] = "Jouw software moet worden bijgewerkt "; -App::$strings["Administration"] = "Beheer"; -App::$strings["Summary"] = "Samenvatting"; -App::$strings["Registered accounts"] = "Geregistreerde accounts"; -App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; -App::$strings["Registered channels"] = "Geregistreerde kanalen"; -App::$strings["Active plugins"] = "Ingeschakelde plugins"; -App::$strings["Version"] = "Versie"; -App::$strings["Repository version (master)"] = "Versie repository (master)"; -App::$strings["Repository version (dev)"] = "Versie repository (dev)"; -App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; -App::$strings["Default"] = "Standaard"; +App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Welkom op %s"; +App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +App::$strings["Visible to:"] = "Zichtbaar voor:"; +App::$strings["Permission Denied."] = "Toegang geweigerd"; +App::$strings["File not found."] = "Bestand niet gevonden."; +App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; +App::$strings["Permissions"] = "Permissies"; +App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; +App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; +App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; +App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; +App::$strings["Share this file"] = "Dit bestand delen"; +App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; +App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; +App::$strings["Name is required"] = "Naam is vereist"; +App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; +App::$strings["Update"] = "Bijwerken"; +App::$strings["This channel is limited to %d tokens"] = "Dit kanaal heeft een limiet van %d tokens"; +App::$strings["Name and Password are required."] = "Naam en wachtwoord zijn vereist"; +App::$strings["Token saved."] = "Token opgeslagen."; +App::$strings["Not valid email."] = "Geen geldig e-mailadres."; +App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; +App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; +App::$strings["Password verification failed."] = "Wachtwoordverificatie mislukt"; +App::$strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; +App::$strings["Password changed."] = "Wachtwoord veranderd."; +App::$strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; +App::$strings["Friends"] = "Vrienden"; +App::$strings["Settings updated."] = "Instellingen bijgewerkt."; +App::$strings["Add application"] = "Applicatie toevoegen"; +App::$strings["Name of application"] = "Naam van applicatie"; +App::$strings["Consumer Key"] = "Consumer key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; +App::$strings["Consumer Secret"] = "Consumer secret"; +App::$strings["Redirect"] = "Redirect/doorverwijzing"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; +App::$strings["Icon url"] = "Pictogram-URL"; +App::$strings["Optional"] = "Optioneel"; +App::$strings["Application not found."] = "Applicatie niet gevonden."; +App::$strings["Connected Apps"] = "Verbonden applicaties"; +App::$strings["Client key starts with"] = "Client key begint met"; +App::$strings["No name"] = "Geen naam"; +App::$strings["Remove authorization"] = "Autorisatie verwijderen"; +App::$strings["No feature settings configured"] = "Geen plugin-instellingen aanwezig"; +App::$strings["Feature/Addon Settings"] = "Plugin-instellingen"; +App::$strings["Account Settings"] = "Account-instellingen"; +App::$strings["Current Password"] = "Huidig wachtwoord"; +App::$strings["Enter New Password"] = "Nieuw wachtwoord invoeren"; +App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; +App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; +App::$strings["Email Address:"] = "E-mailadres:"; +App::$strings["Remove Account"] = "Account verwijderen"; +App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; +App::$strings["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."] = "Gebruik dit formulier om tijdelijke identiteiten aan te maken, waarmee je bepaalde informatie met niet-leden kan delen. Deze identiteiten kunnen onder Permissies (handmatige selectie) worden gebruikt. Gasten kunnen inloggen met onderstaande gegevens om zo toegang te krijgen tot privéinhoud."; +App::$strings["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:"] = "Je kan ook dropbox-achtige links aan mensen geven door bovenstaand wachtwoord op onderstaande manier aan een hub-URL toe te voegen. Voorbeelden:"; +App::$strings["Guest Access Tokens"] = "Gasttoegang"; +App::$strings["Login Name"] = "Inlognaam"; +App::$strings["Login Password"] = "Wachtwoord:"; +App::$strings["Expires (yyyy-mm-dd)"] = "Geldig t/m (yyyy-mm-dd)"; +App::$strings["Their Settings"] = "Hun instellingen"; +App::$strings["My Settings"] = "Mijn instellingen"; +App::$strings["inherited"] = "geërfd"; +App::$strings["Individual Permissions"] = "Individuele permissies"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; +App::$strings["Off"] = "Uit"; +App::$strings["On"] = "Aan"; +App::$strings["Additional Features"] = "Extra functies"; +App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; +App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; +App::$strings["%s - (Experimental)"] = "%s - (experimenteel)"; App::$strings["mobile"] = "mobiel"; -App::$strings["experimental"] = "experimenteel"; -App::$strings["unsupported"] = "Niet ondersteund"; -App::$strings["Yes - with approval"] = "Ja - met goedkeuring"; -App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar"; -App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; -App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; -App::$strings["Site"] = "Hub-instellingen"; -App::$strings["Registration"] = "Registratie"; -App::$strings["File upload"] = "Bestand uploaden"; -App::$strings["Policies"] = "Beleid"; -App::$strings["Advanced"] = "Geavanceerd"; -App::$strings["Site name"] = "Naam van deze \$Projectname-hub"; -App::$strings["Banner/Logo"] = "Banner/logo"; -App::$strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; -App::$strings["System language"] = "Standaardtaal"; -App::$strings["System theme"] = "Standaardthema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor \$Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen"; -App::$strings["Mobile system theme"] = "Standaardthema voor mobiel"; -App::$strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; -App::$strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; -App::$strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; -App::$strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; -App::$strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?"; -App::$strings["Invitation only"] = "Alleen op uitnodiging"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt."; -App::$strings["Register text"] = "Tekst tijdens registratie"; -App::$strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken."; -App::$strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)"; -App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; -App::$strings["Allowed friend domains"] = "Toegestane domeinen"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; -App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; -App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; -App::$strings["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."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; -App::$strings["Verify Email Addresses"] = "E-mailadres verifieren"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; -App::$strings["Force publish"] = "Dwing kanaalvermelding af"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; -App::$strings["Import Public Streams"] = "Openbare streams importeren"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd."; -App::$strings["Login on Homepage"] = "Inlogformulier op de homepagina"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. "; -App::$strings["Enable context help"] = "Schakel contextuele hulp in"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt."; -App::$strings["Directory Server URL"] = "Server-URL voor de kanalengids"; -App::$strings["Default directory server"] = "Standaardserver voor de kanalengids"; -App::$strings["Proxy user"] = "Gebruikersnaam proxy"; -App::$strings["Proxy URL"] = "Proxy-URL"; -App::$strings["Network timeout"] = "Netwerktimeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; -App::$strings["Delivery interval"] = "Afleveringsinterval"; -App::$strings["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."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; -App::$strings["Deliveries per process"] = "Leveringen per serverproces"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5"; -App::$strings["Poll interval"] = "Poll-interval"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; -App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; -App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; -App::$strings["Off"] = "Uit"; -App::$strings["On"] = "Aan"; -App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; -App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; -App::$strings["No server found"] = "Geen hub gevonden"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "voor kanaal"; -App::$strings["on server"] = "op hub"; -App::$strings["Server"] = "Hubbeheer"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:"; -App::$strings["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/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd."; -App::$strings["Security"] = "Beveiliging"; -App::$strings["Block public"] = "Openbare toegang blokkeren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; -App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security\" HTTP-header inschakelen"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = " \"Content Security Policy\" HTTP-header inschakelen"; -App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; -App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; -App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; -App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan"; -App::$strings["One site per line. By default embedded content is filtered."] = "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd."; -App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren"; -App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; -App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; -App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; -App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; -App::$strings["No failed updates."] = "Geen mislukte updates."; -App::$strings["Failed Updates"] = "Mislukte updates"; -App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; -App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; -App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; -App::$strings["Total Entries"] = "Aantal vermeldingen"; -App::$strings["Priority"] = "Prioriteit"; -App::$strings["Destination URL"] = "Doel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; -App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; -App::$strings["Last known contact"] = "Voor het laatst contact"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s account geblokkeerd/gedeblokkeerd", - 1 => "%s accounts geblokkeerd/gedeblokkeerd", -); -App::$strings["%s account deleted"] = array( - 0 => "%s account verwijderd", - 1 => "%s accounts verwijderd", -); -App::$strings["Account not found"] = "Account niet gevonden"; -App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; -App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; -App::$strings["Accounts"] = "Accounts"; -App::$strings["select all"] = "alles selecteren"; -App::$strings["Registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; -App::$strings["Request date"] = "Tijd/datum verzoek"; -App::$strings["No registrations."] = "Geen verzoeken."; -App::$strings["Deny"] = "Afkeuren"; -App::$strings["All Channels"] = "Alle kanalen"; -App::$strings["Register date"] = "Geregistreerd"; -App::$strings["Last login"] = "Laatste keer ingelogd"; -App::$strings["Expires"] = "Verloopt"; -App::$strings["Service Class"] = "Abonnementen"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; -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?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanaal gecensureerd/ongecensureerd", - 1 => "%s kanalen gecensureerd/ongecensureerd", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", - 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanaal verwijderd", - 1 => "%s kanalen verwijderd", -); -App::$strings["Channel not found"] = "Kanaal niet gevonden"; -App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; -App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; -App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; -App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; -App::$strings["Channels"] = "Kanalen"; -App::$strings["Censor"] = "Censureren"; -App::$strings["Uncensor"] = "Niet censureren"; -App::$strings["Allow Code"] = "Scripts toestaan"; -App::$strings["Disallow Code"] = "Scripts niet toestaan"; -App::$strings["Channel"] = "Kanaal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["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?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; -App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; -App::$strings["Disable"] = "Uitschakelen"; -App::$strings["Enable"] = "Inschakelen"; -App::$strings["Plugins"] = "Plugins"; -App::$strings["Toggle"] = "Omschakelen"; -App::$strings["Settings"] = "Instellingen"; -App::$strings["Author: "] = "Auteur: "; -App::$strings["Maintainer: "] = "Beheerder: "; -App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; -App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; -App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; -App::$strings["Requires: "] = "Vereist: "; -App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Vul de openbare Git-URL in van de plugin-repository."; -App::$strings["Plugin repo git URL"] = "Git-URL plugin-repository"; -App::$strings["Custom repo name"] = "Handmatige repository-naam"; -App::$strings["(optional)"] = "(optioneel)"; -App::$strings["Download Plugin Repo"] = "Plugin-repository downloaden"; -App::$strings["Install new repo"] = "Nieuwe repository installeren"; -App::$strings["Install"] = "Installeren"; -App::$strings["Manage Repos"] = "Repositories beheren"; -App::$strings["Installed Plugin Repositories"] = "Toegevoegde plugin-repositories"; -App::$strings["Install a New Plugin Repository"] = "Nieuwe plugin-repository toevoegen"; -App::$strings["Update"] = "Bijwerken"; -App::$strings["Switch branch"] = "Branch veranderen"; -App::$strings["No themes found."] = "Geen thema's gevonden"; -App::$strings["Screenshot"] = "Schermafdruk"; -App::$strings["Themes"] = "Thema's"; -App::$strings["[Experimental]"] = "[Experimenteel]"; -App::$strings["[Unsupported]"] = "[Niet ondersteund]"; -App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; -App::$strings["Logs"] = "Logboeken"; -App::$strings["Clear"] = "Leegmaken"; -App::$strings["Debugging"] = "Debuggen"; -App::$strings["Log file"] = "Logbestand"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; -App::$strings["Log level"] = "Logniveau"; -App::$strings["New Profile Field"] = "Nieuw profielveld"; -App::$strings["Field nickname"] = "Bijnaam voor veld"; -App::$strings["System name of field"] = "Systeemnaam voor veld"; -App::$strings["Input type"] = "Invoertype"; -App::$strings["Field Name"] = "Veldnaam"; -App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; -App::$strings["Help text"] = "Helptekst"; -App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; -App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; -App::$strings["Edit Profile Field"] = "Profielveld bewerken"; -App::$strings["Profile Fields"] = "Profielvelden"; -App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; -App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; -App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; -App::$strings["All available fields"] = "Alle beschikbare velden"; -App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; -App::$strings["Create Custom Field"] = "Extra velden aanmaken"; -App::$strings["App installed."] = "App geïnstalleerd"; -App::$strings["Malformed app."] = "Misvormde app."; -App::$strings["Embed code"] = "Insluitcode"; -App::$strings["Edit App"] = "App bewerken"; -App::$strings["Create App"] = "App maken"; -App::$strings["Name of app"] = "Naam van app"; -App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; -App::$strings["Photo icon URL"] = "URL van pictogram"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -App::$strings["Categories (optional, comma separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Version ID"] = "Versie-ID"; -App::$strings["Price of app"] = "Prijs van de app"; -App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; -App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; -App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; -App::$strings["URL of bookmark"] = "URL van bladwijzer"; -App::$strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; -App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registratie geslaagd. Controleer je e-mail voor instructies."; -App::$strings["Your registration is pending approval by the site owner."] = "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze \$Projectname-hub."; -App::$strings["Your registration can not be processed."] = "Jouw registratie kan niet verwerkt worden."; -App::$strings["Registration on this hub is disabled."] = "Registreren van nieuwe accounts is op deze hub uitgeschakeld."; -App::$strings["Registration on this hub is by approval only."] = "Registraties op deze hub moeten eerst worden goedgekeurd."; -App::$strings["Register at another affiliated hub."] = "Registreer op een andere hub."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Deze \$Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals."; -App::$strings["Terms of Service"] = "Gebruiksvoorwaarden"; -App::$strings["I accept the %s for this website"] = "Ik accepteer de %s van deze \$Projectname-hub"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ik ben 13 jaar of ouder en accepteer de %s van deze \$Projectname-hub"; -App::$strings["Your email address"] = "Jouw e-mailadres"; -App::$strings["Choose a password"] = "Geef een wachtwoord op"; -App::$strings["Please re-enter your password"] = "Geef het wachtwoord opnieuw op"; -App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode in"; -App::$strings["no"] = "Nee"; -App::$strings["yes"] = "Ja"; -App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; -App::$strings["Register"] = "Registreren"; -App::$strings["Proceed to create your first channel"] = "Volgende stap: aanmaken van jouw eerste kanaal"; -App::$strings["Please login."] = "Inloggen."; -App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; -App::$strings["Remove This Account"] = "Verwijder dit account"; -App::$strings["WARNING: "] = "WAARSCHUWING: "; -App::$strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd."; -App::$strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; -App::$strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; -App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; -App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; -App::$strings["Remove Account"] = "Account verwijderen"; -App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; -App::$strings["Remove This Channel"] = "Verwijder dit kanaal"; -App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; -App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; -App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; -App::$strings["Remove Channel"] = "Kanaal verwijderen"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; -App::$strings["The error message was:"] = "Het foutbericht was:"; -App::$strings["Authentication failed."] = "Authenticatie mislukt."; -App::$strings["Remote Authentication"] = "Authenticatie op afstand"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; -App::$strings["Authenticate"] = "Authenticeren"; -App::$strings["Items tagged with: %s"] = "Items getagd met %s"; -App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; -App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; -App::$strings["Name is required"] = "Naam is vereist"; -App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; -App::$strings["Not valid email."] = "Geen geldig e-mailadres."; -App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; -App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; -App::$strings["Password verification failed."] = "Wachtwoordverificatie mislukt"; -App::$strings["Passwords do not match. Password unchanged."] = "Wachtwoorden komen niet overeen. Wachtwoord onveranderd."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd."; -App::$strings["Password changed."] = "Wachtwoord veranderd."; -App::$strings["Password update failed. Please try again."] = "Bijwerken wachtwoord mislukt. Probeer opnieuw."; -App::$strings["Settings updated."] = "Instellingen bijgewerkt."; -App::$strings["Add application"] = "Applicatie toevoegen"; -App::$strings["Name of application"] = "Naam van applicatie"; -App::$strings["Consumer Key"] = "Consumer key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20"; -App::$strings["Consumer Secret"] = "Consumer secret"; -App::$strings["Redirect"] = "Redirect/doorverwijzing"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist"; -App::$strings["Icon url"] = "Pictogram-URL"; -App::$strings["Optional"] = "Optioneel"; -App::$strings["Application not found."] = "Applicatie niet gevonden."; -App::$strings["Connected Apps"] = "Verbonden applicaties"; -App::$strings["Client key starts with"] = "Client key begint met"; -App::$strings["No name"] = "Geen naam"; -App::$strings["Remove authorization"] = "Autorisatie verwijderen"; -App::$strings["No feature settings configured"] = "Geen plugin-instellingen aanwezig"; -App::$strings["Feature/Addon Settings"] = "Plugin-instellingen"; -App::$strings["Account Settings"] = "Account-instellingen"; -App::$strings["Current Password"] = "Huidig wachtwoord"; -App::$strings["Enter New Password"] = "Nieuw wachtwoord invoeren"; -App::$strings["Confirm New Password"] = "Nieuw wachtwoord bevestigen"; -App::$strings["Leave password fields blank unless changing"] = "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen"; -App::$strings["Email Address:"] = "E-mailadres:"; -App::$strings["Remove this account including all its channels"] = "Dit account en al zijn kanalen verwijderen"; -App::$strings["Additional Features"] = "Extra functies"; -App::$strings["Connector Settings"] = "Instellingen externe koppelingen"; -App::$strings["No special theme for mobile devices"] = "Geen speciaal thema voor mobiele apparaten"; -App::$strings["%s - (Experimental)"] = "%s - (experimenteel)"; -App::$strings["Display Settings"] = "Weergave-instellingen"; -App::$strings["Theme Settings"] = "Thema-instellingen"; -App::$strings["Custom Theme Settings"] = "Handmatige thema-instellingen"; -App::$strings["Content Settings"] = "Inhoudsinstellingen"; -App::$strings["Display Theme:"] = "Gebruik thema:"; -App::$strings["Mobile Theme:"] = "Mobiel thema:"; -App::$strings["Preload images before rendering the page"] = "Afbeeldingen laden voordat de pagina wordt weergegeven"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven"; -App::$strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; -App::$strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; -App::$strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; -App::$strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; -App::$strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; -App::$strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; -App::$strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; -App::$strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; -App::$strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op gridpagina"; -App::$strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; -App::$strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; -App::$strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; -App::$strings["Nobody except yourself"] = "Niemand, behalve jezelf"; -App::$strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; -App::$strings["Approved connections"] = "Geaccepteerde connecties"; -App::$strings["Any connections"] = "Alle connecties"; -App::$strings["Anybody on this website"] = "Iedereen op deze hub"; -App::$strings["Anybody in this network"] = "Iedereen in dit netwerk"; -App::$strings["Anybody authenticated"] = "Geauthenticeerd"; -App::$strings["Anybody on the internet"] = "Iedereen op het internet"; -App::$strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; -App::$strings["Your channel address is"] = "Jouw kanaaladres is"; -App::$strings["Channel Settings"] = "Kanaal-instellingen"; -App::$strings["Basic Settings"] = "Basis-instellingen"; -App::$strings["Full Name:"] = "Volledige naam:"; -App::$strings["Your Timezone:"] = "Jouw tijdzone:"; -App::$strings["Default Post Location:"] = "Standaardlocatie bericht:"; -App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; -App::$strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; -App::$strings["Adult Content"] = "Inhoud voor volwassenen"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; -App::$strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; -App::$strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; -App::$strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; -App::$strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; -App::$strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; -App::$strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; -App::$strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; -App::$strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; -App::$strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; -App::$strings["0 or blank to use the website limit."] = "0 of leeg om het standaard aantal dagen van deze hub te gebruiken."; -App::$strings["This website expires after %d days."] = "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen."; -App::$strings["This website does not expire imported content."] = "Deze hub laat de inhoud van andere kanalen niet verlopen."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang."; -App::$strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; -App::$strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; -App::$strings["Default Post and Publish Permissions"] = "Standaard permissies voor nieuwe berichten en publicaties"; -App::$strings["Use my default audience setting for the type of object published"] = "Gebruik mijn standaard privacy-instelling voor dit type publicatie"; -App::$strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; -App::$strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; -App::$strings["Notification Settings"] = "Notificatie-instellingen"; -App::$strings["By default post a status message when:"] = "Plaats automatisch een bericht wanneer:"; -App::$strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; -App::$strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; -App::$strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; -App::$strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; -App::$strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; -App::$strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; -App::$strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; -App::$strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; -App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt"; -App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; -App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; -App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; -App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; -App::$strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; -App::$strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; -App::$strings["Unseen private messages"] = "Niet bekeken privéberichten"; -App::$strings["Recommended"] = "Aanbevolen"; -App::$strings["Upcoming events"] = "Aankomende gebeurtenissen"; -App::$strings["Events today"] = "Gebeurtenissen van vandaag"; -App::$strings["Upcoming birthdays"] = "Aankomende verjaardagen"; -App::$strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; -App::$strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; -App::$strings["System info messages"] = "Systeemmededelingen"; -App::$strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; -App::$strings["New connections"] = "Nieuwe connecties"; -App::$strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; -App::$strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; -App::$strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; -App::$strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; -App::$strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; -App::$strings["Miscellaneous Settings"] = "Diverse instellingen"; -App::$strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads"; -App::$strings["%Y - current year, %m - current month"] = "%Y - dit jaar, %m - deze maand"; -App::$strings["Default file upload folder"] = "Standaard bestandsmap voor uploads"; -App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; -App::$strings["Remove this channel."] = "Verwijder dit kanaal."; -App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share"; -App::$strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup"; -App::$strings["Could not connect to database."] = "Could not connect to database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; -App::$strings["Could not create table."] = "Could not create table."; -App::$strings["Your site database has been installed."] = "Your hub database has been installed."; -App::$strings["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."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Please see the file \"install/INSTALL.txt\"."; -App::$strings["System check"] = "System check"; -App::$strings["Check again"] = "Check again"; -App::$strings["Database connection"] = "Database connection"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "In order to install \$Projectname we need to know how to connect to your database."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Please contact your hosting provider or server administrator if you have questions about these settings."; -App::$strings["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."; -App::$strings["Database Server Name"] = "Database Server Name"; -App::$strings["Default is 127.0.0.1"] = "Default is 127.0.0.1"; -App::$strings["Database Port"] = "Database Port"; -App::$strings["Communication port number - use 0 for default"] = "Communication port number - use 0 for default"; -App::$strings["Database Login Name"] = "Database Login Name"; -App::$strings["Database Login Password"] = "Database Login Password"; -App::$strings["Database Name"] = "Database Name"; -App::$strings["Database Type"] = "Database Type"; -App::$strings["Site administrator email address"] = "Hub administrator email address"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Your account email address must match this in order to use the web admin panel."; -App::$strings["Website URL"] = "Hub URL"; -App::$strings["Please use SSL (https) URL if available."] = "Please use SSL (https) URL if available."; -App::$strings["Please select a default timezone for your website"] = "Please select a default timezone for your hub"; -App::$strings["Site settings"] = "Hub settings"; -App::$strings["Enable \$Projectname advanced features?"] = "Enable \$Projectname advanced features?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Some advanced features, while useful - may be best suited for technically proficient audiences"; -App::$strings["PHP version 5.5 or greater is required."] = "PHP version 5.5 or greater is required."; -App::$strings["PHP version"] = "PHP version"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Could not find a command line version of PHP in the web server PATH."; -App::$strings["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."; -App::$strings["PHP executable path"] = "PHP executable path"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Enter full path to php executable. You can leave this blank to continue the installation."; -App::$strings["Command line PHP"] = "Command line PHP"; -App::$strings["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."; -App::$strings["This is required for message delivery to work."] = "This is required for message delivery to work."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["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."; -App::$strings["You can adjust these settings in the servers php.ini."] = "You can adjust these settings in the servers php.ini."; -App::$strings["PHP upload limits"] = "PHP upload limits"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Generate encryption keys"; -App::$strings["libCurl PHP module"] = "libCurl PHP module"; -App::$strings["GD graphics PHP module"] = "GD graphics PHP module"; -App::$strings["OpenSSL PHP module"] = "OpenSSL PHP module"; -App::$strings["mysqli or postgres PHP module"] = "mysqli or postgres PHP module"; -App::$strings["mb_string PHP module"] = "mb_string PHP module"; -App::$strings["mcrypt PHP module"] = "mcrypt PHP module"; -App::$strings["xml PHP module"] = "xml PHP module"; -App::$strings["Apache mod_rewrite module"] = "Apache mod_rewrite module"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Error: Apache webserver mod-rewrite module is required but not installed."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Error: proc_open is required but is either not installed or has been disabled in php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Error: libCURL PHP module required but not installed."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Error: GD graphics PHP module with JPEG support required but not installed."; -App::$strings["Error: openssl PHP module required but not installed."] = "Error: openssl PHP module required but not installed."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Error: mysqli or postgres PHP module required but neither are installed."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Error: mb_string PHP module required but not installed."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Error: mcrypt PHP module required but not installed."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Error: xml PHP module required for DAV but not installed."; -App::$strings["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."; -App::$strings["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."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php is writable"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."; -App::$strings["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."; -App::$strings["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."; -App::$strings["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."; -App::$strings["%s is writable"] = "%s is writable"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"; -App::$strings["store is writable"] = "store is writable"; -App::$strings["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 hub."; -App::$strings["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 hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"; -App::$strings["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."; -App::$strings["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 hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues."; -App::$strings["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 hub) so we must insist on this requirement."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Providers are available that issue free certificates which are browser-valid."; -App::$strings["SSL certificate validation"] = "SSL certificate validation"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Url rewrite in .htaccess is not working. Check your server configuration.Test: "; -App::$strings["Url rewrite is working"] = "Url rewrite is working"; -App::$strings["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."; -App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; -App::$strings["

    What next

    "] = "

    What next

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; -App::$strings["NEW"] = "NIEUW"; -App::$strings["Remove all files"] = "Verwijder alle bestanden"; -App::$strings["Remove this file"] = "Verwijder dit bestand"; -App::$strings["Version %s"] = "Versie %s"; -App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; -App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; -App::$strings["Running at web location"] = "Draaiend op weblocatie"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; -App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -App::$strings["\$projectname issues"] = "\$projectname-issues"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Hubbeheerders: "; -App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; -App::$strings["Source created."] = "Bron aangemaakt."; -App::$strings["Source updated."] = "Bron aangemaakt."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Kanaalbronnen"; -App::$strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; -App::$strings["New Source"] = "Nieuwe bron"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; -App::$strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; -App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; -App::$strings["Channel Name"] = "Kanaalnaam"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)"; -App::$strings["Source not found."] = "Bron niet gevonden"; -App::$strings["Edit Source"] = "Bron bewerken"; -App::$strings["Delete Source"] = "Bron verwijderen"; -App::$strings["Source removed"] = "Bron verwijderd"; -App::$strings["Unable to remove source."] = "Verwijderen bron mislukt."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; -App::$strings["Ignore/Hide"] = "Negeren/Verbergen"; -App::$strings["post"] = "bericht"; -App::$strings["comment"] = "reactie"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; -App::$strings["Tag removed"] = "Tag verwijderd"; -App::$strings["Remove Item Tag"] = "Verwijder item-tag"; -App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; -App::$strings["Thing updated"] = "Ding bijgewerkt"; -App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; -App::$strings["Thing added"] = "Ding toegevoegd"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Ding weergeven"; -App::$strings["item not found."] = "Item niet gevonden"; -App::$strings["Edit Thing"] = "Ding bewerken"; -App::$strings["Select a profile"] = "Kies een profiel"; -App::$strings["Post an activity"] = "Plaats een bericht"; -App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -App::$strings["Name of thing e.g. something"] = "Naam van ding"; -App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; -App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -App::$strings["Export Channel"] = "Kanaal exporteren"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -App::$strings["Export Content"] = "Inhoud exporteren"; -App::$strings["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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; -App::$strings["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."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; -App::$strings["No connections."] = "Geen connecties."; -App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -App::$strings["View Connections"] = "Connecties weergeven"; -App::$strings["Source of Item"] = "Bron van item"; -App::$strings["Webpages"] = "Webpagina's"; -App::$strings["Actions"] = "Acties"; -App::$strings["Page Link"] = "Paginalink"; -App::$strings["Page Title"] = "Paginatitel"; -App::$strings["Xchan Lookup"] = "Xchan opzoeken"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Bug Report"] = "Bugrapport"; -App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; -App::$strings["My Chatrooms"] = "Mijn chatkanalen"; -App::$strings["Firefox Share"] = "Firefox Share"; -App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Post"] = "Bericht"; -App::$strings["Purchase"] = "Aanschaffen"; -App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; -App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; -App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; -App::$strings["Room not found."] = "Chatkanaal niet gevonden"; -App::$strings["Room is full"] = "Chatkanaal is vol"; -App::$strings["\$Projectname Notification"] = "\$Projectname-notificatie"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Bedankt,"; -App::$strings["%s Administrator"] = "Beheerder %s"; -App::$strings["%s "] = "%s "; -App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; -App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -App::$strings["a private message"] = "een privébericht"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -App::$strings["Name:"] = "Naam:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; -App::$strings["created a new post"] = "maakte een nieuw bericht aan"; -App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; -App::$strings["Select"] = "Kies"; -App::$strings["Save to Folder"] = "In map opslaan"; -App::$strings["I will attend"] = "Aanwezig"; -App::$strings["I will not attend"] = "Niet aanwezig"; -App::$strings["I might attend"] = "Mogelijk aanwezig"; -App::$strings["I agree"] = "Eens"; -App::$strings["I disagree"] = "Oneens"; -App::$strings["I abstain"] = "Onthouding"; -App::$strings["Add Star"] = "Ster toevoegen"; -App::$strings["Remove Star"] = "Ster verwijderen"; -App::$strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; -App::$strings["starred"] = "met ster"; -App::$strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; -App::$strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; -App::$strings["Add Tag"] = "Tag toevoegen"; -App::$strings["like"] = "vind dit leuk"; -App::$strings["dislike"] = "vind dit niet leuk"; -App::$strings["Share This"] = "Delen"; -App::$strings["share"] = "delen"; -App::$strings["Delivery Report"] = "Afleveringsrapport"; -App::$strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", -); -App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; -App::$strings["to"] = "aan"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; -App::$strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; -App::$strings["from %s"] = "van %s"; -App::$strings["last edited: %s"] = "laatst bewerkt: %s"; -App::$strings["Expires: %s"] = "Verloopt: %s"; -App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; -App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; -App::$strings["Mark all seen"] = "Markeer alles als bekeken"; -App::$strings["[+] show all"] = "[+] alle"; -App::$strings["Bold"] = "Vet"; -App::$strings["Italic"] = "Cursief"; -App::$strings["Underline"] = "Onderstrepen"; -App::$strings["Quote"] = "Citeren"; -App::$strings["Code"] = "Broncode"; -App::$strings["Image"] = "Afbeelding"; -App::$strings["Insert Link"] = "Link invoegen"; -App::$strings["Video"] = "Video"; -App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -App::$strings["Categories"] = "Categorieën"; -App::$strings["Tags"] = "Tags"; -App::$strings["Keywords"] = "Trefwoorden"; -App::$strings["have"] = "heb"; -App::$strings["has"] = "heeft"; -App::$strings["want"] = "wil"; -App::$strings["wants"] = "wil"; -App::$strings["likes"] = "vindt dit leuk"; -App::$strings["dislikes"] = "vindt dit niet leuk"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Start:"; -App::$strings["Finishes:"] = "Einde:"; -App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -App::$strings["Not specified"] = "Niet aangegeven"; -App::$strings["Needs Action"] = "Actie vereist"; -App::$strings["Completed"] = "Voltooid"; -App::$strings["In Process"] = "In behandeling"; -App::$strings["Cancelled"] = "Geannuleerd"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; -App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; -App::$strings["(Unknown)"] = "(Onbekend)"; -App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; -App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; -App::$strings["Privacy group: %s"] = "Privacygroep: %s"; -App::$strings["Connection not found."] = "Connectie niet gevonden."; -App::$strings["profile photo"] = "profielfoto"; -App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; -App::$strings["[no subject]"] = "[geen onderwerp]"; -App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; -App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; -App::$strings["prev"] = "vorige"; -App::$strings["first"] = "eerste"; -App::$strings["last"] = "laatste"; -App::$strings["next"] = "volgende"; -App::$strings["older"] = "ouder"; -App::$strings["newer"] = "nieuwer"; -App::$strings["No connections"] = "Geen connecties"; -App::$strings["View all %s connections"] = "Toon alle %s connecties"; -App::$strings["poke"] = "aanstoten"; -App::$strings["poked"] = "aangestoten"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "gepingd"; -App::$strings["prod"] = "por"; -App::$strings["prodded"] = "gepord"; -App::$strings["slap"] = "slaan"; -App::$strings["slapped"] = "sloeg"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "gefingerd"; -App::$strings["rebuff"] = "afpoeieren"; -App::$strings["rebuffed"] = "afgepoeierd"; -App::$strings["happy"] = "gelukkig"; -App::$strings["sad"] = "bedroefd"; -App::$strings["mellow"] = "mellow"; -App::$strings["tired"] = "moe"; -App::$strings["perky"] = "parmantig"; -App::$strings["angry"] = "boos"; -App::$strings["stupefied"] = "verbijsterd"; -App::$strings["puzzled"] = "verward"; -App::$strings["interested"] = "geïnteresseerd"; -App::$strings["bitter"] = "verbitterd"; -App::$strings["cheerful"] = "vrolijk"; -App::$strings["alive"] = "levendig"; -App::$strings["annoyed"] = "geërgerd"; -App::$strings["anxious"] = "bezorgd"; -App::$strings["cranky"] = "humeurig"; -App::$strings["disturbed"] = "verontrust"; -App::$strings["frustrated"] = "gefrustreerd "; -App::$strings["depressed"] = "gedeprimeerd"; -App::$strings["motivated"] = "gemotiveerd"; -App::$strings["relaxed"] = "ontspannen"; -App::$strings["surprised"] = "verrast"; -App::$strings["Monday"] = "maandag"; -App::$strings["Tuesday"] = "dinsdag"; -App::$strings["Wednesday"] = "woensdag"; -App::$strings["Thursday"] = "donderdag"; -App::$strings["Friday"] = "vrijdag"; -App::$strings["Saturday"] = "zaterdag"; -App::$strings["Sunday"] = "zondag"; -App::$strings["January"] = "januari"; -App::$strings["February"] = "februari"; -App::$strings["March"] = "maart"; -App::$strings["April"] = "april"; -App::$strings["May"] = "mei"; -App::$strings["June"] = "juni"; -App::$strings["July"] = "juli"; -App::$strings["August"] = "augustus"; -App::$strings["September"] = "september"; -App::$strings["October"] = "oktober"; -App::$strings["November"] = "november"; -App::$strings["December"] = "december"; -App::$strings["Unknown Attachment"] = "Onbekende bijlage"; -App::$strings["unknown"] = "onbekend"; -App::$strings["remove category"] = "categorie verwijderen"; -App::$strings["remove from file"] = "uit map verwijderen"; -App::$strings["default"] = "standaard"; -App::$strings["Page layout"] = "Pagina-lay-out"; -App::$strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; -App::$strings["Page content type"] = "Opmaaktype pagina"; -App::$strings["Select an alternate language"] = "Kies een andere taal"; -App::$strings["activity"] = "activiteit"; -App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; -App::$strings["Pages"] = "Pagina's"; -App::$strings["System"] = "Systeem"; -App::$strings["New App"] = "Nieuwe app"; -App::$strings["Suggestions"] = "Voorgestelde kanalen"; -App::$strings["See more..."] = "Meer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -App::$strings["Enter channel address"] = "Vul kanaaladres in"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Aantekeningen"; -App::$strings["Remove term"] = "Verwijder zoekterm"; -App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -App::$strings["add"] = "toevoegen"; -App::$strings["Saved Folders"] = "Bewaarde mappen"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archieven"; -App::$strings["Refresh"] = "Vernieuwen"; -App::$strings["Account settings"] = "Account"; -App::$strings["Channel settings"] = "Kanaal"; -App::$strings["Additional features"] = "Extra functies"; -App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; -App::$strings["Display settings"] = "Weergave"; -App::$strings["Manage locations"] = "Locaties beheren"; -App::$strings["Export channel"] = "Kanaal exporteren"; -App::$strings["Connected apps"] = "Verbonden applicaties"; -App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -App::$strings["Private Mail Menu"] = "Privéberichten"; -App::$strings["Combined View"] = "Gecombineerd postvak"; -App::$strings["Inbox"] = "Postvak IN"; -App::$strings["Outbox"] = "Postvak UIT"; -App::$strings["New Message"] = "Nieuw bericht"; -App::$strings["Conversations"] = "Conversaties"; -App::$strings["Received Messages"] = "Ontvangen berichten"; -App::$strings["Sent Messages"] = "Verzonden berichten"; -App::$strings["No messages."] = "Geen berichten"; -App::$strings["Delete conversation"] = "Verwijder conversatie"; -App::$strings["Events Menu"] = "Agenda-menu"; -App::$strings["Day View"] = "Dag tonen"; -App::$strings["Week View"] = "Week tonen"; -App::$strings["Month View"] = "Maand tonen"; -App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; -App::$strings["Export Calendar"] = "Exporteren"; -App::$strings["Import Calendar"] = "Importeren"; -App::$strings["Chatrooms"] = "Chatkanalen"; -App::$strings["Overview"] = "Overzicht"; -App::$strings["Chat Members"] = "Chatleden"; -App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -App::$strings["photo/image"] = "foto/afbeelding"; -App::$strings["Click to show more"] = "Klik voor meer"; -App::$strings["Rating Tools"] = "Beoordelingen"; -App::$strings["Rate Me"] = "Beoordeel mij"; -App::$strings["View Ratings"] = "Bekijk beoordelingen"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; -App::$strings["Project/Site Information"] = "Project- en hub-informatie"; -App::$strings["For Members"] = "Voor leden"; -App::$strings["For Administrators"] = "Voor beheerders"; -App::$strings["For Developers"] = "Voor ontwikkelaars"; -App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; -App::$strings["DB updates"] = "Database-updates"; -App::$strings["Admin"] = "Beheer"; -App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; -App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["Public Timeline"] = "Openbare tijdlijn"; -App::$strings["Image/photo"] = "Afbeelding/foto"; -App::$strings["Encrypted content"] = "Versleutelde inhoud"; -App::$strings["Install %s element: "] = "Installeer %s-element: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -App::$strings["$1 wrote:"] = "$1 schreef:"; -App::$strings["Directory Options"] = "Opties kanalengids"; -App::$strings["Safe Mode"] = "Veilig zoeken"; -App::$strings["Public Forums Only"] = "Alleen openbare forums"; -App::$strings["This Website Only"] = "Alleen deze hub"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; -App::$strings["Logout"] = "Uitloggen"; -App::$strings["End this session"] = "Beëindig deze sessie"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Jouw kanaal"; -App::$strings["Your profile page"] = "Jouw profielpagina"; -App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -App::$strings["Edit Profile"] = "Profiel bewerken"; -App::$strings["Edit your profile"] = "Jouw profiel bewerken"; -App::$strings["Your photos"] = "Jouw foto's"; -App::$strings["Your files"] = "Jouw bestanden"; -App::$strings["Your chatrooms"] = "Jouw chatkanalen"; -App::$strings["Bookmarks"] = "Bladwijzers"; -App::$strings["Your bookmarks"] = "Jouw bladwijzers"; -App::$strings["Your webpages"] = "Jouw webpagina's"; -App::$strings["Sign in"] = "Inloggen"; -App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; -App::$strings["Remote authentication"] = "Authenticatie op afstand"; -App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Maak een account aan"; -App::$strings["Help and documentation"] = "Hulp en documentatie"; -App::$strings["Applications, utilities, links, games"] = "Apps"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; -App::$strings["Channel Directory"] = "Kanalengids"; -App::$strings["Your grid"] = "Jouw grid"; -App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; -App::$strings["Channel home"] = "Jouw kanaal"; -App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -App::$strings["Notices"] = "Notificaties"; -App::$strings["Notifications"] = "Notificaties"; -App::$strings["See all notifications"] = "Alle notificaties weergeven"; -App::$strings["Private mail"] = "Privéberichten"; -App::$strings["See all private messages"] = "Alle privéberichten weergeven"; -App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -App::$strings["Event Calendar"] = "Agenda"; -App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; -App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -App::$strings["Manage Your Channels"] = "Beheer je kanalen"; -App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -App::$strings["Loading..."] = "Aan het laden..."; -App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; -App::$strings["Please wait..."] = "Wachten aub..."; -App::$strings["New window"] = "Nieuw venster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", +App::$strings["Display Settings"] = "Weergave-instellingen"; +App::$strings["Theme Settings"] = "Thema-instellingen"; +App::$strings["Custom Theme Settings"] = "Handmatige thema-instellingen"; +App::$strings["Content Settings"] = "Inhoudsinstellingen"; +App::$strings["Display Theme:"] = "Gebruik thema:"; +App::$strings["Select scheme"] = "Kies schema van thema"; +App::$strings["Mobile Theme:"] = "Mobiel thema:"; +App::$strings["Preload images before rendering the page"] = "Afbeeldingen laden voordat de pagina wordt weergegeven"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven"; +App::$strings["Enable user zoom on mobile devices"] = "Inzoomen op smartphones en tablets toestaan"; +App::$strings["Update browser every xx seconds"] = "Ververs de webbrowser om de zoveel seconde"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimaal 10 seconde, geen maximum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maximaal aantal conversaties die per keer geladen worden:"; +App::$strings["Maximum of 100 items"] = "Maximaal 100 conversaties"; +App::$strings["Show emoticons (smilies) as images"] = "Toon emoticons (smilies) als afbeeldingen"; +App::$strings["Link post titles to source"] = "Berichtkoppen naar originele locatie linken"; +App::$strings["System Page Layout Editor - (advanced)"] = "Lay-out bewerken van systeempagina's (geavanceerd)"; +App::$strings["Use blog/list mode on channel page"] = "Gebruik blog/lijst-modus op kanaalpagina"; +App::$strings["(comments displayed separately)"] = "(reacties worden afzonderlijk weergeven)"; +App::$strings["Use blog/list mode on grid page"] = "Gebruik blog/lijst-modus op gridpagina"; +App::$strings["Channel page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)"; +App::$strings["click to expand content exceeding this height"] = "klik om inhoud uit te klappen die deze hoogte overschrijdt"; +App::$strings["Grid page max height of content (in pixels)"] = "Maximale hoogte berichtinhoud op gridpagina (in pixels)"; +App::$strings["Nobody except yourself"] = "Niemand, behalve jezelf"; +App::$strings["Only those you specifically allow"] = "Alleen connecties met uitdrukkelijke toestemming"; +App::$strings["Approved connections"] = "Geaccepteerde connecties"; +App::$strings["Any connections"] = "Alle connecties"; +App::$strings["Anybody on this website"] = "Iedereen op deze hub"; +App::$strings["Anybody in this network"] = "Iedereen in dit netwerk"; +App::$strings["Anybody authenticated"] = "Geauthenticeerd"; +App::$strings["Anybody on the internet"] = "Iedereen op het internet"; +App::$strings["Publish your default profile in the network directory"] = "Publiceer je standaardprofiel in de kanalengids"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen"; +App::$strings["Your channel address is"] = "Jouw kanaaladres is"; +App::$strings["Channel Settings"] = "Kanaal-instellingen"; +App::$strings["Basic Settings"] = "Basis-instellingen"; +App::$strings["Full Name:"] = "Volledige naam:"; +App::$strings["Your Timezone:"] = "Jouw tijdzone:"; +App::$strings["Default Post Location:"] = "Standaardlocatie bericht:"; +App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; +App::$strings["Use Browser Location:"] = "Locatie van webbrowser gebruiken:"; +App::$strings["Adult Content"] = "Inhoud voor volwassenen"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)"; +App::$strings["Security and Privacy Settings"] = "Veiligheids- en privacy-instellingen"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen."; +App::$strings["Hide my online presence"] = "Verberg mijn aanwezigheid"; +App::$strings["Prevents displaying in your profile that you are online"] = "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op \$Projectname aanwezig bent"; +App::$strings["Simple Privacy Settings:"] = "Eenvoudige privacy-instellingen:"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)"; +App::$strings["Private - default private, never open or public"] = "Privé (standaard privé en nooit openbaar)"; +App::$strings["Blocked - default blocked to/from everybody"] = "Geblokkeerd (standaard geblokkeerd naar/van iedereen)"; +App::$strings["Allow others to tag your posts"] = "Anderen toestaan om je berichten te taggen"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren"; +App::$strings["Advanced Privacy Settings"] = "Geavanceerde privacy-instellingen"; +App::$strings["Expire other channel content after this many days"] = "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:"; +App::$strings["0 or blank to use the website limit."] = "0 of leeg om het standaard aantal dagen van deze hub te gebruiken."; +App::$strings["This website expires after %d days."] = "Deze hub laat de inhoud van andere kanalen na %d dagen verlopen."; +App::$strings["This website does not expire imported content."] = "Deze hub laat de inhoud van andere kanalen niet verlopen."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Wanneer de standaard aantal dagen van deze hub lager ligt dan jouw aantal, dan heeft de limiet van deze hub voorrang."; +App::$strings["Maximum Friend Requests/Day:"] = "Maximum aantal connectieverzoeken per dag:"; +App::$strings["May reduce spam activity"] = "Kan eventuele spam verminderen"; +App::$strings["Default Post and Publish Permissions"] = "Standaard permissies voor nieuwe berichten en publicaties"; +App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +App::$strings["Use my default audience setting for the type of object published"] = "Gebruik mijn standaard privacy-instelling voor dit type publicatie"; +App::$strings["Channel permissions category:"] = "Kanaaltype en -permissies:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Maximum aantal privé-berichten per dag van onbekende personen:"; +App::$strings["Useful to reduce spamming"] = "Kan eventuele spam verminderen"; +App::$strings["Notification Settings"] = "Notificatie-instellingen"; +App::$strings["By default post a status message when:"] = "Plaats automatisch een bericht wanneer:"; +App::$strings["accepting a friend request"] = "Een connectieverzoek wordt geaccepteerd"; +App::$strings["joining a forum/community"] = "Je lid wordt van een forum/groep"; +App::$strings["making an interesting profile change"] = "Er sprake is van een interessante profielwijziging"; +App::$strings["Send a notification email when:"] = "Verzend een notificatie per e-mail wanneer:"; +App::$strings["You receive a connection request"] = "Je een connectieverzoek ontvangt"; +App::$strings["Your connections are confirmed"] = "Jouw connecties zijn bevestigd"; +App::$strings["Someone writes on your profile wall"] = "Iemand iets op jouw kanaal heeft geschreven"; +App::$strings["Someone writes a followup comment"] = "Iemand een reactie schrijft"; +App::$strings["You receive a private message"] = "Je een privé-bericht ontvangt"; +App::$strings["You receive a friend suggestion"] = "Je een kanaalvoorstel ontvangt"; +App::$strings["You are tagged in a post"] = "Je expliciet in een bericht bent genoemd"; +App::$strings["You are poked/prodded/etc. in a post"] = "Je bent in een bericht aangestoten/gepord/etc."; +App::$strings["Show visual notifications including:"] = "Toon de volgende zichtbare notificaties:"; +App::$strings["Unseen grid activity"] = "Niet bekeken grid-activiteit"; +App::$strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit"; +App::$strings["Unseen private messages"] = "Niet bekeken privéberichten"; +App::$strings["Recommended"] = "Aanbevolen"; +App::$strings["Upcoming events"] = "Aankomende gebeurtenissen"; +App::$strings["Events today"] = "Gebeurtenissen van vandaag"; +App::$strings["Upcoming birthdays"] = "Aankomende verjaardagen"; +App::$strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; +App::$strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; +App::$strings["System info messages"] = "Systeemmededelingen"; +App::$strings["System critical alerts"] = "Kritische systeemwaarschuwingen"; +App::$strings["New connections"] = "Nieuwe connecties"; +App::$strings["System Registrations"] = "Nieuwe accountregistraties op deze hub"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties"; +App::$strings["Notify me of events this many days in advance"] = "Herinner mij zoveel dagen van te voren aan gebeurtenissen"; +App::$strings["Must be greater than 0"] = "Moet hoger dan 0 zijn"; +App::$strings["Advanced Account/Page Type Settings"] = "Instellingen geavanceerd account/paginatype"; +App::$strings["Change the behaviour of this account for special situations"] = "Verander het gedrag van dit account voor speciale situaties"; +App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!"; +App::$strings["Miscellaneous Settings"] = "Diverse instellingen"; +App::$strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads"; +App::$strings["%Y - current year, %m - current month"] = "%Y - dit jaar, %m - deze maand"; +App::$strings["Default file upload folder"] = "Standaard bestandsmap voor uploads"; +App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven"; +App::$strings["Remove Channel"] = "Kanaal verwijderen"; +App::$strings["Remove this channel."] = "Verwijder dit kanaal."; +App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share"; +App::$strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag"; +App::$strings["network"] = "netwerk"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; +App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; +App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; +App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; +App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; +App::$strings["Privacy group name: "] = "Naam privacygroep: "; +App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; +App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; +App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; +App::$strings["Privacy group editor"] = "Privacygroep bewerken"; +App::$strings["Members"] = "Kanalen"; +App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; +App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; +App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +App::$strings["Profile Photos"] = "Profielfoto's"; +App::$strings["Album not found."] = "Album niet gevonden."; +App::$strings["Delete Album"] = "Verwijder album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; +App::$strings["Delete Photo"] = "Verwijder foto"; +App::$strings["No photos selected"] = "Geen foto's geselecteerd"; +App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB aan foto-opslag gebruikt."; +App::$strings["Upload Photos"] = "Foto's uploaden"; +App::$strings["Enter an album name"] = "Vul een albumnaam in"; +App::$strings["or select an existing album (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Create a status post for this upload"] = "Plaats een bericht voor deze upload."; +App::$strings["Caption (optional):"] = "Bijschrift (optioneel):"; +App::$strings["Description (optional):"] = "Omschrijving (optioneel):"; +App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodeerd worden"; +App::$strings["Contact Photos"] = "Connectiefoto's"; +App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; +App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; +App::$strings["View Photo"] = "Foto weergeven"; +App::$strings["Edit Album"] = "Album bewerken"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; +App::$strings["Photo not available"] = "Foto niet aanwezig"; +App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; +App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; +App::$strings["Private Photo"] = "Privéfoto"; +App::$strings["Previous"] = "Vorige"; +App::$strings["View Full Size"] = "Volledige grootte weergeven"; +App::$strings["Remove"] = "Verwijderen"; +App::$strings["Edit photo"] = "Foto bewerken"; +App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; +App::$strings["Rotate CCW (left)"] = "Draai tegen de klok in (naar links)"; +App::$strings["Enter a new album name"] = "Vul een nieuwe albumnaam in"; +App::$strings["or select an existing one (doubleclick)"] = "of kies een bestaand album (dubbelklikken)"; +App::$strings["Caption"] = "Bijschrift"; +App::$strings["Add a Tag"] = "Tag toevoegen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; +App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +App::$strings["I like this (toggle)"] = "Vind ik leuk"; +App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +App::$strings["Share"] = "Delen"; +App::$strings["Please wait"] = "Even wachten"; +App::$strings["This is you"] = "Dit ben jij"; +App::$strings["Comment"] = "Reactie"; +App::$strings["Preview"] = "Voorvertoning"; +App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["__ctx:title__ Agree"] = "eens"; +App::$strings["__ctx:title__ Disagree"] = "oneens"; +App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; +App::$strings["__ctx:title__ Attending"] = "aanwezig"; +App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; +App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; +App::$strings["View all"] = "Toon alles"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); +App::$strings["Photo Tools"] = "Hulpmiddelen"; +App::$strings["In This Photo:"] = "Op deze foto:"; +App::$strings["Map"] = "Kaart"; +App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["Close"] = "Sluiten"; +App::$strings["View Album"] = "Album weergeven"; +App::$strings["Recent Photos"] = "Recente foto's"; +App::$strings["webpage"] = "Webpagina"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "lay-out"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; +App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; +App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; +App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; +App::$strings["Import completed"] = "Importeren voltooid"; +App::$strings["Import Items"] = "Importeer items"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; +App::$strings["File to Upload"] = "Bestand om te uploaden"; +App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +App::$strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", +); +App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +App::$strings["Send invitations"] = "Uitnodigingen verzenden"; +App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +App::$strings["Your message:"] = "Jouw bericht:"; +App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; +App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; +App::$strings["or visit"] = "of bezoek"; +App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +App::$strings["Location not found."] = "Locatie niet gevonden."; +App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; +App::$strings["Syncing locations"] = "Locaties synchronizeren"; +App::$strings["No locations found."] = "Geen locaties gevonden."; +App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Address"] = "Kanaaladres"; +App::$strings["Primary"] = "Primair"; +App::$strings["Sync Now"] = "Nu synchroniseren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; +App::$strings["Hub not found."] = "Hub niet gevonden."; +App::$strings["Like/Dislike"] = "Leuk/niet leuk"; +App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; +App::$strings["Invalid request."] = "Ongeldig verzoek"; +App::$strings["channel"] = "kanaal"; +App::$strings["thing"] = "ding"; +App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "bericht"; +App::$strings["event"] = "gebeurtenis"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +App::$strings["Action completed."] = "Actie voltooid"; +App::$strings["Thank you."] = "Bedankt"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +App::$strings["Create New"] = "Nieuwe aanmaken"; +App::$strings["Channel Manager"] = "Kanaalbeheer"; +App::$strings["Current Channel"] = "Huidig kanaal"; +App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +App::$strings["Default Channel"] = "Standaardkanaal"; +App::$strings["Make Default"] = "Als standaard instellen"; +App::$strings["%d new messages"] = "%d nieuwe berichten"; +App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; +App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; +App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; +App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +App::$strings["Menu Item Permissions"] = "Permissies menu-item"; +App::$strings["Link Name"] = "Linknaam"; +App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +App::$strings["Open link in new window"] = "Open link in nieuw venster"; +App::$strings["Order in list"] = "Volgorde in lijst"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +App::$strings["Submit and finish"] = "Opslaan en afsluiten"; +App::$strings["Submit and continue"] = "Opslaan en doorgaan"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Linkdoel"; +App::$strings["Edit menu"] = "Menu bewerken"; +App::$strings["Edit element"] = "Onderdeel bewerken"; +App::$strings["Drop element"] = "Onderdeel verwijderen"; +App::$strings["New element"] = "Nieuw element"; +App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; +App::$strings["Add menu element"] = "Menu-element toevoegen"; +App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; +App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; +App::$strings["Menu item not found."] = "Menu-item niet gevonden."; +App::$strings["Menu item deleted."] = "Menu-item verwijderd."; +App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +App::$strings["Edit Menu Element"] = "Menu-element bewerken"; +App::$strings["Link text"] = "Linktekst"; +App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; +App::$strings["# Accounts"] = "# accounts"; +App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; +App::$strings["# expired accounts"] = "# verlopen accounts"; +App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; +App::$strings["# Channels"] = "# Kanalen"; +App::$strings["# primary"] = "# primair"; +App::$strings["# clones"] = "# klonen"; +App::$strings["Message queues"] = "Berichtenwachtrij"; +App::$strings["Your software should be updated"] = "Jouw software moet worden bijgewerkt "; +App::$strings["Administration"] = "Beheer"; +App::$strings["Summary"] = "Samenvatting"; +App::$strings["Registered accounts"] = "Geregistreerde accounts"; +App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; +App::$strings["Registered channels"] = "Geregistreerde kanalen"; +App::$strings["Active plugins"] = "Ingeschakelde plugins"; +App::$strings["Version"] = "Versie"; +App::$strings["Repository version (master)"] = "Versie repository (master)"; +App::$strings["Repository version (dev)"] = "Versie repository (dev)"; +App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; +App::$strings["Default"] = "Standaard"; +App::$strings["experimental"] = "experimenteel"; +App::$strings["unsupported"] = "Niet ondersteund"; +App::$strings["Yes - with approval"] = "Ja - met goedkeuring"; +App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar"; +App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; +App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; +App::$strings["Site"] = "Hub-instellingen"; +App::$strings["File upload"] = "Bestand uploaden"; +App::$strings["Policies"] = "Beleid"; +App::$strings["Advanced"] = "Geavanceerd"; +App::$strings["Site name"] = "Naam van deze \$Projectname-hub"; +App::$strings["Banner/Logo"] = "Banner/logo"; +App::$strings["Administrator Information"] = "Informatie over de beheerder"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; +App::$strings["System language"] = "Standaardtaal"; +App::$strings["System theme"] = "Standaardthema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor \$Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen"; +App::$strings["Mobile system theme"] = "Standaardthema voor mobiel"; +App::$strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; +App::$strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; +App::$strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; +App::$strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; +App::$strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?"; +App::$strings["Invitation only"] = "Alleen op uitnodiging"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt."; +App::$strings["Register text"] = "Tekst tijdens registratie"; +App::$strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken."; +App::$strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)"; +App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; +App::$strings["Allowed friend domains"] = "Toegestane domeinen"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; +App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; +App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; +App::$strings["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."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; +App::$strings["Verify Email Addresses"] = "E-mailadres verifieren"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; +App::$strings["Force publish"] = "Dwing kanaalvermelding af"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; +App::$strings["Import Public Streams"] = "Openbare streams importeren"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd."; +App::$strings["Login on Homepage"] = "Inlogformulier op de homepagina"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. "; +App::$strings["Enable context help"] = "Schakel contextuele hulp in"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt."; +App::$strings["Directory Server URL"] = "Server-URL voor de kanalengids"; +App::$strings["Default directory server"] = "Standaardserver voor de kanalengids"; +App::$strings["Proxy user"] = "Gebruikersnaam proxy"; +App::$strings["Proxy URL"] = "Proxy-URL"; +App::$strings["Network timeout"] = "Netwerktimeout"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; +App::$strings["Delivery interval"] = "Afleveringsinterval"; +App::$strings["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."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; +App::$strings["Deliveries per process"] = "Leveringen per serverproces"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5"; +App::$strings["Poll interval"] = "Poll-interval"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; +App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; +App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; +App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; +App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; +App::$strings["No server found"] = "Geen hub gevonden"; +App::$strings["ID"] = "ID"; +App::$strings["for channel"] = "voor kanaal"; +App::$strings["on server"] = "op hub"; +App::$strings["Server"] = "Hubbeheer"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standaard is ongefilterde HTML in ingesloten (embedded) media toegestaan. Dit is inherent onveilig."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Het wordt aanbevolen om alleen ongefilterde HTML van de volgende websites toe te staan:"; +App::$strings["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/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle andere ingesloten (embedded) inhoud wordt gefilterd, tenzij ingesloten (embedded) inhoud van een website expliciet wordt geblokkeerd."; +App::$strings["Security"] = "Beveiliging"; +App::$strings["Block public"] = "Openbare toegang blokkeren"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; +App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security\" HTTP-header inschakelen"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = " \"Content Security Policy\" HTTP-header inschakelen"; +App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; +App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; +App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; +App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Alleen ingesloten (embedded) inhoud van veilige (SSL) websites en links toestaan."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Alleen ongefilterde ingesloten (embedded) HTML van deze websites toestaan"; +App::$strings["One site per line. By default embedded content is filtered."] = "Eén website per regel. Standaard wordt ingesloten (embedded) inhoud gefilterd."; +App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren"; +App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; +App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; +App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; +App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; +App::$strings["No failed updates."] = "Geen mislukte updates."; +App::$strings["Failed Updates"] = "Mislukte updates"; +App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; +App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; +App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; +App::$strings["Total Entries"] = "Aantal vermeldingen"; +App::$strings["Priority"] = "Prioriteit"; +App::$strings["Destination URL"] = "Doel-URL"; +App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; +App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; +App::$strings["Last known contact"] = "Voor het laatst contact"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s account geblokkeerd/gedeblokkeerd", + 1 => "%s accounts geblokkeerd/gedeblokkeerd", ); -App::$strings["Find Channels"] = "Kanalen vinden"; -App::$strings["Enter name or interest"] = "Vul naam of interesse in"; -App::$strings["Connect/Follow"] = "Verbinden/volgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; -App::$strings["Random Profile"] = "Willekeurig profiel"; -App::$strings["Invite Friends"] = "Vrienden uitnodigen"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", +App::$strings["%s account deleted"] = array( + 0 => "%s account verwijderd", + 1 => "%s accounts verwijderd", ); -App::$strings["show more"] = "meer connecties weergeven"; -App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; -App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; -App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -App::$strings["Categories:"] = "Categorieën:"; -App::$strings["Filed under:"] = "Bewaard onder:"; -App::$strings["View in context"] = "In context bekijken"; -App::$strings["remove"] = "verwijderen"; -App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -App::$strings["View Source"] = "Bron weergeven"; -App::$strings["Follow Thread"] = "Conversatie volgen"; -App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; -App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; -App::$strings["Edit Connection"] = "Connectie bewerken"; -App::$strings["Message"] = "Bericht"; -App::$strings["%s likes this."] = "%s vindt dit leuk."; -App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", +App::$strings["Account not found"] = "Account niet gevonden"; +App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; +App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; +App::$strings["Accounts"] = "Accounts"; +App::$strings["select all"] = "alles selecteren"; +App::$strings["Registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; +App::$strings["Request date"] = "Tijd/datum verzoek"; +App::$strings["Email"] = "E-mail"; +App::$strings["No registrations."] = "Geen verzoeken."; +App::$strings["Deny"] = "Afkeuren"; +App::$strings["Block"] = "Blokkeren"; +App::$strings["Unblock"] = "Deblokkeren"; +App::$strings["All Channels"] = "Alle kanalen"; +App::$strings["Register date"] = "Geregistreerd"; +App::$strings["Last login"] = "Laatste keer ingelogd"; +App::$strings["Expires"] = "Verloopt"; +App::$strings["Service Class"] = "Abonnementen"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; +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?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s kanaal gecensureerd/ongecensureerd", + 1 => "%s kanalen gecensureerd/ongecensureerd", ); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", + 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", ); -App::$strings["and"] = "en"; -App::$strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", +App::$strings["%s channel deleted"] = array( + 0 => "%s kanaal verwijderd", + 1 => "%s kanalen verwijderd", ); -App::$strings["%s like this."] = "%s vinden dit leuk."; -App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; -App::$strings["Set your location"] = "Locatie instellen"; -App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -App::$strings["Page link name"] = "Linknaam pagina"; -App::$strings["Post as"] = "Bericht plaatsen als"; -App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["Channel not found"] = "Kanaal niet gevonden"; +App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; +App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; +App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; +App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; +App::$strings["Channels"] = "Kanalen"; +App::$strings["Censor"] = "Censureren"; +App::$strings["Uncensor"] = "Niet censureren"; +App::$strings["Allow Code"] = "Scripts toestaan"; +App::$strings["Disallow Code"] = "Scripts niet toestaan"; +App::$strings["Channel"] = "Kanaal"; +App::$strings["UID"] = "UID"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["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?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; +App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; +App::$strings["Disable"] = "Uitschakelen"; +App::$strings["Enable"] = "Inschakelen"; +App::$strings["Plugins"] = "Plugins"; +App::$strings["Toggle"] = "Omschakelen"; +App::$strings["Settings"] = "Instellingen"; +App::$strings["Author: "] = "Auteur: "; +App::$strings["Maintainer: "] = "Beheerder: "; +App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; +App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; +App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; +App::$strings["Compatible Server Roles: "] = "Werkt met configuratietypes: "; +App::$strings["Requires: "] = "Vereist: "; +App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Vul de openbare Git-URL in van de plugin-repository."; +App::$strings["Plugin repo git URL"] = "Git-URL plugin-repository"; +App::$strings["Custom repo name"] = "Handmatige repository-naam"; +App::$strings["(optional)"] = "(optioneel)"; +App::$strings["Download Plugin Repo"] = "Plugin-repository downloaden"; +App::$strings["Install new repo"] = "Nieuwe repository installeren"; +App::$strings["Install"] = "Installeren"; +App::$strings["Manage Repos"] = "Repositories beheren"; +App::$strings["Installed Plugin Repositories"] = "Toegevoegde plugin-repositories"; +App::$strings["Install a New Plugin Repository"] = "Nieuwe plugin-repository toevoegen"; +App::$strings["Switch branch"] = "Branch veranderen"; +App::$strings["No themes found."] = "Geen thema's gevonden"; +App::$strings["Screenshot"] = "Schermafdruk"; +App::$strings["Themes"] = "Thema's"; +App::$strings["[Experimental]"] = "[Experimenteel]"; +App::$strings["[Unsupported]"] = "[Niet ondersteund]"; +App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; +App::$strings["Logs"] = "Logboeken"; +App::$strings["Clear"] = "Leegmaken"; +App::$strings["Debugging"] = "Debuggen"; +App::$strings["Log file"] = "Logbestand"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; +App::$strings["Log level"] = "Logniveau"; +App::$strings["New Profile Field"] = "Nieuw profielveld"; +App::$strings["Field nickname"] = "Bijnaam voor veld"; +App::$strings["System name of field"] = "Systeemnaam voor veld"; +App::$strings["Input type"] = "Invoertype"; +App::$strings["Field Name"] = "Veldnaam"; +App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; +App::$strings["Help text"] = "Helptekst"; +App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; +App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; +App::$strings["Edit Profile Field"] = "Profielveld bewerken"; +App::$strings["Profile Fields"] = "Profielvelden"; +App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; +App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; +App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; +App::$strings["All available fields"] = "Alle beschikbare velden"; +App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; +App::$strings["Create Custom Field"] = "Extra velden aanmaken"; +App::$strings["No valid account found."] = "Geen geldige account gevonden."; +App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; +App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +App::$strings["Password Reset"] = "Wachtwoord vergeten?"; +App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +App::$strings["click here to login"] = "klik dan hier om in te loggen"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +App::$strings["Email Address"] = "E-mailadres"; +App::$strings["Reset"] = "Opnieuw instellen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +App::$strings["Mood"] = "Stemming"; +App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["Profile not found."] = "Profiel niet gevonden."; +App::$strings["Profile deleted."] = "Profiel verwijderd."; +App::$strings["Profile-"] = "Profiel-"; +App::$strings["New profile created."] = "Nieuw profiel aangemaakt."; +App::$strings["Profile unavailable to clone."] = "Profiel niet beschikbaar om te klonen"; +App::$strings["Profile unavailable to export."] = "Geen profiel beschikbaar om te exporteren"; +App::$strings["Profile Name is required."] = "Profielnaam is vereist"; +App::$strings["Marital Status"] = "Huwelijke status"; +App::$strings["Romantic Partner"] = "Romantische partner"; +App::$strings["Likes"] = "Houdt van"; +App::$strings["Dislikes"] = "Houdt niet van"; +App::$strings["Work/Employment"] = "Werk/arbeid"; +App::$strings["Religion"] = "Religie"; +App::$strings["Political Views"] = "Politieke overtuigingen"; +App::$strings["Gender"] = "Geslacht"; +App::$strings["Sexual Preference"] = "Seksuele voorkeur"; +App::$strings["Homepage"] = "Homepage"; +App::$strings["Interests"] = "Interesses"; +App::$strings["Profile updated."] = "Profiel bijgewerkt"; +App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; +App::$strings["Edit Profile Details"] = "Profiel bewerken"; +App::$strings["View this profile"] = "Profiel weergeven"; +App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; +App::$strings["Profile Tools"] = "Hulpmiddelen"; +App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; +App::$strings["Change profile photo"] = "Profielfoto veranderen"; +App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; +App::$strings["Clone this profile"] = "Dit profiel klonen"; +App::$strings["Delete this profile"] = "Dit profiel verwijderen"; +App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +App::$strings["Personal"] = "Persoonlijk"; +App::$strings["Relation"] = "Relatie"; +App::$strings["Miscellaneous"] = "Diversen"; +App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; +App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; +App::$strings["Your gender"] = "Jouw geslacht"; +App::$strings["Marital status"] = "Burgerlijke staat"; +App::$strings["Sexual preference"] = "Seksuele voorkeur"; +App::$strings["Profile name"] = "Profielnaam"; +App::$strings["This is your default profile."] = "Dit is jouw standaardprofiel"; +App::$strings["Your full name"] = "Jouw volledige naam"; +App::$strings["Title/Description"] = "Titel/omschrijving"; +App::$strings["Street address"] = "Straat en huisnummer"; +App::$strings["Locality/City"] = "Woonplaats"; +App::$strings["Region/State"] = "Provincie/gewest/deelstaat"; +App::$strings["Postal/Zip code"] = "Postcode"; +App::$strings["Country"] = "Land"; +App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; +App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; +App::$strings["Since (date)"] = "Sinds (datum)"; +App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; +App::$strings["Homepage URL"] = "URL homepagina"; +App::$strings["Hometown"] = "Oorspronkelijk uit"; +App::$strings["Political views"] = "Politieke overtuigingen"; +App::$strings["Religious views"] = "Religieuze overtuigingen"; +App::$strings["Keywords used in directory listings"] = "Trefwoorden voor in de kanalengids"; +App::$strings["Example: fishing photography software"] = "Voorbeeld: muziek, fotografie, software"; +App::$strings["Musical interests"] = "Muzikale interesses"; +App::$strings["Books, literature"] = "Boeken/literatuur"; +App::$strings["Television"] = "Televisie"; +App::$strings["Film/Dance/Culture/Entertainment"] = "Film/dans/cultuur/entertainment"; +App::$strings["Hobbies/Interests"] = "Hobby's/interesses"; +App::$strings["Love/Romance"] = "Liefde/romantiek"; +App::$strings["School/Education"] = "School/opleiding"; +App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; +App::$strings["My other channels"] = "Mijn andere kanalen"; +App::$strings["Profile Image"] = "Profielfoto"; +App::$strings["Edit Profiles"] = "Bewerk profielen"; +App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; +App::$strings["System Notifications"] = "Systeemnotificaties"; +App::$strings["Profile Match"] = "Profielovereenkomst"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +App::$strings["is interested in:"] = "is geïnteresseerd in:"; +App::$strings["No matches"] = "Geen overeenkomsten"; +App::$strings["Import Webpage Elements"] = "Webpagina-elementen importeren"; +App::$strings["Import selected"] = "Importbestand geselecteerd"; +App::$strings["Webpages"] = "Webpagina's"; +App::$strings["Actions"] = "Acties"; +App::$strings["Page Link"] = "Paginalink"; +App::$strings["Page Title"] = "Paginatitel"; +App::$strings["Invalid file type."] = "Ongeldig bestandsformaat"; +App::$strings["Error opening zip file"] = "Fout met openen zipbestand"; +App::$strings["Invalid folder path."] = "Ongeldige maplocatie"; +App::$strings["No webpage elements detected."] = "Geen webpagina-elementen gedecteerd"; +App::$strings["Import complete."] = "Importeren voltooid."; +App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; +App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; +App::$strings["Edit event title"] = "Titel bewerken"; +App::$strings["Event title"] = "Titel"; +App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +App::$strings["Edit Category"] = "Categorie"; +App::$strings["Category"] = "Categorie"; +App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; +App::$strings["Start date and time"] = "Begindatum en -tijd"; +App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; +App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; +App::$strings["Finish date and time"] = "Einddatum en -tijd"; +App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +App::$strings["Edit Description"] = "Omschrijving bewerken"; +App::$strings["Edit Location"] = "Locatie bewerken"; +App::$strings["Share this event"] = "Deel deze gebeurtenis"; +App::$strings["Permission settings"] = "Permissies"; +App::$strings["Advanced Options"] = "Geavanceerde opties"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Edit event"] = "Gebeurtenis bewerken"; +App::$strings["Delete event"] = "Gebeurtenis verwijderen"; +App::$strings["Link to Source"] = "Originele locatie"; +App::$strings["calendar"] = "agenda"; +App::$strings["Edit Event"] = "Gebeurtenis bewerken"; +App::$strings["Create Event"] = "Gebeurtenis aanmaken"; +App::$strings["Export"] = "Exporteren"; +App::$strings["Month"] = "Maand"; +App::$strings["Week"] = "Week"; +App::$strings["Day"] = "Dag"; +App::$strings["Today"] = "Vandaag"; +App::$strings["Event removed"] = "Gebeurtenis verwijderd"; +App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; +App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; +App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; +App::$strings["Import completed."] = "Import voltooid."; +App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; +App::$strings["Import Channel"] = "Kanaal importeren"; +App::$strings["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."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; +App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; +App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; +App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; +App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; +App::$strings["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."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; +App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; +App::$strings["Create Channel"] = "Kanaal aanmaken"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; +App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; +App::$strings["sent you a private message"] = "stuurde jou een privébericht"; +App::$strings["added your channel"] = "voegde jouw kanaal toe"; +App::$strings["g A l F d"] = "G:i, l d F"; +App::$strings["[today]"] = "[vandaag]"; +App::$strings["posted an event"] = "plaatste een gebeurtenis"; +App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +App::$strings["Discard"] = "Annuleren"; +App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +App::$strings["Poke"] = "Aanstoten"; +App::$strings["Poke somebody"] = "Iemand aanstoten"; +App::$strings["Poke/Prod"] = "Aanstoten/porren"; +App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; +App::$strings["Recipient"] = "Ontvanger"; +App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; +App::$strings["Make this post private"] = "Maak dit bericht privé"; +App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +App::$strings["Post successful."] = "Verzenden bericht geslaagd."; +App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; +App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +App::$strings["Profile"] = "Profiel"; +App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; +App::$strings["Visible To"] = "Zichtbaar voor"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; +App::$strings["Configuration Editor"] = "Configuratiebewerker"; +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."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; +App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +App::$strings["Posts and comments"] = "Berichten en reacties"; +App::$strings["Only posts"] = "Alleen berichten"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +App::$strings["Version %s"] = "Versie %s"; +App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; +App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; +App::$strings["Running at web location"] = "Draaiend op weblocatie"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; +App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +App::$strings["\$projectname issues"] = "\$projectname-issues"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Hubbeheerders: "; +App::$strings["Blocks"] = "Blokken"; +App::$strings["Block Title"] = "Bloktitel"; +App::$strings["Layouts"] = "Lay-outs"; +App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; +App::$strings["Layout Description"] = "Lay-out-omschrijving"; +App::$strings["Download PDL file"] = "Download PDL-bestand"; +App::$strings["No ratings"] = "Geen beoordelingen"; +App::$strings["Rating: "] = "Beoordeling: "; +App::$strings["Website: "] = "Website: "; +App::$strings["Description: "] = "Omschrijving: "; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; +App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; +App::$strings["Permissions denied."] = "Permissies niet toegestaan"; +App::$strings["Import"] = "Importeren"; +App::$strings["No channel."] = "Geen kanaal."; +App::$strings["Common connections"] = "Veel voorkomende connecties"; +App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +App::$strings["Messages"] = "Berichten"; +App::$strings["Message recalled."] = "Bericht ingetrokken."; +App::$strings["Conversation removed."] = "Conversatie verwijderd"; +App::$strings["Please enter a link URL:"] = "Vul een URL in:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +App::$strings["Send Private Message"] = "Privébericht versturen"; +App::$strings["To:"] = "Aan:"; +App::$strings["Subject:"] = "Onderwerp:"; +App::$strings["Attach file"] = "Bestand toevoegen"; +App::$strings["Send"] = "Verzenden"; +App::$strings["Set expiration date"] = "Verloopdatum instellen"; +App::$strings["Encrypt text"] = "Tekst versleutelen"; +App::$strings["Delete message"] = "Bericht verwijderen"; +App::$strings["Delivery report"] = "Afleveringsrapport"; +App::$strings["Recall message"] = "Bericht intrekken"; +App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; +App::$strings["Delete Conversation"] = "Verwijder conversatie"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +App::$strings["Send Reply"] = "Antwoord versturen"; +App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; +App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +App::$strings["Connection updated."] = "Connectie bijgewerkt."; +App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +App::$strings["is now connected to"] = "is nu verbonden met"; +App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; +App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +App::$strings["Connection has been removed."] = "Connectie is verwijderd"; +App::$strings["View Profile"] = "Profiel weergeven"; +App::$strings["View %s's profile"] = "Profiel van %s weergeven"; +App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; +App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; +App::$strings["Recent Activity"] = "Recente activiteit/berichten"; +App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; +App::$strings["Unignore"] = "Niet meer negeren"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; +App::$strings["Unarchive"] = "Niet meer archiveren"; +App::$strings["Archive"] = "Archiveren"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; +App::$strings["Unhide"] = "Niet meer verbergen"; +App::$strings["Hide"] = "Verbergen"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; +App::$strings["Delete this connection"] = "Deze connectie verwijderen"; +App::$strings["Me"] = "Ik"; +App::$strings["Family"] = "Familie"; +App::$strings["Acquaintances"] = "Kennissen"; +App::$strings["Approve this connection"] = "Deze connectie accepteren"; +App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; +App::$strings["Set Profile"] = "Profiel instellen"; +App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; +App::$strings["none"] = "geen"; +App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +App::$strings["Connection: %s"] = "Connectie: %s"; +App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; +App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; +App::$strings["Available locations:"] = "Beschikbare locaties:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; +App::$strings["Connection Tools"] = "Hulpmiddelen"; +App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; +App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; +App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; +App::$strings["Custom Filter"] = "Berichtenfilter"; +App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; +App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; +App::$strings["This information is public!"] = "Deze informatie is openbaar!"; +App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; +App::$strings["Last update:"] = "Laatste wijziging:"; +App::$strings["Apps"] = "Apps"; +App::$strings["Continue"] = "Ga verder"; +App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; +App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; +App::$strings["URL of bookmark"] = "URL van bladwijzer"; +App::$strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; +App::$strings["Authentication failed."] = "Authenticatie mislukt."; +App::$strings["Remote Authentication"] = "Authenticatie op afstand"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; +App::$strings["Authenticate"] = "Authenticeren"; +App::$strings["Please login."] = "Inloggen."; +App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; +App::$strings["Remove This Account"] = "Verwijder dit account"; +App::$strings["WARNING: "] = "WAARSCHUWING: "; +App::$strings["This account and all its channels will be completely removed from the network. "] = "Dit account en al zijn kanalen worden volledig uit het \$Projectname-netwerk verwijderd."; +App::$strings["This action is permanent and can not be undone!"] = "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!"; +App::$strings["Please enter your password for verification:"] = "Vul je wachtwoord in ter verificatie:"; +App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; +App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; +App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; +App::$strings["Remove This Channel"] = "Verwijder dit kanaal"; +App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; +App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; +App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; +App::$strings["Export Channel"] = "Kanaal exporteren"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +App::$strings["Export Content"] = "Inhoud exporteren"; +App::$strings["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."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; +App::$strings["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."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; +App::$strings["Item is not editable"] = "Item is niet te bewerken"; +App::$strings["Edit post"] = "Bericht bewerken"; +App::$strings["Items tagged with: %s"] = "Items getagd met %s"; +App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; +App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; +App::$strings["Thing updated"] = "Ding bijgewerkt"; +App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; +App::$strings["Thing added"] = "Ding toegevoegd"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Ding weergeven"; +App::$strings["item not found."] = "Item niet gevonden"; +App::$strings["Edit Thing"] = "Ding bewerken"; +App::$strings["Select a profile"] = "Kies een profiel"; +App::$strings["Post an activity"] = "Plaats een bericht"; +App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +App::$strings["Name of thing e.g. something"] = "Naam van ding"; +App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; +App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; +App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; +App::$strings["NEW"] = "NIEUW"; +App::$strings["Remove all files"] = "Verwijder alle bestanden"; +App::$strings["Remove this file"] = "Verwijder dit bestand"; +App::$strings["Not found"] = "Niet gevonden"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Zandbak"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandbox\\n\\nWat er hier onder **edit** en **preview** staat *wordt niet opgeslagen*.\""; +App::$strings["Revision Comparison"] = "Revisies vergelijken"; +App::$strings["Revert"] = "Ongedaan maken"; +App::$strings["Enter the name of your new wiki:"] = "Vul de naam in van jouw nieuwe wiki:"; +App::$strings["Enter the name of the new page:"] = "Vul de naam in van de nieuwe pagina:"; +App::$strings["Enter the new name:"] = "Vul de nieuwe naam in:"; +App::$strings["Embed image from photo albums"] = "Afbeelding uit een fotoalbum invoegen"; +App::$strings["Embed an image from your albums"] = "Afbeelding uit jouw albums invoegen"; App::$strings["OK"] = "OK"; -App::$strings["Discover"] = "Ontdekken"; -App::$strings["Imported public streams"] = "Openbare streams importeren"; -App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; -App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; -App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; -App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -App::$strings["Starred"] = "Met ster"; -App::$strings["Favourite Posts"] = "Favoriete berichten"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -App::$strings["About"] = "Over"; -App::$strings["Profile Details"] = "Profiel"; -App::$strings["Photo Albums"] = "Fotoalbums"; -App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; -App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -App::$strings["Manage Webpages"] = "Webpagina's beheren"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); -App::$strings["Frequently"] = "Regelmatig"; -App::$strings["Hourly"] = "Elk uur"; -App::$strings["Twice daily"] = "Twee keer per dag"; -App::$strings["Daily"] = "Dagelijks"; -App::$strings["Weekly"] = "Wekelijks"; -App::$strings["Monthly"] = "Maandelijks"; -App::$strings["Currently Male"] = "Momenteel man"; -App::$strings["Currently Female"] = "Momenteel vrouw"; -App::$strings["Mostly Male"] = "Voornamelijk man"; -App::$strings["Mostly Female"] = "Voornamelijk vrouw"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Interseksueel"; -App::$strings["Transsexual"] = "Transseksueel"; -App::$strings["Hermaphrodite"] = "Hermafrodiet"; -App::$strings["Neuter"] = "Genderneutraal"; -App::$strings["Non-specific"] = "Niet gespecificeerd"; -App::$strings["Other"] = "Anders"; -App::$strings["Undecided"] = "Nog niet beslist"; -App::$strings["Males"] = "Mannen"; -App::$strings["Females"] = "Vrouwen"; -App::$strings["Gay"] = "Homoseksueel"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Geen voorkeur"; -App::$strings["Bisexual"] = "Biseksueel"; -App::$strings["Autosexual"] = "Autoseksueel"; -App::$strings["Abstinent"] = "Seksuele onthouding"; -App::$strings["Virgin"] = "Maagd"; -App::$strings["Deviant"] = "Afwijkend"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Veel"; -App::$strings["Nonsexual"] = "Aseksueel"; -App::$strings["Single"] = "Alleen"; -App::$strings["Lonely"] = "Eenzaam"; -App::$strings["Available"] = "Beschikbaar"; -App::$strings["Unavailable"] = "Niet beschikbaar"; -App::$strings["Has crush"] = "Heeft een oogje op iemand"; -App::$strings["Infatuated"] = "Smoorverliefd"; -App::$strings["Dating"] = "Aan het daten"; -App::$strings["Unfaithful"] = "Ontrouw"; -App::$strings["Sex Addict"] = "Seksverslaafd"; -App::$strings["Friends/Benefits"] = "Vriendschap plus"; -App::$strings["Casual"] = "Ongebonden/vluchtig"; -App::$strings["Engaged"] = "Verloofd"; -App::$strings["Married"] = "Getrouwd"; -App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -App::$strings["Partners"] = "Partners"; -App::$strings["Cohabiting"] = "Samenwonend"; -App::$strings["Common law"] = "Common-law-huwelijk"; -App::$strings["Happy"] = "Gelukkig"; -App::$strings["Not looking"] = "Niet op zoek"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Verraden"; -App::$strings["Separated"] = "Uit elkaar"; -App::$strings["Unstable"] = "Onstabiel"; -App::$strings["Divorced"] = "Gescheiden"; -App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -App::$strings["Widowed"] = "Weduwnaar/weduwe"; -App::$strings["Uncertain"] = "Onzeker"; -App::$strings["It's complicated"] = "Het is ingewikkeld"; -App::$strings["Don't care"] = "Maakt mij niks uit"; -App::$strings["Ask me"] = "Vraag het me"; +App::$strings["Choose images to embed"] = "Kies afbeeldingen om in te voegen"; +App::$strings["Choose an album"] = "Kies een album"; +App::$strings["Choose a different album..."] = "Kies een ander album..."; +App::$strings["Error getting album list"] = "Fout met ophalen albumlijst"; +App::$strings["Error getting photo link"] = "Fout met ophalen fotolink"; +App::$strings["Error getting album"] = "Fout met ophalen album"; +App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; +App::$strings["Source created."] = "Bron aangemaakt."; +App::$strings["Source updated."] = "Bron aangemaakt."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanaalbronnen"; +App::$strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; +App::$strings["New Source"] = "Nieuwe bron"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; +App::$strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; +App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +App::$strings["Channel Name"] = "Kanaalnaam"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "De volgende categorieën aan berichten toevoegen die uit deze bron zijn geïmporteerd (door komma's gescheiden)"; +App::$strings["Source not found."] = "Bron niet gevonden"; +App::$strings["Edit Source"] = "Bron bewerken"; +App::$strings["Delete Source"] = "Bron verwijderen"; +App::$strings["Source removed"] = "Bron verwijderd"; +App::$strings["Unable to remove source."] = "Verwijderen bron mislukt."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +App::$strings["Ignore/Hide"] = "Negeren/Verbergen"; +App::$strings["post"] = "bericht"; +App::$strings["comment"] = "reactie"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; +App::$strings["Tag removed"] = "Tag verwijderd"; +App::$strings["Remove Item Tag"] = "Verwijder item-tag"; +App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; +App::$strings["Channel added."] = "Kanaal toegevoegd."; +App::$strings["No connections."] = "Geen connecties."; +App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +App::$strings["View Connections"] = "Connecties weergeven"; +App::$strings["Source of Item"] = "Bron van item"; +App::$strings["Room not found"] = "Chatkanaal niet gevonden"; +App::$strings["Leave Room"] = "Chatkanaal verlaten"; +App::$strings["Delete Room"] = "Chatkanaal verwijderen"; +App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; +App::$strings["I am online"] = "Ik ben online"; +App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +App::$strings["Feature disabled."] = "Functie uitgeschakeld."; +App::$strings["New Chatroom"] = "Nieuw chatkanaal"; +App::$strings["Chatroom name"] = "Naam chatkanaal"; +App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; +App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; +App::$strings["Expiration"] = "Verloopt na"; +App::$strings["min"] = "min"; +App::$strings["Xchan Lookup"] = "Xchan opzoeken"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; +App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; +App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; +App::$strings["Room not found."] = "Chatkanaal niet gevonden"; +App::$strings["Room is full"] = "Chatkanaal is vol"; +App::$strings["\$Projectname Notification"] = "\$Projectname-notificatie"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Bedankt,"; +App::$strings["%s Administrator"] = "Beheerder %s"; +App::$strings["%s "] = "%s "; +App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; +App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +App::$strings["a private message"] = "een privébericht"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +App::$strings["Name:"] = "Naam:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; +App::$strings["created a new post"] = "maakte een nieuw bericht aan"; +App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Bug Report"] = "Bugrapport"; +App::$strings["View Bookmarks"] = "Bladwijzers bekijken"; +App::$strings["My Chatrooms"] = "Mijn chatkanalen"; +App::$strings["Firefox Share"] = "Firefox Share"; +App::$strings["Remote Diagnostics"] = "Diagnose op afstand"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Language"] = "Taal"; +App::$strings["Post"] = "Bericht"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Purchase"] = "Aanschaffen"; App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; App::$strings["Only me"] = "Alleen ik"; App::$strings["Public"] = "Openbaar"; @@ -1939,39 +1542,247 @@ App::$strings["This is your default setting for who can view your default channe App::$strings["This is your default setting for who can view your connections"] = "Dit is de standaard privacy-instelling voor wie een lijst met jouw connecties kan bekijken"; App::$strings["This is your default setting for who can view your file storage and photos"] = "Dit is de standaard privacy-instelling voor wie jouw bestanden en foto's kan bekijken"; App::$strings["This is your default setting for the audience of your webpages"] = "Dit is de standaard privacy-instelling voor wie jouw webpagina's kan bekijken"; -App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; -App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; -App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; -App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; +App::$strings["Select"] = "Kies"; +App::$strings["Save to Folder"] = "In map opslaan"; +App::$strings["I will attend"] = "Aanwezig"; +App::$strings["I will not attend"] = "Niet aanwezig"; +App::$strings["I might attend"] = "Mogelijk aanwezig"; +App::$strings["I agree"] = "Eens"; +App::$strings["I disagree"] = "Oneens"; +App::$strings["I abstain"] = "Onthouding"; +App::$strings["Add Star"] = "Ster toevoegen"; +App::$strings["Remove Star"] = "Ster verwijderen"; +App::$strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; +App::$strings["starred"] = "met ster"; +App::$strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; +App::$strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; +App::$strings["Add Tag"] = "Tag toevoegen"; +App::$strings["like"] = "vind dit leuk"; +App::$strings["dislike"] = "vind dit niet leuk"; +App::$strings["Share This"] = "Delen"; +App::$strings["share"] = "delen"; +App::$strings["Delivery Report"] = "Afleveringsrapport"; +App::$strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; +App::$strings["to"] = "aan"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; +App::$strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; +App::$strings["from %s"] = "van %s"; +App::$strings["last edited: %s"] = "laatst bewerkt: %s"; +App::$strings["Expires: %s"] = "Verloopt: %s"; +App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; +App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; +App::$strings["Mark all seen"] = "Markeer alles als bekeken"; +App::$strings["%s show all"] = "%s alle"; +App::$strings["Bold"] = "Vet"; +App::$strings["Italic"] = "Cursief"; +App::$strings["Underline"] = "Onderstrepen"; +App::$strings["Quote"] = "Citeren"; +App::$strings["Code"] = "Broncode"; +App::$strings["Image"] = "Afbeelding"; +App::$strings["Insert Link"] = "Link invoegen"; +App::$strings["Video"] = "Video"; +App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +App::$strings["view full size"] = "volledige grootte tonen"; App::$strings["Administrator"] = "Beheerder"; -App::$strings["your registration password"] = "jouw registratiewachtwoord"; -App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; -App::$strings["Account approved."] = "Account goedgekeurd"; -App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -App::$strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["Item was not found."] = "Item niet gevonden"; -App::$strings["No source file."] = "Geen bronbestand."; -App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -App::$strings["Path not available."] = "Pad niet beschikbaar."; -App::$strings["Empty pathname"] = "Padnaam leeg"; -App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -App::$strings["Path not found."] = "Pad niet gevonden"; -App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -App::$strings["database storage failed."] = "opslag in database mislukt."; -App::$strings["Empty path"] = "Ontbrekend bestandspad"; +App::$strings["No Subject"] = "Geen onderwerp"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; +App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; +App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; +App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; +App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; +App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; +App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; +App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; +App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; +App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; +App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; +App::$strings["(Unknown)"] = "(Onbekend)"; +App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; +App::$strings["Privacy group: %s"] = "Privacygroep: %s"; +App::$strings["Connection not found."] = "Connectie niet gevonden."; +App::$strings["profile photo"] = "profielfoto"; +App::$strings["prev"] = "vorige"; +App::$strings["first"] = "eerste"; +App::$strings["last"] = "laatste"; +App::$strings["next"] = "volgende"; +App::$strings["older"] = "ouder"; +App::$strings["newer"] = "nieuwer"; +App::$strings["No connections"] = "Geen connecties"; +App::$strings["View all %s connections"] = "Toon alle %s connecties"; +App::$strings["poke"] = "aanstoten"; +App::$strings["poked"] = "aangestoten"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "gepingd"; +App::$strings["prod"] = "por"; +App::$strings["prodded"] = "gepord"; +App::$strings["slap"] = "slaan"; +App::$strings["slapped"] = "sloeg"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "gefingerd"; +App::$strings["rebuff"] = "afpoeieren"; +App::$strings["rebuffed"] = "afgepoeierd"; +App::$strings["happy"] = "gelukkig"; +App::$strings["sad"] = "bedroefd"; +App::$strings["mellow"] = "mellow"; +App::$strings["tired"] = "moe"; +App::$strings["perky"] = "parmantig"; +App::$strings["angry"] = "boos"; +App::$strings["stupefied"] = "verbijsterd"; +App::$strings["puzzled"] = "verward"; +App::$strings["interested"] = "geïnteresseerd"; +App::$strings["bitter"] = "verbitterd"; +App::$strings["cheerful"] = "vrolijk"; +App::$strings["alive"] = "levendig"; +App::$strings["annoyed"] = "geërgerd"; +App::$strings["anxious"] = "bezorgd"; +App::$strings["cranky"] = "humeurig"; +App::$strings["disturbed"] = "verontrust"; +App::$strings["frustrated"] = "gefrustreerd "; +App::$strings["depressed"] = "gedeprimeerd"; +App::$strings["motivated"] = "gemotiveerd"; +App::$strings["relaxed"] = "ontspannen"; +App::$strings["surprised"] = "verrast"; +App::$strings["Monday"] = "maandag"; +App::$strings["Tuesday"] = "dinsdag"; +App::$strings["Wednesday"] = "woensdag"; +App::$strings["Thursday"] = "donderdag"; +App::$strings["Friday"] = "vrijdag"; +App::$strings["Saturday"] = "zaterdag"; +App::$strings["Sunday"] = "zondag"; +App::$strings["January"] = "januari"; +App::$strings["February"] = "februari"; +App::$strings["March"] = "maart"; +App::$strings["April"] = "april"; +App::$strings["May"] = "mei"; +App::$strings["June"] = "juni"; +App::$strings["July"] = "juli"; +App::$strings["August"] = "augustus"; +App::$strings["September"] = "september"; +App::$strings["October"] = "oktober"; +App::$strings["November"] = "november"; +App::$strings["December"] = "december"; +App::$strings["Unknown Attachment"] = "Onbekende bijlage"; +App::$strings["unknown"] = "onbekend"; +App::$strings["remove category"] = "categorie verwijderen"; +App::$strings["remove from file"] = "uit map verwijderen"; +App::$strings["default"] = "standaard"; +App::$strings["Page layout"] = "Pagina-lay-out"; +App::$strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs"; +App::$strings["Page content type"] = "Opmaaktype pagina"; +App::$strings["Select an alternate language"] = "Kies een andere taal"; +App::$strings["activity"] = "activiteit"; +App::$strings["Design Tools"] = "Ontwerp-hulpmiddelen"; +App::$strings["Pages"] = "Pagina's"; +App::$strings["Import website..."] = "Website importeren..."; +App::$strings["Select folder to import"] = "Kies een map om te importeren"; +App::$strings["Import from a zipped folder:"] = "Vanuit een zipbestand importeren:"; +App::$strings["Import from cloud files:"] = "Vanuit de cloud importeren:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/maplocatie"; +App::$strings["Enter path to website files"] = "Voer de locatie in van de websitebestanden"; +App::$strings["Select folder"] = "Kies een map"; +App::$strings["Categories"] = "Categorieën"; +App::$strings["System"] = "Systeem"; +App::$strings["New App"] = "Nieuwe app"; +App::$strings["Suggestions"] = "Voorgestelde kanalen"; +App::$strings["See more..."] = "Meer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +App::$strings["Enter channel address"] = "Vul kanaaladres in"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Aantekeningen"; +App::$strings["Remove term"] = "Verwijder zoekterm"; +App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +App::$strings["add"] = "toevoegen"; +App::$strings["Saved Folders"] = "Bewaarde mappen"; +App::$strings["Everything"] = "Alles"; +App::$strings["Archives"] = "Archieven"; +App::$strings["Refresh"] = "Vernieuwen"; +App::$strings["Account settings"] = "Account"; +App::$strings["Channel settings"] = "Kanaal"; +App::$strings["Additional features"] = "Extra functies"; +App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; +App::$strings["Display settings"] = "Weergave"; +App::$strings["Manage locations"] = "Locaties beheren"; +App::$strings["Export channel"] = "Kanaal exporteren"; +App::$strings["Connected apps"] = "Verbonden applicaties"; +App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +App::$strings["Private Mail Menu"] = "Privéberichten"; +App::$strings["Combined View"] = "Gecombineerd postvak"; +App::$strings["Inbox"] = "Postvak IN"; +App::$strings["Outbox"] = "Postvak UIT"; +App::$strings["New Message"] = "Nieuw bericht"; +App::$strings["Conversations"] = "Conversaties"; +App::$strings["Received Messages"] = "Ontvangen berichten"; +App::$strings["Sent Messages"] = "Verzonden berichten"; +App::$strings["No messages."] = "Geen berichten"; +App::$strings["Delete conversation"] = "Verwijder conversatie"; +App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; +App::$strings["Export Calendar"] = "Exporteren"; +App::$strings["Import Calendar"] = "Importeren"; +App::$strings["Chatrooms"] = "Chatkanalen"; +App::$strings["Overview"] = "Overzicht"; +App::$strings["Chat Members"] = "Chatleden"; +App::$strings["Wiki List"] = "Wiki's"; +App::$strings["Wiki Pages"] = "Wikipagina's"; +App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +App::$strings["photo/image"] = "foto/afbeelding"; +App::$strings["Click to show more"] = "Klik voor meer"; +App::$strings["Rating Tools"] = "Beoordelingen"; +App::$strings["Rate Me"] = "Beoordeel mij"; +App::$strings["View Ratings"] = "Bekijk beoordelingen"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Taken"; +App::$strings["Documentation"] = "Documentatie"; +App::$strings["Project/Site Information"] = "Project- en hub-informatie"; +App::$strings["For Members"] = "Voor leden"; +App::$strings["For Administrators"] = "Voor beheerders"; +App::$strings["For Developers"] = "Voor ontwikkelaars"; +App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; +App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; +App::$strings["DB updates"] = "Database-updates"; +App::$strings["Admin"] = "Beheer"; +App::$strings["Plugin Features"] = "Plugin-opties"; +App::$strings["New window"] = "Nieuw venster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["Who can see this?"] = "Wie kan dit zien?"; +App::$strings["Custom selection"] = "Handmatige selectie"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien."; +App::$strings["Public Timeline"] = "Openbare tijdlijn"; App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; App::$strings["Empty name"] = "Ontbrekende naam"; App::$strings["Name too long"] = "Naam te lang"; @@ -1983,6 +1794,7 @@ App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangema App::$strings["Default Profile"] = "Standaardprofiel"; App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; +App::$strings["Edit Profile"] = "Profiel bewerken"; App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; App::$strings["Gender:"] = "Geslacht:"; App::$strings["Status:"] = "Status:"; @@ -2010,85 +1822,6 @@ App::$strings["Love/Romance:"] = "Liefde/romantiek:"; App::$strings["Work/employment:"] = "Werk/beroep:"; App::$strings["School/education:"] = "School/opleiding:"; App::$strings["Like this thing"] = "Vind dit ding leuk"; -App::$strings["General Features"] = "Algemene functies"; -App::$strings["Content Expiration"] = "Inhoud laten verlopen"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; -App::$strings["Multiple Profiles"] = "Meerdere profielen"; -App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; -App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; -App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -App::$strings["Web Pages"] = "Webpagina's"; -App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -App::$strings["Hide Rating"] = "Beoordelingen verbergen"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; -App::$strings["Private Notes"] = "Privé-aantekeningen"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; -App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -App::$strings["Photo Location"] = "Fotolocatie"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; -App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; -App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; -App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; -App::$strings["Expert Mode"] = "Expertmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -App::$strings["Premium Channel"] = "Premiumkanaal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -App::$strings["Large Photos"] = "Grote foto's"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; -App::$strings["Even More Encryption"] = "Extra encryptie"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; -App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; -App::$strings["Delayed Posting"] = "Berichten uitstellen"; -App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; -App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; -App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -App::$strings["Search by Date"] = "Zoek op datum"; -App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -App::$strings["Privacy Groups"] = "Privacygroepen"; -App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; -App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -App::$strings["Network New Tab"] = "Nieuwe netwerktab"; -App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -App::$strings["Affinity Tool"] = "Verwantschapsfilter"; -App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; -App::$strings["Connection Filtering"] = "Berichtenfilters"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; -App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -App::$strings["Community Tagging"] = "Taggen door anderen"; -App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; -App::$strings["Post Categories"] = "Categorieën berichten"; -App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -App::$strings["Emoji Reactions"] = "Emoji-reacties"; -App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; -App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; -App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -App::$strings["Star Posts"] = "Geef berichten een ster"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -App::$strings["Tag Cloud"] = "Tagwolk"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -App::$strings["Who can see this?"] = "Wie kan dit zien?"; -App::$strings["Custom selection"] = "Handmatige selectie"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Kies \"Tonen\" om weergave toe te staan. Met \"Niet tonen\" kan je uitzonderingen maken op \"Tonen\"."; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Permissies van berichten %s zijn niet meer te veranderen %s nadat een bericht is gedeeld.
    Met deze permissies bepaal je wie het bericht kan zien."; -App::$strings["Logged out."] = "Uitgelogd."; -App::$strings["Failed authentication"] = "Mislukte authenticatie"; App::$strings["Birthday"] = "Verjaardag of geboortedatum"; App::$strings["Age: "] = "Leeftijd:"; App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; @@ -2125,16 +1858,192 @@ App::$strings["__ctx:relative_date__ second"] = array( ); App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +App::$strings["Frequently"] = "Regelmatig"; +App::$strings["Hourly"] = "Elk uur"; +App::$strings["Twice daily"] = "Twee keer per dag"; +App::$strings["Daily"] = "Dagelijks"; +App::$strings["Weekly"] = "Wekelijks"; +App::$strings["Monthly"] = "Maandelijks"; +App::$strings["Male"] = "Man"; +App::$strings["Female"] = "Vrouw"; +App::$strings["Currently Male"] = "Momenteel man"; +App::$strings["Currently Female"] = "Momenteel vrouw"; +App::$strings["Mostly Male"] = "Voornamelijk man"; +App::$strings["Mostly Female"] = "Voornamelijk vrouw"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Interseksueel"; +App::$strings["Transsexual"] = "Transseksueel"; +App::$strings["Hermaphrodite"] = "Hermafrodiet"; +App::$strings["Neuter"] = "Genderneutraal"; +App::$strings["Non-specific"] = "Niet gespecificeerd"; +App::$strings["Undecided"] = "Nog niet beslist"; +App::$strings["Males"] = "Mannen"; +App::$strings["Females"] = "Vrouwen"; +App::$strings["Gay"] = "Homoseksueel"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Geen voorkeur"; +App::$strings["Bisexual"] = "Biseksueel"; +App::$strings["Autosexual"] = "Autoseksueel"; +App::$strings["Abstinent"] = "Seksuele onthouding"; +App::$strings["Virgin"] = "Maagd"; +App::$strings["Deviant"] = "Afwijkend"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Veel"; +App::$strings["Nonsexual"] = "Aseksueel"; +App::$strings["Single"] = "Alleen"; +App::$strings["Lonely"] = "Eenzaam"; +App::$strings["Available"] = "Beschikbaar"; +App::$strings["Unavailable"] = "Niet beschikbaar"; +App::$strings["Has crush"] = "Heeft een oogje op iemand"; +App::$strings["Infatuated"] = "Smoorverliefd"; +App::$strings["Dating"] = "Aan het daten"; +App::$strings["Unfaithful"] = "Ontrouw"; +App::$strings["Sex Addict"] = "Seksverslaafd"; +App::$strings["Friends/Benefits"] = "Vriendschap plus"; +App::$strings["Casual"] = "Ongebonden/vluchtig"; +App::$strings["Engaged"] = "Verloofd"; +App::$strings["Married"] = "Getrouwd"; +App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +App::$strings["Partners"] = "Partners"; +App::$strings["Cohabiting"] = "Samenwonend"; +App::$strings["Common law"] = "Common-law-huwelijk"; +App::$strings["Happy"] = "Gelukkig"; +App::$strings["Not looking"] = "Niet op zoek"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Verraden"; +App::$strings["Separated"] = "Uit elkaar"; +App::$strings["Unstable"] = "Onstabiel"; +App::$strings["Divorced"] = "Gescheiden"; +App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +App::$strings["Widowed"] = "Weduwnaar/weduwe"; +App::$strings["Uncertain"] = "Onzeker"; +App::$strings["It's complicated"] = "Het is ingewikkeld"; +App::$strings["Don't care"] = "Maakt mij niks uit"; +App::$strings["Ask me"] = "Vraag het me"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; +App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; +App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; +App::$strings["a new photo"] = "een nieuwe foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; +App::$strings["Photo Albums"] = "Fotoalbums"; +App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; +App::$strings["guest:"] = "gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. "; +App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden"; +App::$strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten"; +App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; +App::$strings["Categories:"] = "Categorieën:"; +App::$strings["Filed under:"] = "Bewaard onder:"; +App::$strings["View in context"] = "In context bekijken"; +App::$strings["remove"] = "verwijderen"; +App::$strings["Loading..."] = "Aan het laden..."; +App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +App::$strings["View Source"] = "Bron weergeven"; +App::$strings["Follow Thread"] = "Conversatie volgen"; +App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; +App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; +App::$strings["Edit Connection"] = "Connectie bewerken"; +App::$strings["Message"] = "Bericht"; +App::$strings["%s likes this."] = "%s vindt dit leuk."; +App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +App::$strings["and"] = "en"; +App::$strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +App::$strings["%s like this."] = "%s vinden dit leuk."; +App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; +App::$strings["Set your location"] = "Locatie instellen"; +App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +App::$strings["Comments enabled"] = "Reacties ingeschakeld"; +App::$strings["Comments disabled"] = "Reacties uitgeschakeld"; +App::$strings["Page link name"] = "Linknaam pagina"; +App::$strings["Post as"] = "Bericht plaatsen als"; +App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; +App::$strings["Disable comments"] = "Reacties uitschakelen"; +App::$strings["Toggle comments"] = "Reacties in- of uitschakelen"; +App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; +App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; +App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["Discover"] = "Ontdekken"; +App::$strings["Imported public streams"] = "Openbare streams importeren"; +App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; +App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; +App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +App::$strings["Starred"] = "Met ster"; +App::$strings["Favourite Posts"] = "Favoriete berichten"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +App::$strings["About"] = "Over"; +App::$strings["Profile Details"] = "Profiel"; +App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; +App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +App::$strings["Manage Webpages"] = "Webpagina's beheren"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", +); +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); +App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; App::$strings["edit"] = "bewerken"; +App::$strings["Privacy Groups"] = "Privacygroepen"; App::$strings["Edit group"] = "Privacygroep bewerken"; App::$strings["Add privacy group"] = "Privacygroep toevoegen"; App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; +App::$strings["New Page"] = "Nieuwe pagina"; +App::$strings["Title"] = "Titel"; +App::$strings["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; +App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +App::$strings["Not specified"] = "Niet aangegeven"; +App::$strings["Needs Action"] = "Actie vereist"; +App::$strings["Completed"] = "Voltooid"; +App::$strings["In Process"] = "In behandeling"; +App::$strings["Cancelled"] = "Geannuleerd"; +App::$strings["Attachments:"] = "Bijlagen:"; +App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; App::$strings["Delete this item?"] = "Dit item verwijderen?"; -App::$strings["[-] show less"] = "[-] minder reacties weergeven"; -App::$strings["[+] expand"] = "[+] uitklappen"; -App::$strings["[-] collapse"] = "[-] inklappen"; +App::$strings["%s show less"] = "%s minder reacties weergeven"; +App::$strings["%s expand"] = "%s uitklappen"; +App::$strings["%s collapse"] = "%s inklappen"; App::$strings["Password too short"] = "Wachtwoord te kort"; App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; App::$strings["everybody"] = "iedereen"; @@ -2189,75 +2098,209 @@ App::$strings["__ctx:calendar__ month"] = "maand"; App::$strings["__ctx:calendar__ week"] = "week"; App::$strings["__ctx:calendar__ day"] = "dag"; App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["No Subject"] = "Geen onderwerp"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes"; -App::$strings["Image file is empty."] = "Afbeeldingsbestand is leeg"; -App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -App::$strings["a new photo"] = "een nieuwe foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; -App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -App::$strings["Invalid data packet"] = "Datapakket ongeldig"; -App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; -App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; -App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; -App::$strings["New Page"] = "Nieuwe pagina"; -App::$strings["Title"] = "Titel"; -App::$strings["Can view my normal stream and posts"] = "Kan mijn normale kanaalstream en berichten bekijken"; -App::$strings["Can view my default channel profile"] = "Kan mijn standaard kanaalprofiel bekijken"; -App::$strings["Can view my connections"] = "Kan een lijst met mijn connecties bekijken"; -App::$strings["Can view my file storage and photos"] = "Kan mijn foto's en andere bestanden bekijken"; -App::$strings["Can view my webpages"] = "Kan mijn pagina's bekijken"; -App::$strings["Can send me their channel stream and posts"] = "Kan mij de inhoud van hun kanaal en berichten sturen"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kan een bericht in mijn kanaal plaatsen"; -App::$strings["Can comment on or like my posts"] = "Kan op mijn berichten reageren of deze (niet) leuk vinden"; -App::$strings["Can send me private mail messages"] = "Kan mij privéberichten sturen"; -App::$strings["Can like/dislike stuff"] = "Kan dingen leuk of niet leuk vinden"; -App::$strings["Profiles and things other than posts/comments"] = "Profielen en dingen, buiten berichten en reacties"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+"; -App::$strings["Advanced - useful for creating group forum channels"] = "Geavanceerd - nuttig voor groepforums"; -App::$strings["Can chat with me (when available)"] = "Kan met mij chatten (wanneer beschikbaar)"; -App::$strings["Can write to my file storage and photos"] = "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen"; -App::$strings["Can edit my webpages"] = "Kan mijn pagina's bewerken"; -App::$strings["Can source my public posts in derived channels"] = "Kan mijn openbare berichten als bron voor andere kanalen gebruiken"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)"; -App::$strings["Can administer my channel resources"] = "Kan mijn kanaal beheren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet."; -App::$strings["Social Networking"] = "Sociaal netwerk"; -App::$strings["Social - Mostly Public"] = "Sociaal - Vrijwel alles openbaar"; -App::$strings["Social - Restricted"] = "Sociaal - Beperkt zichtbaar"; -App::$strings["Social - Private"] = "Sociaal - Verborgen kanaal"; -App::$strings["Community Forum"] = "Groepsforum"; -App::$strings["Forum - Mostly Public"] = "Forum - Vrijwel alles openbaar"; -App::$strings["Forum - Restricted"] = "Forum - Beperkt zichtbaar"; -App::$strings["Forum - Private"] = "Forum - Verborgen kanaal"; -App::$strings["Feed Republish"] = "Feed herpubliceren"; -App::$strings["Feed - Mostly Public"] = "Feed - Vrijwel alles openbaar"; -App::$strings["Feed - Restricted"] = "Feed - Beperkt zichtbaar"; -App::$strings["Special Purpose"] = "Speciaal doel"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciaal - Beroemdheid/alleen volgen"; -App::$strings["Special - Group Repository"] = "Speciaal - Groepsopslag"; -App::$strings["Custom/Expert Mode"] = "Expertmodus/handmatig aanpassen"; +App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; +App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +App::$strings["Item was not found."] = "Item niet gevonden"; +App::$strings["No source file."] = "Geen bronbestand."; +App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +App::$strings["Path not available."] = "Locatie niet beschikbaar."; +App::$strings["Empty pathname"] = "Ontbrekende locatienaam"; +App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of locatie"; +App::$strings["Path not found."] = "Locatie niet gevonden"; +App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +App::$strings["database storage failed."] = "opslag in database mislukt."; +App::$strings["Empty path"] = "Ontbrekende locatie"; +App::$strings["Logged out."] = "Uitgelogd."; +App::$strings["Failed authentication"] = "Mislukte authenticatie"; +App::$strings["Login failed."] = "Inloggen mislukt."; App::$strings[" and "] = " en "; App::$strings["public profile"] = "openbaar profiel"; App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -App::$strings["Attachments:"] = "Bijlagen:"; -App::$strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:"; +App::$strings["Invalid data packet"] = "Datapakket ongeldig"; +App::$strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. "; +App::$strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd"; +App::$strings["invalid target signature"] = "ongeldig doelkenmerk"; +App::$strings["General Features"] = "Algemene functies"; +App::$strings["Content Expiration"] = "Inhoud laten verlopen"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; +App::$strings["Multiple Profiles"] = "Meerdere profielen"; +App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; +App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; +App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +App::$strings["Web Pages"] = "Webpagina's"; +App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +App::$strings["Provide a wiki for your channel"] = "Voeg een wiki aan jouw kanaal toe"; +App::$strings["Private Notes"] = "Privé-aantekeningen"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; +App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +App::$strings["Photo Location"] = "Fotolocatie"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; +App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; +App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; +App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; +App::$strings["Expert Mode"] = "Expertmodus"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; +App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +App::$strings["Large Photos"] = "Grote foto's"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; +App::$strings["Even More Encryption"] = "Extra encryptie"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; +App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; +App::$strings["Disable Comments"] = "Reacties uitschakelen"; +App::$strings["Provide the option to disable comments for a post"] = "Maak het mogelijk dat reacties op een bericht kunnen worden uitgeschakeld"; +App::$strings["Delayed Posting"] = "Berichten uitstellen"; +App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; +App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; +App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +App::$strings["Search by Date"] = "Zoek op datum"; +App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; +App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +App::$strings["Network New Tab"] = "Nieuwe netwerktab"; +App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +App::$strings["Affinity Tool"] = "Verwantschapsfilter"; +App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; +App::$strings["Connection Filtering"] = "Berichtenfilters"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; +App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; +App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +App::$strings["Community Tagging"] = "Taggen door anderen"; +App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; +App::$strings["Post Categories"] = "Categorieën berichten"; +App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +App::$strings["Emoji Reactions"] = "Emoji-reacties"; +App::$strings["Add emoji reaction ability to posts"] = "Emoji-reacties in berichten toestaan"; +App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; +App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +App::$strings["Star Posts"] = "Geef berichten een ster"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +App::$strings["Tag Cloud"] = "Tagwolk"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +App::$strings["Premium Channel"] = "Premiumkanaal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +App::$strings["Tags"] = "Tags"; +App::$strings["Keywords"] = "Trefwoorden"; +App::$strings["have"] = "heb"; +App::$strings["has"] = "heeft"; +App::$strings["want"] = "wil"; +App::$strings["wants"] = "wil"; +App::$strings["likes"] = "vindt dit leuk"; +App::$strings["dislikes"] = "vindt dit niet leuk"; +App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; +App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; +App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; +App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["your registration password"] = "jouw registratiewachtwoord"; +App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; +App::$strings["Account approved."] = "Account goedgekeurd"; +App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +App::$strings["Image/photo"] = "Afbeelding/foto"; +App::$strings["Encrypted content"] = "Versleutelde inhoud"; +App::$strings["Install %s element: "] = "Installeer %s-element: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dit bericht heeft een te installeren %s-element, maar je hebt geen permissies om het op deze hub te installeren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klik om te openen of te sluiten"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["$1 wrote:"] = "$1 schreef:"; +App::$strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +App::$strings["Find Channels"] = "Kanalen vinden"; +App::$strings["Enter name or interest"] = "Vul naam of interesse in"; +App::$strings["Connect/Follow"] = "Verbinden/volgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +App::$strings["Random Profile"] = "Willekeurig profiel"; +App::$strings["Invite Friends"] = "Vrienden uitnodigen"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +App::$strings["show more"] = "meer connecties weergeven"; +App::$strings["Directory Options"] = "Opties kanalengids"; +App::$strings["Safe Mode"] = "Veilig zoeken"; +App::$strings["Public Forums Only"] = "Alleen openbare forums"; +App::$strings["This Website Only"] = "Alleen deze hub"; +App::$strings["No recipient provided."] = "Geen ontvanger opgegeven."; +App::$strings["[no subject]"] = "[geen onderwerp]"; +App::$strings["Unable to determine sender."] = "Afzender kan niet bepaald worden."; +App::$strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd."; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt."; +App::$strings["Channel clone failed. Import failed."] = "Het klonen van het kanaal is mislukt. Importeren mislukt."; +App::$strings["Logout"] = "Uitloggen"; +App::$strings["End this session"] = "Beëindig deze sessie"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Jouw kanaal"; +App::$strings["Your profile page"] = "Jouw profielpagina"; +App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +App::$strings["Edit your profile"] = "Jouw profiel bewerken"; +App::$strings["Your photos"] = "Jouw foto's"; +App::$strings["Your files"] = "Jouw bestanden"; +App::$strings["Your chatrooms"] = "Jouw chatkanalen"; +App::$strings["Your bookmarks"] = "Jouw bladwijzers"; +App::$strings["Your webpages"] = "Jouw webpagina's"; +App::$strings["Your wiki"] = "Jouw wiki"; +App::$strings["Sign in"] = "Inloggen"; +App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; +App::$strings["Remote authentication"] = "Authenticatie op afstand"; +App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Maak een account aan"; +App::$strings["Help and documentation"] = "Hulp en documentatie"; +App::$strings["Applications, utilities, links, games"] = "Apps"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; +App::$strings["Channel Directory"] = "Kanalengids"; +App::$strings["Your grid"] = "Jouw grid"; +App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; +App::$strings["Channel home"] = "Jouw kanaal"; +App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +App::$strings["Notices"] = "Notificaties"; +App::$strings["Notifications"] = "Notificaties"; +App::$strings["See all notifications"] = "Alle notificaties weergeven"; +App::$strings["Private mail"] = "Privéberichten"; +App::$strings["See all private messages"] = "Alle privéberichten weergeven"; +App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +App::$strings["Event Calendar"] = "Agenda"; +App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; +App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +App::$strings["Manage Your Channels"] = "Beheer je kanalen"; +App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; +App::$strings["Please wait..."] = "Wachten aub..."; App::$strings["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; -App::$strings["Select scheme"] = "Kies schema van thema"; App::$strings["Narrow navbar"] = "Smalle navigatiebalk"; App::$strings["Navigation bar background color"] = "Achtergrondkleur navigatiebalk"; App::$strings["Navigation bar gradient top color"] = "Bovenste gradiëntkleur navigatiebalk"; @@ -2294,6 +2337,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Update %s mislukt. Zie foutenlogboek."; App::$strings["Update Error at %s"] = "Update-fout op %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Maak een account aan om toegang te krijgen tot diensten en toepassingen van Hubzilla"; +App::$strings["Login/Email"] = "E-mailadres of inlognaam"; App::$strings["Password"] = "Wachtwoord"; App::$strings["Remember me"] = "Aangemeld blijven"; App::$strings["Forgot your password?"] = "Wachtwoord vergeten?"; -- cgit v1.2.3 From ea0be8ea1a22abfdedae0d0c47677a9de44e08c0 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 17:49:22 -0700 Subject: provide techlevels in the pro server role. Should have no visible effect on other roles. --- view/tpl/settings_account.tpl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'view') diff --git a/view/tpl/settings_account.tpl b/view/tpl/settings_account.tpl index 06f47bbe1..4a94bb93d 100755 --- a/view/tpl/settings_account.tpl +++ b/view/tpl/settings_account.tpl @@ -11,6 +11,13 @@ {{include file="field_password.tpl" field=$origpass}} {{include file="field_password.tpl" field=$password1}} {{include file="field_password.tpl" field=$password2}} + + {{if $z_server_role == 'pro'}} + {{include file="field_select.tpl" field=$techlevel}} + {{else}} + + {{/if}} +
    -- cgit v1.2.3 From fa8febbb31dee83d608849e3f1a2f56d664d1f13 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 21:57:08 -0700 Subject: some issues with saved search - tags and connection searches weren't being saved. --- view/pdl/mod_search.pdl | 2 +- view/tpl/sitesearch.tpl | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 view/tpl/sitesearch.tpl (limited to 'view') diff --git a/view/pdl/mod_search.pdl b/view/pdl/mod_search.pdl index 7de4a270f..cba0dc9d1 100644 --- a/view/pdl/mod_search.pdl +++ b/view/pdl/mod_search.pdl @@ -1,3 +1,3 @@ [region=aside] -[widget=savedsearch][/widget] +[widget=sitesearch][/widget] [/region] diff --git a/view/tpl/sitesearch.tpl b/view/tpl/sitesearch.tpl new file mode 100644 index 000000000..8dbf8cef5 --- /dev/null +++ b/view/tpl/sitesearch.tpl @@ -0,0 +1,5 @@ +
    + + {{$searchbox}} +
    +
    -- cgit v1.2.3 From 6adb18091124cd51e1bf8a2efae31cb83a0db075 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Wed, 31 Aug 2016 22:04:45 -0700 Subject: even though there is now a sitesearch widget, remove it from the search page pdl since we can just use the navbar and it offers more modes. --- view/pdl/mod_search.pdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/pdl/mod_search.pdl b/view/pdl/mod_search.pdl index cba0dc9d1..5096508fa 100644 --- a/view/pdl/mod_search.pdl +++ b/view/pdl/mod_search.pdl @@ -1,3 +1,3 @@ [region=aside] -[widget=sitesearch][/widget] +[comment][widget=sitesearch][/widget][/comment] [/region] -- cgit v1.2.3 From 24192ff1eff7df9a46f13349a043507f8fd9034e Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 1 Sep 2016 13:57:45 +0200 Subject: introduce checklist BBcode for checklists --- view/css/conversation.css | 3 ++- view/js/autocomplete.js | 13 ++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) (limited to 'view') diff --git a/view/css/conversation.css b/view/css/conversation.css index 6acca4b0d..4f2eee17d 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -320,7 +320,8 @@ img.smiley.emoji:hover { height: 32px; } -input.listcheckbox { + +.checklist input { margin: 0px; vertical-align: middle; } diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 63f1e9a13..62a3b6f06 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -102,8 +102,8 @@ function submit_form(e) { function getWord(text, caretPos) { var index = text.indexOf(caretPos); - var postText = text.substring(caretPos, caretPos+8); - if ((postText.indexOf('[/list]') > 0) || postText.indexOf('[/ul]') > 0 || postText.indexOf('[/ol]') > 0 || postText.indexOf('[/dl]') > 0) { + var postText = text.substring(caretPos, caretPos+13); + if (postText.indexOf('[/list]') > 0 || postText.indexOf('[/checklist]') > 0 || postText.indexOf('[/ul]') > 0 || postText.indexOf('[/ol]') > 0 || postText.indexOf('[/dl]') > 0) { return postText; } } @@ -140,10 +140,11 @@ function listNewLineAutocomplete(id) { var text = document.getElementById(id); var caretPos = getCaretPosition(text) var word = getWord(text.value, caretPos); + if (word != null) { var textBefore = text.value.substring(0, caretPos); var textAfter = text.value.substring(caretPos, text.length); - var textInsert = (word.indexOf('[/dl]') > 0) ? '\r\n[*=] ' : '\r\n[*] '; + var textInsert = (word.indexOf('[/dl]') > 0) ? '\r\n[*=] ' : (word.indexOf('[/checklist]') > 0) ? '\r\n[] ' : '\r\n[*] '; var caretPositionDiff = (word.indexOf('[/dl]') > 0) ? 3 : 1; $('#' + id).val(textBefore + textInsert + textAfter); @@ -268,7 +269,7 @@ function string2bb(element) { $.fn.bbco_autocomplete = function(type) { if(type=='bbcode') { - var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'superscript', 'subscript', 'quote', 'code', 'open', 'spoiler', 'map', 'nobb', 'list', 'ul', 'ol', 'dl', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'zrl', 'zmg', 'rpost', 'qr', 'observer']; + var open_close_elements = ['bold', 'italic', 'underline', 'overline', 'strike', 'superscript', 'subscript', 'quote', 'code', 'open', 'spoiler', 'map', 'nobb', 'list', 'checklist', 'ul', 'ol', 'dl', 'li', 'table', 'tr', 'th', 'td', 'center', 'color', 'font', 'size', 'zrl', 'zmg', 'rpost', 'qr', 'observer']; var open_elements = ['observer.baseurl', 'observer.address', 'observer.photo', 'observer.name', 'observer.webname', 'observer.url', '*', 'hr', ]; var elements = open_close_elements.concat(open_elements); @@ -300,7 +301,9 @@ function string2bb(element) { element = string2bb(element); if(open_elements.indexOf(element) < 0) { if(element === 'list' || element === 'ol' || element === 'ul') { - return ['\[' + element + '\]' + '\n\[*\] ', '\n\[/' + element + '\]']; + return ['\[' + element + '\]' + '\n\[*\] ', '\n\[/' + element + '\]']; + } else if(element === 'checklist') { + return ['\[' + element + '\]' + '\n\[\] ', '\n\[/' + element + '\]']; } else if (element === 'dl') { return ['\[' + element + '\]' + '\n\[*=Item name\] ', '\n\[/' + element + '\]']; } else if(element === 'table') { -- cgit v1.2.3 From 2ebb8851f684be467ae768fdac0eead1a636805c Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Sep 2016 12:42:47 -0700 Subject: theme preview - that was easy; plus a bit more tweaking of the saved search widget to try and get the sucker to auto submit --- view/js/mod_network.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/js/mod_network.js b/view/js/mod_network.js index cbdb82c75..cd36786df 100644 --- a/view/js/mod_network.js +++ b/view/js/mod_network.js @@ -1,5 +1,5 @@ $(document).ready(function() { - $("#search-text").contact_autocomplete(baseurl + '/search_ac'); + $("#search-text").contact_autocomplete(baseurl + '/search_ac','',true); $('.jslider-scale ins').addClass('hidden-xs'); }); -- cgit v1.2.3 From 678148b9aa98ffb0b174aceb2e30f79ea116a566 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Sep 2016 13:48:11 -0700 Subject: more work on theme select backend --- view/tpl/field_themeselect.tpl | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/tpl/field_themeselect.tpl b/view/tpl/field_themeselect.tpl index 250f9fcf1..7a529774c 100755 --- a/view/tpl/field_themeselect.tpl +++ b/view/tpl/field_themeselect.tpl @@ -1,9 +1,13 @@ - {{if $field.5=='preview'}}{{/if}} + {{if $field.5 == 'preview'}} + + {{/if}}
    - {{foreach $field.4 as $opt=>$val}}{{/foreach}} {{$field.3}} - {{if $field.5=='preview'}}
    {{/if}} + {{if $field.5=='preview'}} +
    + {{/if}}
    -- cgit v1.2.3 From 720f1d71233ab9f6be3ea4ae4b09d823fdca7367 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 1 Sep 2016 17:09:58 -0700 Subject: actively set all the theme options on the display settings page based on the current theme selection --- view/js/main.js | 6 ------ view/js/mod_settings.js | 22 ++++++++++++++++++++++ view/theme/redbasic/php/theme.php | 3 +-- 3 files changed, 23 insertions(+), 8 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 21157bdfe..627110c49 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1247,12 +1247,6 @@ Array.prototype.remove = function(item) { return this.push.apply(this, rest); }; -function previewTheme(elm) { - theme = $(elm).val(); - $.getJSON('pretheme?f=&theme=' + theme,function(data) { - $('#theme-preview').html('
    ' + data.desc + '
    ' + data.version + '
    ' + data.credits + '
    ' + theme + ''); - }); -} $(document).ready(function() { diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index 4ff702b22..db321ae70 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -8,6 +8,8 @@ $(document).ready(function() { $('.token-mirror').html($('#id_token').val()); $('#id_token').keyup( function() { $('.token-mirror').html($('#id_token').val()); }); + previewTheme($('#id_theme')[0]); + $("#id_permissions_role").change(function() { var role = $("#id_permissions_role").val(); if(role == 'custom') @@ -17,6 +19,26 @@ $(document).ready(function() { }); }); + +function setTheme(elm) { + $('#settings-form').submit(); +} + + +function previewTheme(elm) { + theme = $(elm).val(); + $.getJSON('theme_info/' + theme,function(data) { + $('#theme-preview').html('
    ' + data.desc + '
    ' + data.version + '
    ' + data.credits + '
    ' + theme + ''); + $('#id_schema').empty(); + $(data.schemas).each(function(index,item) { + $('
    +
    + {{include file="field_select.tpl" field=$edit.album_select}} +
    -- cgit v1.2.3 From 83b89b9576655c11a9beaaf2261b3a9013a52da5 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Thu, 8 Sep 2016 00:50:53 -0700 Subject: pro: provide settings for techlevel and techlevel_lock on admin/site page --- view/tpl/admin_site.tpl | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'view') diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 56e6087d6..a5b32f08f 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -42,6 +42,12 @@ {{include file="field_input.tpl" field=$sitename}} {{include file="field_select.tpl" field=$server_role}} + + {{if $z_server_role == 'pro'}} + {{include file="field_select.tpl" field=$techlevel}} + {{include file="field_checkbox.tpl" field=$techlock}} + {{/if}} + {{include file="field_textarea.tpl" field=$banner}} {{include file="field_textarea.tpl" field=$admininfo}} {{include file="field_select.tpl" field=$language}} -- cgit v1.2.3 From 04a76371fcc7e68fe542ddc3998d6661fc56e550 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 9 Sep 2016 09:58:18 +0200 Subject: update justifiedGallery 3.6.1 -> 3.6.3 --- view/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 627110c49..f415637bd 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -847,7 +847,7 @@ function pageUpdate() { function justifyPhotos(id) { justifiedGalleryActive = true; $('#' + id).justifiedGallery({ - selector: '> a, > div:not(.spinner, #page-end)', + selector: 'a, div:not(.spinner, #page-end)', margins: 3, border: 0, sizeRangeSuffixes: { -- cgit v1.2.3 From 6467ce1a97d0e8c24bcbcec0e92a93cf412594ab Mon Sep 17 00:00:00 2001 From: Wave72 Date: Fri, 9 Sep 2016 12:26:41 +0200 Subject: Updated Italian strings --- view/it/hmessages.po | 10713 +++++++++++++++++++++++++------------------------ view/it/hstrings.php | 1891 ++++----- 2 files changed, 6354 insertions(+), 6250 deletions(-) (limited to 'view') diff --git a/view/it/hmessages.po b/view/it/hmessages.po index 4daed02fe..f1476e6c0 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-08-26 00:02-0700\n" -"PO-Revision-Date: 2016-08-30 08:22+0000\n" +"POT-Creation-Date: 2016-09-02 00:02-0700\n" +"PO-Revision-Date: 2016-09-07 13:28+0000\n" "Last-Translator: Paolo Wave \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -21,84 +21,86 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social Networking" msgstr "Social network" #: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Mostly Public" msgstr "Social - Prevalentemente pubblico" #: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Restricted" msgstr "Social - Con restrizioni" #: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:939 +#: ../../include/permissions.php:945 msgid "Social - Private" msgstr "Social - Privato" #: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Community Forum" msgstr "Forum di discussione" #: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Mostly Public" msgstr "Social - Prevalentemente pubblico" #: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Restricted" msgstr "Forum - Con restrizioni" #: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:940 +#: ../../include/permissions.php:946 msgid "Forum - Private" msgstr "Forum - Privato" #: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed Republish" msgstr "Aggregatore di feed esterni" #: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Mostly Public" msgstr "Feed - Prevalentemente pubblico" #: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:941 +#: ../../include/permissions.php:947 msgid "Feed - Restricted" msgstr "Feed - Con restrizioni" #: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special Purpose" msgstr "Per finalità speciali" #: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Celebrity/Soapbox" msgstr "Speciale - Pagina per fan" #: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:942 +#: ../../include/permissions.php:948 msgid "Special - Group Repository" msgstr "Speciale - Repository di gruppo" #: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../include/permissions.php:943 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 +#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/Settings.php:1245 +#: ../../Zotlabs/Module/New_channel.php:132 ../../include/permissions.php:949 +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 msgid "Other" msgstr "Altro" #: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:943 +#: ../../include/permissions.php:949 msgid "Custom/Expert Mode" msgstr "Personalizzazione per esperti" @@ -106,19 +108,19 @@ msgstr "Personalizzazione per esperti" msgid "Can view my channel stream and posts" msgstr "Può vedere i post e i contenuti del mio canale" -#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:42 msgid "Can send me their channel stream and posts" msgstr "È tra i canali che seguo" -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:30 +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:36 msgid "Can view my default channel profile" msgstr "Può vedere il profilo predefinito del canale" -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:31 +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:37 msgid "Can view my connections" msgstr "Può vedere i miei contatti" -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:32 +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:38 msgid "Can view my file storage and photos" msgstr "Può vedere il mio archivio file e foto" @@ -138,11 +140,11 @@ msgstr "Può creare o modificare le pagine web del mio canale" msgid "Can post on my channel (wall) page" msgstr "Può postare sulla mia bacheca" -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:38 +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:44 msgid "Can comment on or like my posts" msgstr "Può commentare o aggiungere \"mi piace\" ai miei post" -#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:39 +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:45 msgid "Can send me private mail messages" msgstr "Può inviarmi messaggi privati" @@ -158,7 +160,7 @@ msgstr "Può inoltrare post a tutti i miei contatti con una menzione @+" msgid "Can chat with me" msgstr "Può aprire una chat con me" -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:47 +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:53 msgid "Can source my public posts in derived channels" msgstr "Può usare i miei post pubblici per creare canali derivati" @@ -170,7 +172,7 @@ msgstr "Può amministrare il mio canale" msgid "parent" msgstr "cartella superiore" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2657 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2665 msgid "Collection" msgstr "Cartella" @@ -197,14 +199,14 @@ msgstr "Appuntamenti inviati" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 -#: ../../Zotlabs/Lib/Apps.php:565 ../../include/widgets.php:1613 -#: ../../include/conversation.php:1033 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 +#: ../../include/widgets.php:1646 msgid "Unknown" msgstr "Sconosciuto" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1672 -#: ../../include/nav.php:95 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1674 +#: ../../include/nav.php:96 msgid "Files" msgstr "Archivio file" @@ -217,8 +219,8 @@ msgid "Shared" msgstr "Condiviso" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:216 -#: ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:237 +#: ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" msgstr "Crea" @@ -227,12 +229,12 @@ msgstr "Crea" #: ../../Zotlabs/Module/Cover_photo.php:357 #: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1626 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1659 msgid "Upload" msgstr "Carica" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:684 -#: ../../Zotlabs/Module/Settings.php:710 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:694 +#: ../../Zotlabs/Module/Settings.php:720 ../../Zotlabs/Module/Admin.php:1236 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 msgid "Name" msgstr "Nome" @@ -251,14 +253,14 @@ msgstr "Dimensione" msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Settings.php:754 +#: ../../Zotlabs/Module/Admin.php:2135 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Settings.php:744 ../../Zotlabs/Module/Admin.php:2127 -#: ../../Zotlabs/Module/Webpages.php:217 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Webpages.php:238 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 #: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 #: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 @@ -267,18 +269,17 @@ msgstr "Ultima modifica" msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Settings.php:755 +#: ../../Zotlabs/Module/Admin.php:1052 ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Admin.php:2136 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Settings.php:745 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Admin.php:1052 -#: ../../Zotlabs/Module/Admin.php:1226 ../../Zotlabs/Module/Admin.php:2128 -#: ../../Zotlabs/Module/Webpages.php:219 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Lib/Apps.php:342 ../../Zotlabs/Lib/ThreadItem.php:126 -#: ../../include/conversation.php:660 +#: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Webpages.php:240 +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Connedit.php:607 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Elimina" @@ -309,13 +310,14 @@ msgid "Drop files here to immediately upload" msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:220 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Settings.php:674 #: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 ../../Zotlabs/Module/Setup.php:219 +#: ../../Zotlabs/Module/Cover_photo.php:290 #: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 @@ -323,27 +325,27 @@ msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:29 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Settings.php:664 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 #: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 #: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 #: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Webpages.php:95 -#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 +#: ../../Zotlabs/Module/Item.php:1073 ../../Zotlabs/Module/Mood.php:116 +#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 #: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 -#: ../../Zotlabs/Module/Channel.php:268 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Rate.php:113 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 #: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 @@ -351,15 +353,15 @@ msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Module/Editpost.php:17 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Item.php:214 -#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 +#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 +#: ../../Zotlabs/Module/Channel.php:268 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3477 ../../include/photos.php:27 +#: ../../include/items.php:3496 ../../include/photos.php:27 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 @@ -369,13 +371,13 @@ msgstr "Trascina i file qui per caricarli al volo" msgid "Permission denied." msgstr "Permesso negato." -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 +#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:95 msgid "Not Found" msgstr "Non disponibile" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Display.php:120 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 +#: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Help.php:98 msgid "Page not found." msgstr "Pagina non trovata." @@ -383,7 +385,7 @@ msgstr "Pagina non trovata." #: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 #: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:384 +#: ../../include/items.php:403 msgid "Permission denied" msgstr "Permesso negato" @@ -422,4189 +424,4171 @@ msgstr "Assente" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Messaggio non valido" - -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "nessun risultato" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" +#: ../../Zotlabs/Module/Setup.php:192 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:960 +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 +msgid "Next" +msgstr "Successivo" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Port del database" -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Password database" -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "Yes" -msgstr "Sì" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Nome database" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Settings.php:673 ../../Zotlabs/Module/Photos.php:664 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Admin.php:463 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Tipo database" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Setup.php:316 -#: ../../Zotlabs/Module/Setup.php:364 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Pdledit.php:66 -#: ../../Zotlabs/Module/Filestorage.php:165 -#: ../../Zotlabs/Module/Settings.php:682 ../../Zotlabs/Module/Settings.php:795 -#: ../../Zotlabs/Module/Settings.php:886 ../../Zotlabs/Module/Settings.php:912 -#: ../../Zotlabs/Module/Settings.php:935 -#: ../../Zotlabs/Module/Settings.php:1040 -#: ../../Zotlabs/Module/Settings.php:1229 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Settings.php:692 ../../Zotlabs/Module/Settings.php:815 +#: ../../Zotlabs/Module/Settings.php:906 ../../Zotlabs/Module/Settings.php:932 +#: ../../Zotlabs/Module/Settings.php:955 +#: ../../Zotlabs/Module/Settings.php:1060 +#: ../../Zotlabs/Module/Settings.php:1255 ../../Zotlabs/Module/Admin.php:498 +#: ../../Zotlabs/Module/Admin.php:699 ../../Zotlabs/Module/Admin.php:784 +#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 +#: ../../Zotlabs/Module/Admin.php:1443 ../../Zotlabs/Module/Admin.php:1670 +#: ../../Zotlabs/Module/Admin.php:1755 ../../Zotlabs/Module/Admin.php:2138 +#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:74 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 #: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 #: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 #: ../../Zotlabs/Module/Import_items.php:122 #: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Admin.php:502 -#: ../../Zotlabs/Module/Admin.php:701 ../../Zotlabs/Module/Admin.php:784 -#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Admin.php:1662 -#: ../../Zotlabs/Module/Admin.php:1747 ../../Zotlabs/Module/Admin.php:2130 -#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 -#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Import.php:560 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 +#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Events.php:484 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Rate.php:166 #: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 #: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:711 -#: ../../include/widgets.php:763 ../../include/js_strings.php:22 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:712 +#: ../../include/js_strings.php:22 ../../include/widgets.php:796 #: ../../view/theme/redbasic/php/config.php:106 msgid "Submit" msgstr "Salva" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1351 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:485 +msgid "Basic/Minimal Social Networking" +msgstr "Social network basilare" -#: ../../Zotlabs/Module/Pubsites.php:27 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." +#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:486 +msgid "Standard Configuration (default)" +msgstr "Configurazione standard (predefinita)" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin.php:487 +msgid "Professional" +msgstr "Professionale" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Impostazioni del hub" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin.php:508 +msgid "Server Configuration/Role" +msgstr "Configurazione del server" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "Versione PHP" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../Zotlabs/Module/Pubsites.php:43 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Setup.php:417 +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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Events.php:467 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Webpages.php:223 -#: ../../Zotlabs/Module/Events.php:680 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Setup.php:435 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Module/Setup.php:457 +#, 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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Setup.php:488 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Register.php:231 -#: ../../Zotlabs/Module/New_channel.php:128 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Register.php:233 -#: ../../Zotlabs/Module/New_channel.php:130 -#, php-format +#: ../../Zotlabs/Module/Setup.php:518 msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:235 -#: ../../Zotlabs/Module/New_channel.php:132 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "sì" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Register.php:248 ../../Zotlabs/Module/Admin.php:503 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Register.php:253 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Register.php:265 ../../include/nav.php:151 -#: ../../boot.php:1720 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Register.php:266 +#: ../../Zotlabs/Module/Setup.php:566 msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Directory.php:63 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 -#: ../../Zotlabs/Module/Admin.php:1575 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3398 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1665 ../../include/nav.php:94 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Setup.php:587 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Settings.php:683 ../../Zotlabs/Module/Settings.php:709 -#: ../../Zotlabs/Module/Admin.php:1420 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1292 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Setup.php:590 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Setup.php:643 msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Setup.php:644 +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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2047 -#: ../../Zotlabs/Module/Admin.php:2067 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" +#: ../../Zotlabs/Module/Setup.php:646 +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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." + +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." + +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." + +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." + +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" + +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" + +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" + +#: ../../Zotlabs/Module/Setup.php:671 +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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." + +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " + +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Network.php:94 +#: ../../Zotlabs/Module/Network.php:95 msgid "No such group" msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Network.php:134 +#: ../../Zotlabs/Module/Network.php:135 msgid "No such channel" msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Network.php:139 +#: ../../Zotlabs/Module/Network.php:140 msgid "forum" msgstr "forum" -#: ../../Zotlabs/Module/Network.php:151 +#: ../../Zotlabs/Module/Network.php:152 msgid "Search Results For:" msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Network.php:217 +#: ../../Zotlabs/Module/Network.php:218 msgid "Privacy group is empty" msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Network.php:226 +#: ../../Zotlabs/Module/Network.php:227 msgid "Privacy group: " msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Network.php:252 +#: ../../Zotlabs/Module/Network.php:253 msgid "Invalid connection." msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1568 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:497 -msgid "All" -msgstr "Tutti" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Network" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:723 -msgid "Status" -msgstr "Stato" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "In contatto" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Approve" -msgstr "Approva" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignora il contatto" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Register.php:253 ../../Zotlabs/Module/Admin.php:499 +msgid "Registration" +msgstr "Registrazione" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:190 -msgid "Connections" -msgstr "Contatti" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/text.php:925 -#: ../../include/text.php:937 ../../include/acl_selectors.php:174 -#: ../../include/nav.php:169 -msgid "Search" -msgstr "Cerca" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1720 +msgid "Register" +msgstr "Registrati" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Copertine del canale" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Settings.php:683 +#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "Yes" +msgstr "Sì" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Settings.php:683 +#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 +#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4312 -msgid "female" -msgstr "femmina" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4313 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Settings.php:64 +msgid "Name is required" +msgstr "Il nome è obbligatorio" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4314 -msgid "male" -msgstr "maschio" +#: ../../Zotlabs/Module/Settings.php:68 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4315 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:718 +#: ../../Zotlabs/Module/Admin.php:1457 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Aggiorna" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4317 +#: ../../Zotlabs/Module/Settings.php:138 #, php-format -msgid "%1$s updated their %2$s" -msgstr "Aggiornamento: %2$s di %1$s" - -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 -msgid "cover photo" -msgstr "Copertina del canale" - -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto non disponibile." +msgid "This channel is limited to %d tokens" +msgstr "Questo canale è limitato a %d token" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../Zotlabs/Module/Settings.php:144 +msgid "Name and Password are required." +msgstr "Nome e password sono obbligatori." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../Zotlabs/Module/Settings.php:184 +msgid "Token saved." +msgstr "Token salvato." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Carica una copertina" +#: ../../Zotlabs/Module/Settings.php:316 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Settings.php:1180 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Settings.php:319 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../Zotlabs/Module/Settings.php:328 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../Zotlabs/Module/Settings.php:336 +msgid "Technical skill level updated" +msgstr "Livello tecnico aggiornato" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../Zotlabs/Module/Settings.php:352 +msgid "Password verification failed." +msgstr "Verifica della password fallita." -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." +#: ../../Zotlabs/Module/Settings.php:359 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../Zotlabs/Module/Settings.php:363 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../Zotlabs/Module/Setup.php:183 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" +#: ../../Zotlabs/Module/Settings.php:377 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../Zotlabs/Module/Setup.php:187 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Settings.php:379 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." -#: ../../Zotlabs/Module/Setup.php:191 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../Zotlabs/Module/Settings.php:440 ../../Zotlabs/Module/Settings.php:444 +#: ../../Zotlabs/Module/Settings.php:445 ../../Zotlabs/Module/Settings.php:448 +#: ../../Zotlabs/Module/Settings.php:459 ../../Zotlabs/Module/Connedit.php:627 +#: ../../include/channel.php:402 ../../include/channel.php:403 +#: ../../include/channel.php:410 ../../include/selectors.php:123 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Amici" -#: ../../Zotlabs/Module/Setup.php:198 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Settings.php:628 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../Zotlabs/Module/Setup.php:203 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Settings.php:691 ../../Zotlabs/Module/Settings.php:717 +#: ../../Zotlabs/Module/Settings.php:753 +msgid "Add application" +msgstr "Aggiungi una app" -#: ../../Zotlabs/Module/Setup.php:207 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../Zotlabs/Module/Settings.php:693 ../../Zotlabs/Module/Settings.php:719 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Admin.php:1428 ../../Zotlabs/Module/Wiki.php:171 +#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 +#: ../../include/conversation.php:1292 +msgid "Cancel" +msgstr "Annulla" -#: ../../Zotlabs/Module/Setup.php:208 ../../Zotlabs/Module/Setup.php:270 -#: ../../Zotlabs/Module/Setup.php:733 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../Zotlabs/Module/Settings.php:694 +msgid "Name of application" +msgstr "Nome dell'applicazione" -#: ../../Zotlabs/Module/Setup.php:267 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:721 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Setup.php:271 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Successivo" +#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:696 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" -#: ../../Zotlabs/Module/Setup.php:272 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Settings.php:696 ../../Zotlabs/Module/Settings.php:722 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Settings.php:697 ../../Zotlabs/Module/Settings.php:723 +msgid "Redirect" +msgstr "Redirect" -#: ../../Zotlabs/Module/Setup.php:295 +#: ../../Zotlabs/Module/Settings.php:697 msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Settings.php:724 +msgid "Icon url" +msgstr "Url icona" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Sources.php:112 +#: ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facoltativo" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Settings.php:709 +msgid "Application not found." +msgstr "Applicazione non trovata." -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Settings.php:752 +msgid "Connected Apps" +msgstr "App connesse" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Settings.php:756 +msgid "Client key starts with" +msgstr "La client key inizia con" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Settings.php:757 +msgid "No name" +msgstr "Nessun nome" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Settings.php:758 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Settings.php:771 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Settings.php:778 +msgid "Feature/Addon Settings" +msgstr "Impostazioni dei componenti aggiuntivi" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Settings.php:798 +msgid "Beginner/Basic" +msgstr "Principiante" -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Settings.php:799 +msgid "Novice - not skilled but willing to learn" +msgstr "Novizio - disposto a imparare" -#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:354 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." +#: ../../Zotlabs/Module/Settings.php:800 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio - con alcune conoscenze tecniche" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Settings.php:801 +msgid "Advanced - very comfortable" +msgstr "Avanzato - a mio agio con gli aspetti tecnici" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:356 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../Zotlabs/Module/Settings.php:802 +msgid "Expert - I can write computer code" +msgstr "Esperto - posso scrivere codice" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:360 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" +#: ../../Zotlabs/Module/Settings.php:803 +msgid "Wizard - I probably know more than you do" +msgstr "Genio - probabilmente ne so più di te" -#: ../../Zotlabs/Module/Setup.php:335 ../../Zotlabs/Module/Admin.php:489 -msgid "Basic/Minimal Social Networking" -msgstr "Social network basilare" +#: ../../Zotlabs/Module/Settings.php:810 +msgid "Account Settings" +msgstr "Il tuo account" -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:490 -msgid "Standard Configuration (default)" -msgstr "Configurazione standard (predefinita)" +#: ../../Zotlabs/Module/Settings.php:811 +msgid "Current Password" +msgstr "Password attuale" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:491 -msgid "Professional" -msgstr "Professionale" +#: ../../Zotlabs/Module/Settings.php:812 +msgid "Enter New Password" +msgstr "Nuova password" -#: ../../Zotlabs/Module/Setup.php:343 -msgid "Site settings" -msgstr "Impostazioni del hub" +#: ../../Zotlabs/Module/Settings.php:813 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" -#: ../../Zotlabs/Module/Setup.php:358 ../../Zotlabs/Module/Admin.php:512 -msgid "Server Configuration/Role" -msgstr "Configurazione del server" +#: ../../Zotlabs/Module/Settings.php:813 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" -#: ../../Zotlabs/Module/Setup.php:399 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." +#: ../../Zotlabs/Module/Settings.php:814 +msgid "Your technical skill level" +msgstr "Il tuo livello tecnico" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Settings.php:814 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio" -#: ../../Zotlabs/Module/Setup.php:415 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../Zotlabs/Module/Settings.php:816 +#: ../../Zotlabs/Module/Settings.php:1262 +msgid "Email Address:" +msgstr "Indirizzo email:" -#: ../../Zotlabs/Module/Setup.php:416 -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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../Zotlabs/Module/Settings.php:817 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Elimina l'account" -#: ../../Zotlabs/Module/Setup.php:420 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Settings.php:818 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" -#: ../../Zotlabs/Module/Setup.php:420 +#: ../../Zotlabs/Module/Settings.php:852 msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." - -#: ../../Zotlabs/Module/Setup.php:425 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +"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 "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." -#: ../../Zotlabs/Module/Setup.php:434 +#: ../../Zotlabs/Module/Settings.php:854 msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +"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 "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../Zotlabs/Module/Settings.php:889 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" -#: ../../Zotlabs/Module/Setup.php:438 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Login Name" +msgstr "Nome utente" -#: ../../Zotlabs/Module/Setup.php:456 -#, 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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Login Password" +msgstr "Password" -#: ../../Zotlabs/Module/Setup.php:461 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Expires (yyyy-mm-dd)" +msgstr "Con scadenza (aaaa-mm-gg)" -#: ../../Zotlabs/Module/Setup.php:463 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Settings.php:899 ../../Zotlabs/Module/Connedit.php:782 +msgid "Their Settings" +msgstr "Permessi concessi a te" -#: ../../Zotlabs/Module/Setup.php:486 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" +#: ../../Zotlabs/Module/Settings.php:900 ../../Zotlabs/Module/Connedit.php:783 +msgid "My Settings" +msgstr "Permessi che concedo" -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../Zotlabs/Module/Settings.php:902 ../../Zotlabs/Module/Connedit.php:778 +msgid "inherited" +msgstr "derivato" -#: ../../Zotlabs/Module/Setup.php:490 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Settings.php:904 ../../Zotlabs/Module/Connedit.php:785 +msgid "Individual Permissions" +msgstr "Permessi individuali" -#: ../../Zotlabs/Module/Setup.php:502 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Settings.php:905 ../../Zotlabs/Module/Connedit.php:786 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." -#: ../../Zotlabs/Module/Setup.php:503 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:689 +msgid "Off" +msgstr "Off" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 +#: ../../Zotlabs/Module/Admin.php:689 +msgid "On" +msgstr "On" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Settings.php:930 +msgid "Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Settings.php:954 +msgid "Connector Settings" +msgstr "Impostazioni del connettore" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Settings.php:1001 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" -#: ../../Zotlabs/Module/Setup.php:511 ../../Zotlabs/Module/Setup.php:513 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Settings.php:1004 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" -#: ../../Zotlabs/Module/Setup.php:511 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../Zotlabs/Module/Settings.php:1007 ../../Zotlabs/Module/Admin.php:410 +msgid "mobile" +msgstr "mobile" -#: ../../Zotlabs/Module/Setup.php:517 ../../Zotlabs/Module/Setup.php:520 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings.php:1055 +msgid "Display Settings" +msgstr "Aspetto" -#: ../../Zotlabs/Module/Setup.php:517 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../Zotlabs/Module/Settings.php:1056 +msgid "Theme Settings" +msgstr "Impostazioni del tema" -#: ../../Zotlabs/Module/Setup.php:525 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" -#: ../../Zotlabs/Module/Setup.php:529 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1058 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" -#: ../../Zotlabs/Module/Setup.php:533 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1064 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" -#: ../../Zotlabs/Module/Setup.php:537 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Select scheme" +msgstr "Scegli uno schema" -#: ../../Zotlabs/Module/Setup.php:541 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../Zotlabs/Module/Settings.php:1067 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" -#: ../../Zotlabs/Module/Setup.php:545 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." +#: ../../Zotlabs/Module/Settings.php:1068 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" -#: ../../Zotlabs/Module/Setup.php:563 +#: ../../Zotlabs/Module/Settings.php:1068 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 "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Setup.php:564 -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 "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../Zotlabs/Module/Settings.php:1069 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." +#: ../../Zotlabs/Module/Settings.php:1070 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." - -#: ../../Zotlabs/Module/Setup.php:569 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/Settings.php:1070 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Setup.php:583 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../Zotlabs/Module/Settings.php:1071 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Setup.php:584 -#, 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 "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +#: ../../Zotlabs/Module/Settings.php:1071 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../Zotlabs/Module/Setup.php:585 ../../Zotlabs/Module/Setup.php:606 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +#: ../../Zotlabs/Module/Settings.php:1072 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Setup.php:586 -#, 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 bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +#: ../../Zotlabs/Module/Settings.php:1073 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Setup.php:589 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +#: ../../Zotlabs/Module/Settings.php:1074 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Setup.php:605 -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 Red top " -"level folder" -msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +#: ../../Zotlabs/Module/Settings.php:1077 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Setup.php:609 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Settings.php:1077 +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Setup.php:642 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../Zotlabs/Module/Settings.php:1078 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" +#: ../../Zotlabs/Module/Settings.php:1079 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Setup.php:644 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../Zotlabs/Module/Settings.php:1079 +#: ../../Zotlabs/Module/Settings.php:1080 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../Zotlabs/Module/Settings.php:1080 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../Zotlabs/Module/Settings.php:1110 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +#: ../../Zotlabs/Module/Settings.php:1111 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Approved connections" +msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Setup.php:652 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Settings.php:1113 +msgid "Any connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Setup.php:658 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +#: ../../Zotlabs/Module/Settings.php:1114 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Setup.php:661 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Settings.php:1115 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Setup.php:670 -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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../Zotlabs/Module/Settings.php:1116 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Setup.php:694 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Settings.php:1117 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Setup.php:731 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " +#: ../../Zotlabs/Module/Settings.php:1193 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +#: ../../Zotlabs/Module/Settings.php:1198 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" +#: ../../Zotlabs/Module/Settings.php:1202 +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" +#: ../../Zotlabs/Module/Settings.php:1207 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" +#: ../../Zotlabs/Module/Settings.php:1253 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../Zotlabs/Module/Settings.php:1260 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" +#: ../../Zotlabs/Module/Settings.php:1261 ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/event.php:52 ../../include/event.php:84 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Luogo:" +#: ../../Zotlabs/Module/Settings.php:1263 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../Zotlabs/Module/Settings.php:1264 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" +#: ../../Zotlabs/Module/Settings.php:1265 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/channel.php:1034 ../../include/conversation.php:957 -msgid "Connect" -msgstr "Aggiungi" +#: ../../Zotlabs/Module/Settings.php:1267 +msgid "Adult Content" +msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../Zotlabs/Module/Settings.php:1267 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../Zotlabs/Module/Settings.php:1269 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" +#: ../../Zotlabs/Module/Settings.php:1272 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" +#: ../../Zotlabs/Module/Settings.php:1274 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" +#: ../../Zotlabs/Module/Settings.php:1274 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" +#: ../../Zotlabs/Module/Settings.php:1276 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../Zotlabs/Module/Settings.php:1277 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../Zotlabs/Module/Settings.php:1278 +msgid "" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" +#: ../../Zotlabs/Module/Settings.php:1279 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" +#: ../../Zotlabs/Module/Settings.php:1280 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" +#: ../../Zotlabs/Module/Settings.php:1282 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" +#: ../../Zotlabs/Module/Settings.php:1284 +msgid "Channel Permission Limits" +msgstr "Limiti sui permessi del canale" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../Zotlabs/Module/Settings.php:1286 +#, php-format +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Module/Settings.php:1286 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Settings.php:1287 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Settings.php:1288 +msgid "Default Access Control List (ACL)" +msgstr "Lista di accesso ai contenuti (ACL)" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Settings.php:1289 ../../Zotlabs/Module/Mitem.php:154 +#: ../../Zotlabs/Module/Mitem.php:231 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Settings.php:1290 +msgid "Use my default audience setting for the type of object published" +msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Settings.php:1297 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Settings.php:1303 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Settings.php:1306 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Settings.php:1307 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Settings.php:1308 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Settings.php:1309 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Settings.php:1310 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../Zotlabs/Module/Settings.php:1311 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Settings.php:1312 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Settings.php:1313 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Settings.php:1314 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Settings.php:1315 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Settings.php:1316 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Settings.php:1317 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Settings.php:1318 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:228 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" +#: ../../Zotlabs/Module/Settings.php:1319 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:229 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" +#: ../../Zotlabs/Module/Settings.php:1322 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Settings.php:1324 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Settings.php:1325 +msgid "Unseen channel activity" +msgstr "Novità nei canali" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Settings.php:1326 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Settings.php:1326 +#: ../../Zotlabs/Module/Settings.php:1331 +#: ../../Zotlabs/Module/Settings.php:1332 +#: ../../Zotlabs/Module/Settings.php:1333 +msgid "Recommended" +msgstr "Consigliato" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Settings.php:1327 +msgid "Upcoming events" +msgstr "Prossimi eventi" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Settings.php:1328 +msgid "Events today" +msgstr "Eventi di oggi" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Settings.php:1329 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../Zotlabs/Module/Settings.php:1329 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Settings.php:1330 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Settings.php:1331 +msgid "System info messages" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Settings.php:1332 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Settings.php:1333 +msgid "New connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Settings.php:1334 +msgid "System Registrations" +msgstr "Registrazioni" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Settings.php:1335 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Settings.php:1337 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Settings.php:1337 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Settings.php:1339 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Settings.php:1340 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Settings.php:1342 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Settings.php:1343 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Settings.php:1343 +#: ../../Zotlabs/Module/Settings.php:1344 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Settings.php:1344 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Settings.php:1346 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Settings.php:1347 ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Settings.php:1348 +msgid "Remove this channel." +msgstr "Elimina questo canale." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Settings.php:1349 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Settings.php:1350 +msgid "Start calendar week on monday" +msgstr "La settimana inizia il lunedì" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/conversation.php:1667 ../../include/nav.php:95 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Guida:" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:163 -msgid "Help" -msgstr "Guida" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2055 +#: ../../Zotlabs/Module/Admin.php:2075 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 +#: ../../include/text.php:938 ../../include/widgets.php:201 +msgid "Save" +msgstr "Salva" -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Admin.php:77 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 +#: ../../Zotlabs/Module/Admin.php:1583 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 +msgid "Item not found." +msgstr "Elemento non trovato." -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../Zotlabs/Module/Admin.php:197 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Admin.php:198 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Admin.php:199 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Admin.php:211 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Admin.php:212 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Admin.php:213 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Admin.php:219 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Admin.php:236 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:496 +#: ../../Zotlabs/Module/Admin.php:722 ../../Zotlabs/Module/Admin.php:766 +#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 +#: ../../Zotlabs/Module/Admin.php:1350 ../../Zotlabs/Module/Admin.php:1441 +#: ../../Zotlabs/Module/Admin.php:1634 ../../Zotlabs/Module/Admin.php:1668 +#: ../../Zotlabs/Module/Admin.php:1753 +msgid "Administration" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Admin.php:242 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Admin.php:245 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 -msgid "Permissions" -msgstr "Permessi" +#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:726 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Admin.php:247 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:727 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Admin.php:249 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" +#: ../../Zotlabs/Module/Admin.php:250 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../Zotlabs/Module/Admin.php:251 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Admin.php:373 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2896 +msgid "Default" +msgstr "Predefinito" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Admin.php:412 +msgid "experimental" +msgstr "sperimentale" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../Zotlabs/Module/Admin.php:414 +msgid "unsupported" +msgstr "non supportato" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../Zotlabs/Module/Admin.php:460 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:708 -#: ../../Zotlabs/Module/Admin.php:1449 ../../Zotlabs/Lib/Apps.php:334 -msgid "Update" -msgstr "Aggiorna" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." +#: ../../Zotlabs/Module/Admin.php:468 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token salvato." +#: ../../Zotlabs/Module/Admin.php:469 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Settings.php:312 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../Zotlabs/Module/Admin.php:497 ../../include/widgets.php:1523 +msgid "Site" +msgstr "Sito" -#: ../../Zotlabs/Module/Settings.php:315 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../Zotlabs/Module/Admin.php:500 +msgid "File upload" +msgstr "Caricamento file" -#: ../../Zotlabs/Module/Settings.php:324 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Policies" +msgstr "Politiche" -#: ../../Zotlabs/Module/Settings.php:341 -msgid "Password verification failed." -msgstr "Verifica della password fallita." +#: ../../Zotlabs/Module/Admin.php:502 ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" -#: ../../Zotlabs/Module/Settings.php:348 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:506 +msgid "Site name" +msgstr "Nome del sito" -#: ../../Zotlabs/Module/Settings.php:352 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../Zotlabs/Module/Admin.php:510 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../Zotlabs/Module/Settings.php:366 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../Zotlabs/Module/Admin.php:511 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../Zotlabs/Module/Settings.php:368 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../Zotlabs/Module/Admin.php:511 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../Zotlabs/Module/Settings.php:429 ../../Zotlabs/Module/Settings.php:433 -#: ../../Zotlabs/Module/Settings.php:434 ../../Zotlabs/Module/Settings.php:437 -#: ../../Zotlabs/Module/Settings.php:448 ../../Zotlabs/Module/Connedit.php:627 -#: ../../include/widgets.php:495 ../../include/channel.php:402 -#: ../../include/channel.php:403 ../../include/channel.php:410 -#: ../../include/selectors.php:123 -msgid "Friends" -msgstr "Amici" +#: ../../Zotlabs/Module/Admin.php:512 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../Zotlabs/Module/Settings.php:617 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../Zotlabs/Module/Admin.php:513 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../Zotlabs/Module/Settings.php:681 ../../Zotlabs/Module/Settings.php:707 -#: ../../Zotlabs/Module/Settings.php:743 -msgid "Add application" -msgstr "Aggiungi una app" +#: ../../Zotlabs/Module/Admin.php:513 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../Zotlabs/Module/Settings.php:684 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:711 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin.php:514 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:685 ../../Zotlabs/Module/Settings.php:686 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../Zotlabs/Module/Settings.php:686 ../../Zotlabs/Module/Settings.php:712 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin.php:516 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../Zotlabs/Module/Settings.php:687 ../../Zotlabs/Module/Settings.php:713 -msgid "Redirect" -msgstr "Redirect" +#: ../../Zotlabs/Module/Admin.php:517 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../Zotlabs/Module/Settings.php:687 +#: ../../Zotlabs/Module/Admin.php:517 msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Settings.php:714 -msgid "Icon url" -msgstr "Url icona" +#: ../../Zotlabs/Module/Admin.php:518 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../Zotlabs/Module/Settings.php:688 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facoltativo" +#: ../../Zotlabs/Module/Admin.php:519 +msgid "Invitation only" +msgstr "Solo con invito" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Application not found." -msgstr "Applicazione non trovata." +#: ../../Zotlabs/Module/Admin.php:519 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." -#: ../../Zotlabs/Module/Settings.php:742 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../Zotlabs/Module/Admin.php:520 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../Zotlabs/Module/Settings.php:746 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../Zotlabs/Module/Settings.php:747 -msgid "No name" -msgstr "Nessun nome" +#: ../../Zotlabs/Module/Admin.php:521 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../Zotlabs/Module/Settings.php:748 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../Zotlabs/Module/Settings.php:761 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../Zotlabs/Module/Admin.php:522 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../Zotlabs/Module/Settings.php:768 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" -#: ../../Zotlabs/Module/Settings.php:791 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../Zotlabs/Module/Admin.php:523 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../Zotlabs/Module/Settings.php:792 -msgid "Current Password" -msgstr "Password attuale" +#: ../../Zotlabs/Module/Admin.php:524 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../Zotlabs/Module/Settings.php:793 -msgid "Enter New Password" -msgstr "Nuova password" +#: ../../Zotlabs/Module/Admin.php:524 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../Zotlabs/Module/Settings.php:794 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" +#: ../../Zotlabs/Module/Admin.php:525 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:796 -#: ../../Zotlabs/Module/Settings.php:1236 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../Zotlabs/Module/Settings.php:797 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../Zotlabs/Module/Admin.php:526 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" +#: ../../Zotlabs/Module/Admin.php:527 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../Zotlabs/Module/Settings.php:832 +#: ../../Zotlabs/Module/Admin.php:527 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." -msgstr "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." + +#: ../../Zotlabs/Module/Admin.php:528 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" -#: ../../Zotlabs/Module/Settings.php:834 +#: ../../Zotlabs/Module/Admin.php:528 msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." -#: ../../Zotlabs/Module/Settings.php:869 ../../include/widgets.php:614 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "Login on Homepage" +msgstr "Login sulla homepage" -#: ../../Zotlabs/Module/Settings.php:876 -msgid "Login Name" -msgstr "Nome utente" +#: ../../Zotlabs/Module/Admin.php:529 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." -#: ../../Zotlabs/Module/Settings.php:877 -msgid "Login Password" -msgstr "Password" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" -#: ../../Zotlabs/Module/Settings.php:878 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../Zotlabs/Module/Admin.php:530 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" -#: ../../Zotlabs/Module/Settings.php:879 ../../Zotlabs/Module/Connedit.php:782 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Directory Server URL" +msgstr "URL del directory server" -#: ../../Zotlabs/Module/Settings.php:880 ../../Zotlabs/Module/Connedit.php:783 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Admin.php:532 +msgid "Default directory server" +msgstr "Directory server predefinito" -#: ../../Zotlabs/Module/Settings.php:882 ../../Zotlabs/Module/Connedit.php:778 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Admin.php:534 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../Zotlabs/Module/Settings.php:884 ../../Zotlabs/Module/Connedit.php:785 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Admin.php:535 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../Zotlabs/Module/Settings.php:885 ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." +#: ../../Zotlabs/Module/Admin.php:536 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Admin.php:536 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../Zotlabs/Module/Settings.php:903 ../../Zotlabs/Module/Admin.php:690 -#: ../../Zotlabs/Module/Admin.php:691 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Admin.php:537 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../Zotlabs/Module/Settings.php:910 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Admin.php:537 +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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../Zotlabs/Module/Settings.php:934 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" +#: ../../Zotlabs/Module/Admin.php:538 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" -#: ../../Zotlabs/Module/Settings.php:981 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:538 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" -#: ../../Zotlabs/Module/Settings.php:984 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" +#: ../../Zotlabs/Module/Admin.php:539 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../Zotlabs/Module/Settings.php:987 ../../Zotlabs/Module/Admin.php:414 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Admin.php:539 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../Zotlabs/Module/Settings.php:1035 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../Zotlabs/Module/Admin.php:540 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../Zotlabs/Module/Settings.php:1036 -msgid "Theme Settings" -msgstr "Impostazioni del tema" +#: ../../Zotlabs/Module/Admin.php:540 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../Zotlabs/Module/Settings.php:1037 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" +#: ../../Zotlabs/Module/Admin.php:541 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../Zotlabs/Module/Settings.php:1038 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" +#: ../../Zotlabs/Module/Admin.php:541 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../Zotlabs/Module/Admin.php:689 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" -#: ../../Zotlabs/Module/Settings.php:1045 -msgid "Select scheme" -msgstr "Scegli uno schema" +#: ../../Zotlabs/Module/Admin.php:697 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Settings.php:1047 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../Zotlabs/Module/Admin.php:714 +msgid "No server found" +msgstr "Server non trovato" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" +#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Admin.php:1059 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "for channel" +msgstr "per il canale" -#: ../../Zotlabs/Module/Settings.php:1049 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "on server" +msgstr "sul server" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Stato" -#: ../../Zotlabs/Module/Settings.php:1050 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "Server" +msgstr "Server" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" +#: ../../Zotlabs/Module/Admin.php:757 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../Zotlabs/Module/Admin.php:760 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" -#: ../../Zotlabs/Module/Settings.php:1052 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" +#: ../../Zotlabs/Module/Admin.php:761 +msgid "" +"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/
    " -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" +#: ../../Zotlabs/Module/Admin.php:762 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." -#: ../../Zotlabs/Module/Settings.php:1054 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../Zotlabs/Module/Admin.php:767 ../../include/widgets.php:1526 +msgid "Security" +msgstr "Sicurezza" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../Zotlabs/Module/Admin.php:769 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../Zotlabs/Module/Settings.php:1057 -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../Zotlabs/Module/Admin.php:769 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../Zotlabs/Module/Admin.php:770 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../Zotlabs/Module/Admin.php:771 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:1059 -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" +#: ../../Zotlabs/Module/Admin.php:772 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../Zotlabs/Module/Settings.php:1060 -msgid "Grid page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" +#: ../../Zotlabs/Module/Admin.php:772 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../Zotlabs/Module/Admin.php:773 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../Zotlabs/Module/Admin.php:773 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../Zotlabs/Module/Admin.php:774 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Admin.php:774 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" +#: ../../Zotlabs/Module/Admin.php:775 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" -#: ../../Zotlabs/Module/Settings.php:1095 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" +#: ../../Zotlabs/Module/Admin.php:776 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" -#: ../../Zotlabs/Module/Settings.php:1096 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" +#: ../../Zotlabs/Module/Admin.php:776 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../Zotlabs/Module/Admin.php:777 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" -#: ../../Zotlabs/Module/Settings.php:1171 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" +#: ../../Zotlabs/Module/Admin.php:778 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." -#: ../../Zotlabs/Module/Settings.php:1176 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" +#: ../../Zotlabs/Module/Admin.php:779 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" -#: ../../Zotlabs/Module/Settings.php:1185 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../Zotlabs/Module/Admin.php:779 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." -#: ../../Zotlabs/Module/Settings.php:1227 -msgid "Channel Settings" -msgstr "Impostazioni del canale" - -#: ../../Zotlabs/Module/Settings.php:1234 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../Zotlabs/Module/Admin.php:780 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" -#: ../../Zotlabs/Module/Settings.php:1235 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../Zotlabs/Module/Admin.php:798 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../Zotlabs/Module/Settings.php:1237 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../Zotlabs/Module/Admin.php:808 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../Zotlabs/Module/Admin.php:811 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:1238 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" +#: ../../Zotlabs/Module/Admin.php:815 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../Zotlabs/Module/Settings.php:1239 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../Zotlabs/Module/Admin.php:818 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../Zotlabs/Module/Admin.php:834 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../Zotlabs/Module/Settings.php:1241 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" +#: ../../Zotlabs/Module/Admin.php:838 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../Zotlabs/Module/Settings.php:1243 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../Zotlabs/Module/Admin.php:840 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../Zotlabs/Module/Settings.php:1246 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" +#: ../../Zotlabs/Module/Admin.php:841 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" +#: ../../Zotlabs/Module/Admin.php:872 +msgid "Queue Statistics" +msgstr "Statistiche della coda" -#: ../../Zotlabs/Module/Settings.php:1248 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostrare sul tuo profilo quando sei online" +#: ../../Zotlabs/Module/Admin.php:873 +msgid "Total Entries" +msgstr "Totale" -#: ../../Zotlabs/Module/Settings.php:1250 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../Zotlabs/Module/Admin.php:874 +msgid "Priority" +msgstr "Priorità" -#: ../../Zotlabs/Module/Settings.php:1251 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +#: ../../Zotlabs/Module/Admin.php:875 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../Zotlabs/Module/Settings.php:1252 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" +#: ../../Zotlabs/Module/Admin.php:876 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../Zotlabs/Module/Admin.php:877 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" -#: ../../Zotlabs/Module/Settings.php:1254 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../Zotlabs/Module/Admin.php:878 +msgid "Last known contact" +msgstr "Ultimo scambio dati" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" +#: ../../Zotlabs/Module/Admin.php:914 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../Zotlabs/Module/Settings.php:1256 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../Zotlabs/Module/Admin.php:921 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../Zotlabs/Module/Settings.php:1258 -msgid "Advanced Privacy Settings" -msgstr "Impostazioni di privacy avanzate" +#: ../../Zotlabs/Module/Admin.php:957 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" +#: ../../Zotlabs/Module/Admin.php:968 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." +#: ../../Zotlabs/Module/Admin.php:976 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:1260 +#: ../../Zotlabs/Module/Admin.php:984 #, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." +#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 +#: ../../include/widgets.php:1524 +msgid "Accounts" +msgstr "Account" -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." +#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 +msgid "select all" +msgstr "seleziona tutti" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../Zotlabs/Module/Admin.php:1047 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" -#: ../../Zotlabs/Module/Settings.php:1261 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:1048 +msgid "Request date" +msgstr "Data richiesta" -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Default Post and Publish Permissions" -msgstr "Permessi predefiniti per postare e pubblicare" +#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 +#: ../../include/network.php:2208 +msgid "Email" +msgstr "Email" -#: ../../Zotlabs/Module/Settings.php:1263 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../Zotlabs/Module/Admin.php:1049 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Use my default audience setting for the type of object published" -msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" +#: ../../Zotlabs/Module/Admin.php:1050 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Approva" -#: ../../Zotlabs/Module/Settings.php:1271 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../Zotlabs/Module/Admin.php:1051 +msgid "Deny" +msgstr "Nega" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" +#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blocca" -#: ../../Zotlabs/Module/Settings.php:1277 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Sblocca" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../Zotlabs/Module/Settings.php:1281 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../Zotlabs/Module/Admin.php:1062 +msgid "Register date" +msgstr "Data registrazione" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../Zotlabs/Module/Admin.php:1063 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../Zotlabs/Module/Settings.php:1283 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../Zotlabs/Module/Admin.php:1064 +msgid "Expires" +msgstr "Con scadenza" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../Zotlabs/Module/Admin.php:1065 +msgid "Service Class" +msgstr "Classe dell'account" -#: ../../Zotlabs/Module/Settings.php:1285 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../Zotlabs/Module/Admin.php:1067 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../Zotlabs/Module/Admin.php:1068 +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 "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../Zotlabs/Module/Admin.php:1113 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1289 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" +#: ../../Zotlabs/Module/Admin.php:1119 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../Zotlabs/Module/Admin.php:1139 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../Zotlabs/Module/Settings.php:1291 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../Zotlabs/Module/Admin.php:1149 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../Zotlabs/Module/Settings.php:1292 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1293 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" +#: ../../Zotlabs/Module/Admin.php:1161 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../Zotlabs/Module/Settings.php:1296 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1298 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" +#: ../../Zotlabs/Module/Admin.php:1172 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Settings.php:1299 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1525 +msgid "Channels" +msgstr "Canali" -#: ../../Zotlabs/Module/Settings.php:1300 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../Zotlabs/Module/Admin.php:1227 +msgid "Censor" +msgstr "Applica censura" -#: ../../Zotlabs/Module/Settings.php:1300 -#: ../../Zotlabs/Module/Settings.php:1305 -#: ../../Zotlabs/Module/Settings.php:1306 -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "Recommended" -msgstr "Consigliato" +#: ../../Zotlabs/Module/Admin.php:1228 +msgid "Uncensor" +msgstr "Rimuovi censura" -#: ../../Zotlabs/Module/Settings.php:1301 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../Zotlabs/Module/Admin.php:1229 +msgid "Allow Code" +msgstr "Permetti codice" -#: ../../Zotlabs/Module/Settings.php:1302 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../Zotlabs/Module/Admin.php:1230 +msgid "Disallow Code" +msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1646 +msgid "Channel" +msgstr "Canale" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../Zotlabs/Module/Admin.php:1235 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Settings.php:1304 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../Zotlabs/Module/Admin.php:1237 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Indirizzo" -#: ../../Zotlabs/Module/Settings.php:1305 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Admin.php:1239 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../Zotlabs/Module/Admin.php:1240 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Admin.php:1298 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../Zotlabs/Module/Admin.php:1303 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../Zotlabs/Module/Settings.php:1309 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" +#: ../../Zotlabs/Module/Admin.php:1319 ../../Zotlabs/Module/Admin.php:1607 +msgid "Disable" +msgstr "Disattiva" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../Zotlabs/Module/Admin.php:1322 ../../Zotlabs/Module/Admin.php:1609 +msgid "Enable" +msgstr "Attiva" -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../Zotlabs/Module/Admin.php:1351 ../../Zotlabs/Module/Admin.php:1442 +#: ../../include/widgets.php:1528 +msgid "Plugins" +msgstr "Plugin" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1636 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" +#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1637 +#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:680 +#: ../../include/nav.php:213 +msgid "Settings" +msgstr "Impostazioni" -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)" +#: ../../Zotlabs/Module/Admin.php:1360 ../../Zotlabs/Module/Admin.php:1646 +msgid "Author: " +msgstr "Autore:" -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../Zotlabs/Module/Admin.php:1361 ../../Zotlabs/Module/Admin.php:1647 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" +#: ../../Zotlabs/Module/Admin.php:1362 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1319 -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "%Y - current year, %m - current month" -msgstr "%Y - anno corrente, %m - mese corrente" +#: ../../Zotlabs/Module/Admin.php:1363 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" -#: ../../Zotlabs/Module/Settings.php:1320 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" +#: ../../Zotlabs/Module/Admin.php:1364 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" +#: ../../Zotlabs/Module/Admin.php:1365 +msgid "Compatible Server Roles: " +msgstr "Ruoli compatibili per questo server" -#: ../../Zotlabs/Module/Settings.php:1323 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Admin.php:1366 +msgid "Requires: " +msgstr "Necessita di:" -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Remove this channel." -msgstr "Elimina questo canale." +#: ../../Zotlabs/Module/Admin.php:1367 ../../Zotlabs/Module/Admin.php:1447 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Admin.php:1416 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Start calendar week on monday" -msgstr "La settimana inizia il lunedì" +#: ../../Zotlabs/Module/Admin.php:1417 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Admin.php:1418 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Admin.php:1418 +msgid "(optional)" +msgstr "(facoltativo)" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Admin.php:1419 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." +#: ../../Zotlabs/Module/Admin.php:1426 +msgid "Install new repo" +msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3931 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." +#: ../../Zotlabs/Module/Admin.php:1427 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installa" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." +#: ../../Zotlabs/Module/Admin.php:1449 +msgid "Manage Repos" +msgstr "Gestisci i repository" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." +#: ../../Zotlabs/Module/Admin.php:1450 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" +#: ../../Zotlabs/Module/Admin.php:1451 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali del gruppo" +#: ../../Zotlabs/Module/Admin.php:1458 +msgid "Switch branch" +msgstr "Cambia branch" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." +#: ../../Zotlabs/Module/Admin.php:1459 ../../Zotlabs/Module/Photos.php:1000 +#: ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Rimuovi" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." +#: ../../Zotlabs/Module/Admin.php:1572 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" +#: ../../Zotlabs/Module/Admin.php:1628 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Membri" +#: ../../Zotlabs/Module/Admin.php:1635 ../../Zotlabs/Module/Admin.php:1669 +#: ../../include/widgets.php:1529 +msgid "Themes" +msgstr "Temi" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../Zotlabs/Module/Admin.php:1674 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Admin.php:1675 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Module/Admin.php:1699 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../Zotlabs/Module/Admin.php:1754 ../../include/widgets.php:1550 +#: ../../include/widgets.php:1560 +msgid "Logs" +msgstr "Log" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Module/Admin.php:1756 +msgid "Clear" +msgstr "Pulisci" -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Module/Admin.php:1762 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " +#: ../../Zotlabs/Module/Admin.php:1763 +msgid "Log file" +msgstr "File di log" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Module/Admin.php:1763 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Relativo alla directory base del server web. Deve essere scrivibile." -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Module/Admin.php:1764 +msgid "Log level" +msgstr "Livello di log" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Module/Admin.php:2050 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Admin.php:2052 ../../Zotlabs/Module/Admin.php:2072 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Module/Admin.php:2064 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Module/Admin.php:2070 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Module/Admin.php:2128 ../../include/widgets.php:1531 +msgid "Profile Fields" +msgstr "Campi del profilo" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Admin.php:2129 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Admin.php:2130 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1607 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../Zotlabs/Module/Admin.php:2130 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1624 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Module/Admin.php:2132 +msgid "All available fields" +msgstr "Tutti i campi disponibili" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../Zotlabs/Module/Admin.php:2133 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Module/Admin.php:2137 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloccati" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorati" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Nascosti" -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 -msgid "Previous" -msgstr "Precendente" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviati" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1568 +msgid "New" +msgstr "Novità" -#: ../../Zotlabs/Module/Photos.php:1000 ../../Zotlabs/Module/Admin.php:1451 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Tutti" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:218 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1227 -msgid "Share" -msgstr "Condividi" - -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:398 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" - -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:708 -msgid "This is you" -msgstr "Questo sei tu" - -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" - -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:224 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:720 -#: ../../include/conversation.php:1200 ../../include/page_widgets.php:43 -msgid "Preview" -msgstr "Anteprima" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" - -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Network" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "In contatto" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignora il contatto" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignora" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1756 -msgid "View all" -msgstr "Vedi tutto" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1780 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/text.php:855 ../../include/nav.php:191 +msgid "Connections" +msgstr "Contatti" -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1783 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:174 +#: ../../include/text.php:925 ../../include/text.php:937 +#: ../../include/widgets.php:315 ../../include/nav.php:170 +msgid "Search" +msgstr "Cerca" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Ricerca tra i contatti" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Copertine del canale" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:393 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" +msgstr "femmina" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" +msgstr "maschio" -#: ../../Zotlabs/Module/Impel.php:191 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 #, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Impel.php:194 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 #, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" - -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 +msgid "cover photo" +msgstr "Copertina del canale" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Carica una copertina" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "nessun risultato" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Spedisci inviti" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "inviato" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aggiornato" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opzioni" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Reinvia" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizzazione tra hub" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 +#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Admin.php:1237 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Età:" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." +#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 +#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 +#: ../../include/channel.php:1034 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "il canale" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Contatti in comune:" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Oggetto" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "la foto" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "il messaggio di stato" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" -msgstr "l'evento" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non è d'accordo" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non si esprime" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Comando completato." +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Grazie." +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:210 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 +msgid "Menus" +msgstr "Menù" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Elimina" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:249 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creato" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:250 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modificato" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obbligatorio" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:500 -#: ../../Zotlabs/Module/Admin.php:724 ../../Zotlabs/Module/Admin.php:768 -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 -#: ../../Zotlabs/Module/Admin.php:1342 ../../Zotlabs/Module/Admin.php:1433 -#: ../../Zotlabs/Module/Admin.php:1626 ../../Zotlabs/Module/Admin.php:1660 -#: ../../Zotlabs/Module/Admin.php:1745 -msgid "Administration" -msgstr "Amministrazione" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:728 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aggiornato." -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:729 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Layout non trovato." -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Nome del modulo:" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Guida al layout" -#: ../../Zotlabs/Module/Admin.php:377 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" -#: ../../Zotlabs/Module/Admin.php:404 ../../include/text.php:2888 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Admin.php:416 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Admin.php:418 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../Zotlabs/Module/Admin.php:464 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../Zotlabs/Module/Admin.php:470 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../Zotlabs/Module/Admin.php:471 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Admin.php:472 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "File non trovato." -#: ../../Zotlabs/Module/Admin.php:473 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../Zotlabs/Module/Admin.php:501 ../../include/widgets.php:1490 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permessi" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../Zotlabs/Module/Admin.php:506 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Condividi questo file" -#: ../../Zotlabs/Module/Admin.php:515 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:524 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Membri" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../Zotlabs/Module/Admin.php:526 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Admin.php:526 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Photos.php:130 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../Zotlabs/Module/Admin.php:528 +#: ../../Zotlabs/Module/Photos.php:151 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../Zotlabs/Module/Photos.php:531 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Photos.php:580 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." + +#: ../../Zotlabs/Module/Photos.php:619 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +#: ../../Zotlabs/Module/Photos.php:622 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Photos.php:658 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Admin.php:531 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../Zotlabs/Module/Photos.php:662 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Photos.php:663 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../Zotlabs/Module/Photos.php:664 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." +#: ../../Zotlabs/Module/Photos.php:745 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Admin.php:535 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Photos.php:768 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Admin.php:535 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Photos.php:770 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1640 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +#: ../../Zotlabs/Module/Photos.php:825 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1657 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Photos.php:872 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Photos.php:874 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Admin.php:540 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Photos.php:932 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Photos.php:933 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Admin.php:542 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Admin.php:542 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 +#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 +#: ../../Zotlabs/Module/Cal.php:339 +msgid "Previous" +msgstr "Precendente" -#: ../../Zotlabs/Module/Admin.php:543 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Photos.php:955 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Admin.php:543 -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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Admin.php:544 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Admin.php:544 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Admin.php:545 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Admin.php:545 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Admin.php:546 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Admin.php:546 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Admin.php:547 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Admin.php:547 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Admin.php:691 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Admin.php:699 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Admin.php:716 -msgid "No server found" -msgstr "Server non trovato" +#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 +#: ../../include/conversation.php:1227 +msgid "Share" +msgstr "Condividi" -#: ../../Zotlabs/Module/Admin.php:723 ../../Zotlabs/Module/Admin.php:1059 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "for channel" -msgstr "per il canale" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "on server" -msgstr "sul server" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Admin.php:725 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:245 +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" +msgstr "Anteprima" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Admin.php:763 -msgid "" -"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/
    " +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Admin.php:764 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" + +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Admin.php:769 ../../include/widgets.php:1493 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1758 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1782 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1785 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Admin.php:775 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Admin.php:777 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Admin.php:778 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Admin.php:780 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" -#: ../../Zotlabs/Module/Admin.php:798 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Admin.php:808 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Admin.php:811 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Admin.php:815 +#: ../../Zotlabs/Module/Impel.php:191 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Admin.php:818 +#: ../../Zotlabs/Module/Impel.php:194 #, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" - -#: ../../Zotlabs/Module/Admin.php:834 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." - -#: ../../Zotlabs/Module/Admin.php:838 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" -#: ../../Zotlabs/Module/Admin.php:840 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../Zotlabs/Module/Admin.php:841 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" -#: ../../Zotlabs/Module/Admin.php:872 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/Import_items.php:72 +#: ../../Zotlabs/Module/Import.php:101 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Admin.php:873 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:123 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." -#: ../../Zotlabs/Module/Admin.php:874 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importazione completata" -#: ../../Zotlabs/Module/Admin.php:875 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importa i contenuti" -#: ../../Zotlabs/Module/Admin.php:876 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." -#: ../../Zotlabs/Module/Admin.php:877 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:549 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Admin.php:878 -msgid "Last known contact" -msgstr "Ultimo scambio dati" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../Zotlabs/Module/Admin.php:914 +#: ../../Zotlabs/Module/Invite.php:53 #, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../Zotlabs/Module/Admin.php:921 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" -#: ../../Zotlabs/Module/Admin.php:957 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../Zotlabs/Module/Admin.php:968 +#: ../../Zotlabs/Module/Invite.php:79 #, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../Zotlabs/Module/Admin.php:976 +#: ../../Zotlabs/Module/Invite.php:83 #, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../Zotlabs/Module/Admin.php:984 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" + +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 -#: ../../include/widgets.php:1491 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../Zotlabs/Module/Admin.php:1047 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" -#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "Email" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oppure visita" -#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "Sblocca" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." -#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." -#: ../../Zotlabs/Module/Admin.php:1062 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." -#: ../../Zotlabs/Module/Admin.php:1063 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" -#: ../../Zotlabs/Module/Admin.php:1064 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." -#: ../../Zotlabs/Module/Admin.php:1065 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" -#: ../../Zotlabs/Module/Admin.php:1067 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:46 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Module/Admin.php:1068 -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 "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../Zotlabs/Module/Admin.php:1104 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" -#: ../../Zotlabs/Module/Admin.php:1113 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." -#: ../../Zotlabs/Module/Admin.php:1119 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." -#: ../../Zotlabs/Module/Admin.php:1139 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." -#: ../../Zotlabs/Module/Admin.php:1149 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1492 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "il canale" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Oggetto" -#: ../../Zotlabs/Module/Admin.php:1228 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Admin.php:1229 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Admin.php:1230 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 +#: ../../include/conversation.php:120 +msgid "photo" +msgstr "la foto" -#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1644 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/text.php:1951 ../../include/conversation.php:148 +msgid "status" +msgstr "il messaggio di stato" -#: ../../Zotlabs/Module/Admin.php:1235 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 +#: ../../include/conversation.php:123 ../../include/event.php:958 +msgid "event" +msgstr "l'evento" -#: ../../Zotlabs/Module/Admin.php:1239 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Admin.php:1240 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Admin.php:1297 +#: ../../Zotlabs/Module/Like.php:423 #, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Admin.php:1301 +#: ../../Zotlabs/Module/Like.php:425 #, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../Zotlabs/Module/Admin.php:1311 ../../Zotlabs/Module/Admin.php:1599 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../Zotlabs/Module/Admin.php:1314 ../../Zotlabs/Module/Admin.php:1601 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Admin.php:1343 ../../Zotlabs/Module/Admin.php:1434 -#: ../../include/widgets.php:1495 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../Zotlabs/Module/Admin.php:1344 ../../Zotlabs/Module/Admin.php:1628 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1629 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:647 -#: ../../include/nav.php:212 -msgid "Settings" -msgstr "Impostazioni" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Comando completato." -#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1638 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Grazie." -#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1639 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../Zotlabs/Module/Admin.php:1354 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Admin.php:1355 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crea nuova" -#: ../../Zotlabs/Module/Admin.php:1356 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Admin.php:1357 -msgid "Compatible Server Roles: " -msgstr "Ruoli compatibili per questo server" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Admin.php:1358 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../Zotlabs/Module/Admin.php:1359 ../../Zotlabs/Module/Admin.php:1439 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Admin.php:1408 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../Zotlabs/Module/Admin.php:1409 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Admin.php:1410 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Admin.php:1411 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../Zotlabs/Module/Admin.php:1419 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../Zotlabs/Module/Admin.php:1441 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../Zotlabs/Module/Admin.php:1442 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" -#: ../../Zotlabs/Module/Admin.php:1443 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" -#: ../../Zotlabs/Module/Admin.php:1450 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" -#: ../../Zotlabs/Module/Admin.php:1564 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" -#: ../../Zotlabs/Module/Admin.php:1620 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../Zotlabs/Module/Admin.php:1627 ../../Zotlabs/Module/Admin.php:1661 -#: ../../include/widgets.php:1496 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../Zotlabs/Module/Admin.php:1666 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../Zotlabs/Module/Admin.php:1667 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" -#: ../../Zotlabs/Module/Admin.php:1691 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" -#: ../../Zotlabs/Module/Admin.php:1746 ../../include/widgets.php:1517 -#: ../../include/widgets.php:1527 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Admin.php:1748 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" -#: ../../Zotlabs/Module/Admin.php:1754 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../Zotlabs/Module/Admin.php:1755 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../Zotlabs/Module/Admin.php:1756 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../Zotlabs/Module/Admin.php:2043 ../../Zotlabs/Module/Admin.php:2063 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../Zotlabs/Module/Admin.php:2044 ../../Zotlabs/Module/Admin.php:2064 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../Zotlabs/Module/Admin.php:2045 ../../Zotlabs/Module/Admin.php:2065 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../Zotlabs/Module/Admin.php:2046 ../../Zotlabs/Module/Admin.php:2066 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../Zotlabs/Module/Admin.php:2056 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" -#: ../../Zotlabs/Module/Admin.php:2062 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../Zotlabs/Module/Admin.php:2120 ../../include/widgets.php:1498 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../Zotlabs/Module/Admin.php:2121 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." -#: ../../Zotlabs/Module/Admin.php:2122 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../Zotlabs/Module/Admin.php:2124 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." -#: ../../Zotlabs/Module/Admin.php:2125 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../Zotlabs/Module/Admin.php:2129 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." @@ -4815,8 +4799,8 @@ msgstr "Elimina questo profilo" msgid "Add profile things" msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1559 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1559 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Personali" @@ -4965,7 +4949,7 @@ msgid "Profile Image" msgstr "Immagine del profilo" #: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Edit Profiles" msgstr "Modifica i tuoi profili" @@ -4995,48 +4979,62 @@ msgstr "interessi personali:" msgid "No matches" msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Webpages.php:53 +#: ../../Zotlabs/Module/Webpages.php:52 msgid "Import Webpage Elements" msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Webpages.php:54 +#: ../../Zotlabs/Module/Webpages.php:53 msgid "Import selected" msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Webpages.php:214 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1718 ../../include/nav.php:108 +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Esporta gli elementi della pagina web" + +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Esporta i selezionati" + +#: ../../Zotlabs/Module/Webpages.php:235 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/conversation.php:1720 ../../include/nav.php:109 msgid "Webpages" msgstr "Pagine web" -#: ../../Zotlabs/Module/Webpages.php:225 ../../include/page_widgets.php:44 +#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Blocks.php:166 +#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Guarda" + +#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:44 msgid "Actions" msgstr "Azioni" -#: ../../Zotlabs/Module/Webpages.php:226 ../../include/page_widgets.php:45 +#: ../../Zotlabs/Module/Webpages.php:247 ../../include/page_widgets.php:45 msgid "Page Link" msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Webpages.php:227 +#: ../../Zotlabs/Module/Webpages.php:248 msgid "Page Title" msgstr "Titolo della pagina" -#: ../../Zotlabs/Module/Webpages.php:258 +#: ../../Zotlabs/Module/Webpages.php:278 msgid "Invalid file type." msgstr "Tipo di file non valido." -#: ../../Zotlabs/Module/Webpages.php:270 +#: ../../Zotlabs/Module/Webpages.php:290 msgid "Error opening zip file" msgstr "Errore nell'apertura del file zip" -#: ../../Zotlabs/Module/Webpages.php:281 +#: ../../Zotlabs/Module/Webpages.php:301 msgid "Invalid folder path." msgstr "La cartella indicata non è valida." -#: ../../Zotlabs/Module/Webpages.php:308 +#: ../../Zotlabs/Module/Webpages.php:328 msgid "No webpage elements detected." msgstr "Nella pagina web non sono presenti elementi." -#: ../../Zotlabs/Module/Webpages.php:382 +#: ../../Zotlabs/Module/Webpages.php:403 msgid "Import complete." msgstr "Importazione completata." @@ -5265,18 +5263,18 @@ msgid "" "only once and leave this page open until finished." msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/New_channel.php:140 msgid "Create Channel" msgstr "Crea un canale" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/New_channel.php:141 msgid "" "A channel is your identity on this network. It can represent a person, a " "blog, or a forum to name a few. Channels can make connections with other " "channels to share information with highly detailed permissions." msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." -#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/New_channel.php:142 msgid "" "or import an existing channel from another location." msgstr "oppure importa un canale esistente da un altro server/hub." @@ -5309,7 +5307,7 @@ msgstr "L'identificativo della richiesta non è valido." msgid "Discard" msgstr "Rifiuta" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:195 +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 msgid "Mark all system notifications seen" msgstr "Segna come lette le notifiche di sistema" @@ -5385,22 +5383,47 @@ msgid "" " to correctly use this feature." msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." -#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1384 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" + +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" + +#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valutazioni" + +#: ../../Zotlabs/Module/Pubsites.php:43 +msgid "Rate" +msgstr "Valuta" #: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format @@ -5473,6 +5496,12 @@ msgstr "Titolo del block" msgid "Layouts" msgstr "Layout" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Help.php:86 +#: ../../Zotlabs/Module/Help.php:91 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:164 +msgid "Help" +msgstr "Guida" + #: ../../Zotlabs/Module/Layouts.php:185 msgid "Comanche page description language help" msgstr "Guida di Comanche Page Description Language" @@ -5485,21 +5514,27 @@ msgstr "Descrizione del layout" msgid "Download PDL file" msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Nessuna valutazione" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" msgstr "Sito web:" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" + +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" + +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" #: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" @@ -5599,7 +5634,7 @@ msgid "Set expiration date" msgstr "Data di scadenza" #: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:723 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 #: ../../include/conversation.php:1289 msgid "Encrypt text" msgstr "Cifratura del messaggio" @@ -5639,6 +5674,22 @@ msgstr "Invia la risposta" msgid "Your message for %s (%s):" msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" + +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" + +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" + #: ../../Zotlabs/Module/Connedit.php:80 msgid "Could not access contact record." msgstr "Non è possibile accedere alle informazioni sul contatto." @@ -5678,7 +5729,7 @@ msgid "Connection has been removed." msgstr "Il contatto è stato rimosso." #: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:955 ../../include/nav.php:88 +#: ../../include/conversation.php:955 ../../include/nav.php:89 msgid "View Profile" msgstr "Profilo" @@ -5760,15 +5811,15 @@ msgstr "Questa connessione è tra quelle nascoste!" msgid "Delete this connection" msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:493 +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 msgid "Me" msgstr "Me" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:494 +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 msgid "Family" msgstr "Famiglia" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:496 +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 msgid "Acquaintances" msgstr "Conoscenti" @@ -5796,11 +5847,11 @@ msgstr "Affinità e profilo" msgid "none" msgstr "--" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:623 +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 msgid "Connection Default Permissions" msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3964 +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 #, php-format msgid "Connection: %s" msgstr "Contatto: %s" @@ -5888,10 +5939,18 @@ msgstr "Alcuni permessi derivano dalle impostazioni msgid "Last update:" msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:167 -msgid "Apps" -msgstr "App" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Ricerca nella guida" + +#: ../../Zotlabs/Module/Help.php:68 ../../Zotlabs/Module/Help.php:74 +#: ../../Zotlabs/Module/Help.php:80 +msgid "Help:" +msgstr "Guida:" + +#: ../../Zotlabs/Module/Help.php:121 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" #: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 msgid "Continue" @@ -6101,10 +6160,6 @@ msgstr "Questi contenuti potranno essere importati o ripristinati visitando These" -" permissions set who is allowed to view the post." -msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." + +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/items.php:3985 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/items.php:4338 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/security.php:109 +msgid "guest:" +msgstr "ospite:" -#: ../../include/channel.php:212 +#: ../../include/security.php:527 msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." - -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +"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 "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/channel.php:963 ../../include/nav.php:92 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../include/zot.php:3706 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Aggiungi nuovi contatti a questo gruppo di canali" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" +#: ../../include/group.php:289 +msgid "edit" +msgstr "modifica" -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" +#: ../../include/group.php:311 ../../include/features.php:83 +msgid "Privacy Groups" +msgstr "Gruppi di canali" -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Modifica il gruppo" -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Crea un gruppo di canali" -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Canali che non sono in nessun gruppo" -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "aggiungi" -#: ../../include/channel.php:1216 +#: ../../include/photos.php:114 #, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nuova foto" -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/photos.php:506 ../../include/conversation.php:1670 +msgid "Photo Albums" +msgstr "Album foto" -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nuova pagina web" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titolo" -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/wiki.php:525 ../../include/bbcode.php:619 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/attach.php:675 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/attach.php:689 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Compleanno" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Età:" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" -#: ../../include/datetime.php:272 ../../boot.php:2577 -msgid "never" -msgstr "mai" +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s fa" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "La posizione è vuota" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" +#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "Notifica evento $Projectname:" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" +#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" +#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Eliminare questo elemento?" -#: ../../include/datetime.php:562 +#: ../../include/js_strings.php:8 #, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" +msgid "%s show less" +msgstr "%s riduci" -#: ../../include/datetime.php:563 +#: ../../include/js_strings.php:9 #, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" - -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Frequentemente" - -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Ogni ora" +msgid "%s expand" +msgstr "%s mostra tutto" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Due volte al giorno" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" +msgstr "%s minimizza" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Ogni giorno" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Password troppo corta" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Ogni settimana" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Le password non corrispondono" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Ogni mese" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "tutti" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" -msgstr "Maschio" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Parola chiave per decifrare" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" -msgstr "Femmina" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Suggerimento per la parola chiave" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Al momento maschio" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Al momento femmina" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "chiudi tutto" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Prevalentemente maschio" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niente di nuovo qui" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Prevalentemente femmina" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valuta questo canale (visibile a tutti)" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transgender" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Descrizione (facoltativa)" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Intersex" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Inserisci l'URL di un link" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transessuale" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Ermafrodito" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Neutro" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "Non specificato" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "fa" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Indeciso" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "da adesso" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Maschi" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "meno di un minuto" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Femmine" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "circa un minuto" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Gay" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minuti" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbica" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "circa un’ora" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Senza preferenza" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "circa %d ore" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisessuale" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un giorno" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosessuale" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d giorni" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Astinente" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "circa un mese" -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Vergine" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d mesi" -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Deviato" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "circa un anno" -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Feticista" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d anni" -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Un sacco" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Asessuato" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/js_strings.php:45 ../../include/text.php:1243 +msgid "January" +msgstr "gennaio" -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Da solo" +#: ../../include/js_strings.php:46 ../../include/text.php:1243 +msgid "February" +msgstr "febbraio" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Disponibile" +#: ../../include/js_strings.php:47 ../../include/text.php:1243 +msgid "March" +msgstr "marzo" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Non disponibile" +#: ../../include/js_strings.php:48 ../../include/text.php:1243 +msgid "April" +msgstr "aprile" -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Ha una cotta" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "maggio" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Infatuato/a" +#: ../../include/js_strings.php:50 ../../include/text.php:1243 +msgid "June" +msgstr "giugno" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Disponibile a un incontro" +#: ../../include/js_strings.php:51 ../../include/text.php:1243 +msgid "July" +msgstr "luglio" -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Infedele" +#: ../../include/js_strings.php:52 ../../include/text.php:1243 +msgid "August" +msgstr "agosto" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sesso-dipendente" +#: ../../include/js_strings.php:53 ../../include/text.php:1243 +msgid "September" +msgstr "settembre" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Amici con qualcosa in più" +#: ../../include/js_strings.php:54 ../../include/text.php:1243 +msgid "October" +msgstr "ottobre" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Casual" +#: ../../include/js_strings.php:55 ../../include/text.php:1243 +msgid "November" +msgstr "novembre" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Impegnato" +#: ../../include/js_strings.php:56 ../../include/text.php:1243 +msgid "December" +msgstr "dicembre" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Sposato/a" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Gen" -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Con matrimonio immaginario" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mar" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Convivente" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio regolare" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "maggio" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felice" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Mag" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Non in cerca" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Giu" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Scambista" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "Ago" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Tradito/a" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "Set" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separato/a" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Ott" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instabile" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Dic" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" +#: ../../include/js_strings.php:69 ../../include/text.php:1239 +msgid "Sunday" +msgstr "domenica" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" +#: ../../include/js_strings.php:70 ../../include/text.php:1239 +msgid "Monday" +msgstr "lunedì" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" +#: ../../include/js_strings.php:71 ../../include/text.php:1239 +msgid "Tuesday" +msgstr "martedì" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" +#: ../../include/js_strings.php:72 ../../include/text.php:1239 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" +#: ../../include/js_strings.php:73 ../../include/text.php:1239 +msgid "Thursday" +msgstr "giovedì" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../include/js_strings.php:74 ../../include/text.php:1239 +msgid "Friday" +msgstr "venerdì" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" +#: ../../include/js_strings.php:75 ../../include/text.php:1239 +msgid "Saturday" +msgstr "sabato" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "Dom" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Lun" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Mar" -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Mer" -#: ../../include/photos.php:506 ../../include/conversation.php:1668 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Gio" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Ven" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Sab" -#: ../../include/security.php:527 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "oggi" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mese" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "settimana" + +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/conversation.php:694 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorie:" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Classificato come:" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/conversation.php:741 -msgid "View in context" -msgstr "Vedi nel contesto" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/conversation.php:851 -msgid "remove" -msgstr "rimuovi" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/conversation.php:855 ../../include/nav.php:251 -msgid "Loading..." -msgstr "Caricamento in corso..." +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/conversation.php:856 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/conversation.php:949 -msgid "View Source" -msgstr "Vedi il sorgente" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/conversation.php:950 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Chi può vederlo?" -#: ../../include/conversation.php:951 -msgid "Unfollow Thread" -msgstr "Non seguire la discussione" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selezione personalizzata" -#: ../../include/conversation.php:956 -msgid "Activity/Posts" -msgstr "Attività e Post" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." -#: ../../include/conversation.php:958 -msgid "Edit Connection" -msgstr "Modifica il contatto" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostra" -#: ../../include/conversation.php:959 -msgid "Message" -msgstr "Messaggio" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Non mostrare" -#: ../../include/conversation.php:1076 +#: ../../include/acl_selectors.php:207 #, php-format -msgid "%s likes this." -msgstr "Piace a %s." +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." -#: ../../include/conversation.php:1076 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../include/text.php:404 +msgid "prev" +msgstr "prec" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "" -msgstr[1] "Piace a %2$d persone." +#: ../../include/text.php:406 +msgid "first" +msgstr "inizio" -#: ../../include/conversation.php:1082 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "" -msgstr[1] "Non piace a %2$d persone." +#: ../../include/text.php:435 +msgid "last" +msgstr "fine" -#: ../../include/conversation.php:1088 -msgid "and" -msgstr "e" +#: ../../include/text.php:438 +msgid "next" +msgstr "succ" -#: ../../include/conversation.php:1091 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" +#: ../../include/text.php:448 +msgid "older" +msgstr "più recenti" -#: ../../include/conversation.php:1092 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../include/text.php:450 +msgid "newer" +msgstr "più nuovi" -#: ../../include/conversation.php:1092 +#: ../../include/text.php:843 +msgid "No connections" +msgstr "Nessun contatto" + +#: ../../include/text.php:868 #, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../include/conversation.php:1135 -msgid "Set your location" -msgstr "La tua località" +#: ../../include/text.php:1013 ../../include/text.php:1018 +msgid "poke" +msgstr "poke" -#: ../../include/conversation.php:1136 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" +#: ../../include/text.php:1013 ../../include/text.php:1018 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha mandato un poke" -#: ../../include/conversation.php:1184 -msgid "Tag term:" -msgstr "Tag:" +#: ../../include/text.php:1019 +msgid "ping" +msgstr "ping" -#: ../../include/conversation.php:1185 -msgid "Where are you right now?" -msgstr "Dove sei ora?" +#: ../../include/text.php:1019 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../include/conversation.php:1194 -msgid "Comments enabled" -msgstr "Commenti abilitati" +#: ../../include/text.php:1020 +msgid "prod" +msgstr "spintone" -#: ../../include/conversation.php:1195 -msgid "Comments disabled" -msgstr "Commenti disabilitati" +#: ../../include/text.php:1020 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../include/conversation.php:1229 -msgid "Page link name" -msgstr "Nome del link alla pagina" +#: ../../include/text.php:1021 +msgid "slap" +msgstr "schiaffo" -#: ../../include/conversation.php:1232 -msgid "Post as" -msgstr "Pubblica come " +#: ../../include/text.php:1021 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../include/conversation.php:1246 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" +#: ../../include/text.php:1022 +msgid "finger" +msgstr "finger" -#: ../../include/conversation.php:1249 -msgid "Disable comments" -msgstr "Disabilita i commenti" +#: ../../include/text.php:1022 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../include/conversation.php:1250 -msgid "Toggle comments" -msgstr "Abilita/disabilita i commenti" +#: ../../include/text.php:1023 +msgid "rebuff" +msgstr "rifiuto" -#: ../../include/conversation.php:1258 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../include/text.php:1023 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../include/conversation.php:1281 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" +#: ../../include/text.php:1035 +msgid "happy" +msgstr "felice" -#: ../../include/conversation.php:1287 -msgid "Set publish date" -msgstr "Data di uscita programmata" +#: ../../include/text.php:1036 +msgid "sad" +msgstr "triste" -#: ../../include/conversation.php:1536 -msgid "Discover" -msgstr "Scopri" +#: ../../include/text.php:1037 +msgid "mellow" +msgstr "calmo" -#: ../../include/conversation.php:1539 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" +#: ../../include/text.php:1038 +msgid "tired" +msgstr "stanco" -#: ../../include/conversation.php:1544 -msgid "Commented Order" -msgstr "Commenti recenti" +#: ../../include/text.php:1039 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1040 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:1041 +msgid "stupefied" +msgstr "stupito" -#: ../../include/conversation.php:1547 -msgid "Sort by Comment Date" -msgstr "Per data del commento" +#: ../../include/text.php:1042 +msgid "puzzled" +msgstr "confuso" -#: ../../include/conversation.php:1551 -msgid "Posted Order" -msgstr "Post recenti" +#: ../../include/text.php:1043 +msgid "interested" +msgstr "attento" -#: ../../include/conversation.php:1554 -msgid "Sort by Post Date" -msgstr "Per data di creazione" +#: ../../include/text.php:1044 +msgid "bitter" +msgstr "amaro" -#: ../../include/conversation.php:1562 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" +#: ../../include/text.php:1045 +msgid "cheerful" +msgstr "allegro" -#: ../../include/conversation.php:1571 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" +#: ../../include/text.php:1046 +msgid "alive" +msgstr "vivace" -#: ../../include/conversation.php:1577 -msgid "Starred" -msgstr "Preferiti" +#: ../../include/text.php:1047 +msgid "annoyed" +msgstr "seccato" -#: ../../include/conversation.php:1580 -msgid "Favourite Posts" -msgstr "Post preferiti" +#: ../../include/text.php:1048 +msgid "anxious" +msgstr "ansioso" -#: ../../include/conversation.php:1587 -msgid "Spam" -msgstr "Spam" +#: ../../include/text.php:1049 +msgid "cranky" +msgstr "irritabile" -#: ../../include/conversation.php:1590 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" +#: ../../include/text.php:1050 +msgid "disturbed" +msgstr "turbato" -#: ../../include/conversation.php:1647 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" +#: ../../include/text.php:1051 +msgid "frustrated" +msgstr "frustrato" -#: ../../include/conversation.php:1656 -msgid "About" -msgstr "Informazioni" +#: ../../include/text.php:1052 +msgid "depressed" +msgstr "in depressione" -#: ../../include/conversation.php:1659 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../include/text.php:1053 +msgid "motivated" +msgstr "motivato" -#: ../../include/conversation.php:1675 -msgid "Files and Storage" -msgstr "Archivio file" +#: ../../include/text.php:1054 +msgid "relaxed" +msgstr "rilassato" -#: ../../include/conversation.php:1708 ../../include/nav.php:104 -msgid "Bookmarks" -msgstr "Segnalibri" +#: ../../include/text.php:1055 +msgid "surprised" +msgstr "sorpreso" -#: ../../include/conversation.php:1711 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../include/text.php:1243 +msgid "May" +msgstr "Mag" -#: ../../include/conversation.php:1721 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../include/text.php:1320 ../../include/text.php:1324 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/conversation.php:1786 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../include/text.php:1326 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/conversation.php:1789 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../include/text.php:1362 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/conversation.php:1792 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../include/text.php:1439 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/conversation.php:1795 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../include/text.php:1738 ../../include/text.php:1809 +msgid "default" +msgstr "predefinito" -#: ../../include/conversation.php:1798 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../include/text.php:1746 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/conversation.php:1801 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../include/text.php:1746 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +#: ../../include/text.php:1788 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso." +#: ../../include/text.php:1821 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Aggiungi nuovi contatti a questo gruppo di canali" +#: ../../include/text.php:1958 +msgid "activity" +msgstr "l'attività" -#: ../../include/group.php:289 -msgid "edit" -msgstr "modifica" +#: ../../include/text.php:2259 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/group.php:311 ../../include/features.php:84 -msgid "Privacy Groups" -msgstr "Gruppi di canali" +#: ../../include/text.php:2265 +msgid "Pages" +msgstr "Pagine" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Modifica il gruppo" +#: ../../include/text.php:2287 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Crea un gruppo di canali" +#: ../../include/text.php:2288 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Canali che non sono in nessun gruppo" +#: ../../include/text.php:2289 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/text.php:2290 +msgid "Import from cloud files:" +msgstr "Importa da un file su cloud:" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" +#: ../../include/text.php:2291 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/percorso/alla/cartella" -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" +#: ../../include/text.php:2292 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../include/text.php:2293 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/text.php:2294 +msgid "Export website..." +msgstr "Esporta il sito web..." -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/text.php:2295 +msgid "Export to a zip file" +msgstr "Esporta come file zip" -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../include/text.php:2296 +msgid "website.zip" +msgstr "sitoweb.zip" -#: ../../include/event.php:1021 -msgid "Not specified" -msgstr "Non specificato" +#: ../../include/text.php:2297 +msgid "Enter a name for the zip file." +msgstr "Scegli il nome del file zip." -#: ../../include/event.php:1022 -msgid "Needs Action" -msgstr "Necessita di un intervento" +#: ../../include/text.php:2298 +msgid "Export to cloud files" +msgstr "Esporta nell'archivio cloud" -#: ../../include/event.php:1023 -msgid "Completed" -msgstr "Completato" +#: ../../include/text.php:2299 +msgid "/path/to/export/folder" +msgstr "/percorso/alla/cartella" -#: ../../include/event.php:1024 -msgid "In Process" -msgstr "In corso" +#: ../../include/text.php:2300 +msgid "Enter a path to a cloud files destination." +msgstr "Scegli la posizione su una cartella cloud." -#: ../../include/event.php:1025 -msgid "Cancelled" -msgstr "Annullato" +#: ../../include/text.php:2301 +msgid "Specify folder" +msgstr "Scegli la cartella" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Allegati:" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Eliminare questo elemento?" +#: ../../include/import.php:1441 +msgid "Unable to import element \"" +msgstr "Impossibile importare l'elemento \"" -#: ../../include/js_strings.php:8 -#, php-format -msgid "%s show less" -msgstr "%s riduci" +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../include/js_strings.php:9 -#, php-format -msgid "%s expand" -msgstr "%s mostra tutto" +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" -#: ../../include/js_strings.php:10 -#, php-format -msgid "%s collapse" -msgstr "%s minimizza" +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Password troppo corta" +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "È necessario un invito." -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Le password non corrispondono" +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "tutti" +#: ../../include/account.php:129 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Parola chiave per decifrare" +#: ../../include/account.php:196 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Suggerimento per la parola chiave" +#: ../../include/account.php:256 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Nota: i permessi sono stati modificati ma non ancora salvati." +#: ../../include/account.php:322 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "chiudi tutto" +#: ../../include/account.php:346 +msgid "your registration password" +msgstr "la password di registrazione" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niente di nuovo qui" +#: ../../include/account.php:349 ../../include/account.php:409 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valuta questo canale (visibile a tutti)" +#: ../../include/account.php:421 +msgid "Account approved." +msgstr "Account approvato." -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Descrizione (facoltativa)" +#: ../../include/account.php:461 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Inserisci l'URL di un link" +#: ../../include/account.php:746 ../../include/account.php:748 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?" +#: ../../include/account.php:754 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/account.php:759 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "fa" +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Autenticazione fallita" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "da adesso" +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "meno di un minuto" +#: ../../include/activities.php:41 +msgid " and " +msgstr "e" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "circa un minuto" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../include/js_strings.php:33 +#: ../../include/activities.php:58 #, php-format -msgid "%d minutes" -msgstr "%d minuti" - -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "circa un’ora" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../include/js_strings.php:35 +#: ../../include/activities.php:59 #, php-format -msgid "about %d hours" -msgstr "circa %d ore" +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un giorno" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/js_strings.php:37 +#: ../../include/conversation.php:204 #, php-format -msgid "%d days" -msgstr "%d giorni" +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "circa un mese" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" -#: ../../include/js_strings.php:39 +#: ../../include/conversation.php:694 #, php-format -msgid "%d months" -msgstr "%d mesi" +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "circa un anno" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Categorie:" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d anni" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Classificato come:" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Vedi nel contesto" -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "rimuovi" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "maggio" +#: ../../include/conversation.php:855 ../../include/nav.php:252 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Gen" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Vedi il sorgente" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mar" +#: ../../include/conversation.php:950 +msgid "Follow Thread" +msgstr "Segui la discussione" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Non seguire la discussione" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "maggio" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Attività e Post" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Mag" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Modifica il contatto" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Giu" +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Messaggio" + +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "" +msgstr[1] "Piace a %2$d persone." + +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "" +msgstr[1] "Non piace a %2$d persone." + +#: ../../include/conversation.php:1088 +msgid "and" +msgstr "e" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Ago" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Set" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Ott" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "La tua località" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Dic" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "Dom" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Tag:" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Lun" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "Dove sei ora?" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Mar" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Commenti abilitati" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Mer" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Commenti disabilitati" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Gio" +#: ../../include/conversation.php:1229 +msgid "Page link name" +msgstr "Nome del link alla pagina" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Ven" +#: ../../include/conversation.php:1232 +msgid "Post as" +msgstr "Pubblica come " -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Sab" +#: ../../include/conversation.php:1246 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "oggi" +#: ../../include/conversation.php:1249 +msgid "Disable comments" +msgstr "Disabilita i commenti" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mese" +#: ../../include/conversation.php:1250 +msgid "Toggle comments" +msgstr "Abilita/disabilita i commenti" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "settimana" +#: ../../include/conversation.php:1258 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "giorno" +#: ../../include/conversation.php:1281 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" +#: ../../include/conversation.php:1287 +msgid "Set publish date" +msgstr "Data di uscita programmata" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." +#: ../../include/conversation.php:1536 +msgid "Discover" +msgstr "Scopri" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." +#: ../../include/conversation.php:1539 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." +#: ../../include/conversation.php:1544 +msgid "Commented Order" +msgstr "Commenti recenti" -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." +#: ../../include/conversation.php:1547 +msgid "Sort by Comment Date" +msgstr "Per data del commento" -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." +#: ../../include/conversation.php:1551 +msgid "Posted Order" +msgstr "Post recenti" -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/conversation.php:1554 +msgid "Sort by Post Date" +msgstr "Per data di creazione" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../include/conversation.php:1562 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../include/conversation.php:1571 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../include/conversation.php:1577 +msgid "Starred" +msgstr "Preferiti" -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../include/conversation.php:1580 +msgid "Favourite Posts" +msgstr "Post preferiti" -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../include/conversation.php:1587 +msgid "Spam" +msgstr "Spam" -#: ../../include/attach.php:675 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +#: ../../include/conversation.php:1590 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" -#: ../../include/attach.php:689 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." +#: ../../include/conversation.php:1649 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" -#: ../../include/attach.php:847 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato." +#: ../../include/conversation.php:1658 +msgid "About" +msgstr "Informazioni" -#: ../../include/attach.php:860 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." +#: ../../include/conversation.php:1661 +msgid "Profile Details" +msgstr "Dettagli del profilo" -#: ../../include/attach.php:916 ../../include/attach.php:932 -msgid "Path not available." -msgstr "Percorso non disponibile." +#: ../../include/conversation.php:1677 +msgid "Files and Storage" +msgstr "Archivio file" -#: ../../include/attach.php:978 ../../include/attach.php:1130 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" +#: ../../include/conversation.php:1697 ../../include/conversation.php:1700 +#: ../../include/widgets.php:883 +msgid "Chatrooms" +msgstr "Chat" -#: ../../include/attach.php:1004 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" +#: ../../include/conversation.php:1710 ../../include/nav.php:105 +msgid "Bookmarks" +msgstr "Segnalibri" -#: ../../include/attach.php:1026 -msgid "Path not found." -msgstr "Percorso del file non trovato." +#: ../../include/conversation.php:1713 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" -#: ../../include/attach.php:1084 -msgid "mkdir failed." -msgstr "mkdir fallito." +#: ../../include/conversation.php:1723 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" -#: ../../include/attach.php:1088 -msgid "database storage failed." -msgstr "scrittura su database fallita." +#: ../../include/conversation.php:1788 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" -#: ../../include/attach.php:1136 -msgid "Empty path" -msgstr "La posizione è vuota" +#: ../../include/conversation.php:1791 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "Uscita effettuata." +#: ../../include/conversation.php:1794 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" + +#: ../../include/conversation.php:1797 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "Autenticazione fallita" +#: ../../include/conversation.php:1800 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "Accesso fallito." +#: ../../include/conversation.php:1803 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" -#: ../../include/activities.php:41 -msgid " and " -msgstr "e" +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +#: ../../include/widgets.php:46 ../../include/widgets.php:465 +#: ../../include/contact_widgets.php:91 +msgid "Categories" +msgstr "Categorie" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profilo pubblico" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Tag" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiato %2$s in “%3$s”" +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Parole chiave" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "ho" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha aggiornato %2$s cambiando %3$s." +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "ha" -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "voglio" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "vuole" -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gli piace" -#: ../../include/zot.php:3706 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "non gli piace" #: ../../include/features.php:50 msgid "General Features" @@ -9245,7 +9162,7 @@ msgstr "Chat ad accesso riservato" #: ../../include/features.php:62 msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato" +msgstr "Il servizio di chat con accesso riservato." #: ../../include/features.php:63 msgid "Smart Birthdays" @@ -9257,308 +9174,459 @@ msgid "" "across the planet." msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/features.php:64 -msgid "Expert Mode" -msgstr "Modalità esperto" - -#: ../../include/features.php:64 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate" - -#: ../../include/features.php:69 +#: ../../include/features.php:68 msgid "Post Composition Features" msgstr "Modalità di scrittura post" -#: ../../include/features.php:70 +#: ../../include/features.php:69 msgid "Large Photos" msgstr "Foto grandi" -#: ../../include/features.php:70 +#: ../../include/features.php:69 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/features.php:71 +#: ../../include/features.php:70 msgid "Automatically import channel content from other channels or feeds" msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "Even More Encryption" msgstr "Cifratura addizionale" -#: ../../include/features.php:72 +#: ../../include/features.php:71 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Enable Voting Tools" msgstr "Permetti i post con votazione" -#: ../../include/features.php:73 +#: ../../include/features.php:72 msgid "Provide a class of post which others can vote on" msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Disable Comments" msgstr "Disabilita i commenti" -#: ../../include/features.php:74 +#: ../../include/features.php:73 msgid "Provide the option to disable comments for a post" msgstr "Permetti di disabilitare i commenti" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Delayed Posting" msgstr "Pubblicazione ritardata" -#: ../../include/features.php:75 +#: ../../include/features.php:74 msgid "Allow posts to be published at a later date" msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "Suppress Duplicate Posts/Comments" msgstr "Impedisci post e commenti duplicati" -#: ../../include/features.php:76 +#: ../../include/features.php:75 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/features.php:82 +#: ../../include/features.php:81 msgid "Network and Stream Filtering" msgstr "Filtraggio dei contenuti" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Search by Date" msgstr "Ricerca per data" -#: ../../include/features.php:83 +#: ../../include/features.php:82 msgid "Ability to select posts by date ranges" msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/features.php:84 +#: ../../include/features.php:83 msgid "Enable management and selection of privacy groups" msgstr "Abilita i gruppi di canali" -#: ../../include/features.php:85 +#: ../../include/features.php:84 ../../include/widgets.php:283 +msgid "Saved Searches" +msgstr "Ricerche salvate" + +#: ../../include/features.php:84 msgid "Save search terms for re-use" msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Network Personal Tab" msgstr "Attività personale" -#: ../../include/features.php:86 +#: ../../include/features.php:85 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Network New Tab" msgstr "Contenuti nuovi" -#: ../../include/features.php:87 +#: ../../include/features.php:86 msgid "Enable tab to display all new Network activity" msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/features.php:88 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Filtro per affinità" + +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" + +#: ../../include/features.php:88 +msgid "Show friend and connection suggestions" +msgstr "Mostra suggerimenti di contatti e amici" + +#: ../../include/features.php:93 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" + +#: ../../include/features.php:94 +msgid "Community Tagging" +msgstr "Tag della comunità" + +#: ../../include/features.php:94 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" + +#: ../../include/features.php:95 +msgid "Post Categories" +msgstr "Categorie dei post" + +#: ../../include/features.php:95 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" + +#: ../../include/features.php:96 +msgid "Emoji Reactions" +msgstr "Risposte emoji" + +#: ../../include/features.php:96 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti di rispondere ai post con degli emoji" + +#: ../../include/features.php:97 ../../include/widgets.php:346 +#: ../../include/contact_widgets.php:53 +msgid "Saved Folders" +msgstr "Cartelle salvate" + +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" + +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Non mi piace" + +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" + +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Post con stella" + +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" + +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Nuvola di tag" + +#: ../../include/features.php:100 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" + +#: ../../include/features.php:109 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" + +#: ../../include/features.php:110 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" + +#: ../../include/features.php:120 +msgid "Premium Channel" +msgstr "Canale premium" + +#: ../../include/features.php:121 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" + +#: ../../include/features.php:128 +msgid "Advanced Directory Search" +msgstr "Ricerca avanzata sugli elenchi pubblici" + +#: ../../include/features.php:129 +msgid "Allows creation of complex directory search queries" +msgstr "Permette la creazione di ricerche complesse negli elenchi" + +#: ../../include/features.php:135 +msgid "Advanced Theme and Layout Settings" +msgstr "Impostazioni avanzate del tema e dei layout" + +#: ../../include/features.php:136 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permette una personalizzazione accurata del tema e dei layout" + +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" + +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Nuova app" + +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Suggerimenti" + +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Altro..." + +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." + +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" + +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Indirizzo del canale" + +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" + +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Note" + +#: ../../include/widgets.php:275 +msgid "Remove term" +msgstr "Rimuovi termine" + +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" +msgstr "Tutto" + +#: ../../include/widgets.php:390 +msgid "Archives" +msgstr "Archivi" + +#: ../../include/widgets.php:552 +msgid "Refresh" +msgstr "Aggiorna" + +#: ../../include/widgets.php:592 +msgid "Account settings" +msgstr "Il tuo account" -#: ../../include/features.php:88 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/widgets.php:598 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../include/features.php:89 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/widgets.php:607 +msgid "Additional features" +msgstr "Funzionalità opzionali" -#: ../../include/features.php:89 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/widgets.php:614 +msgid "Feature/Addon settings" +msgstr "Componenti aggiuntivi" -#: ../../include/features.php:90 -msgid "Show channel suggestions" -msgstr "Mostra alcuni canali che potrebbero interessarti" +#: ../../include/widgets.php:620 +msgid "Display settings" +msgstr "Aspetto" -#: ../../include/features.php:95 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/widgets.php:627 +msgid "Manage locations" +msgstr "Gestione repliche" -#: ../../include/features.php:96 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/widgets.php:634 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../include/features.php:96 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/widgets.php:640 +msgid "Connected apps" +msgstr "App connesse" -#: ../../include/features.php:97 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/widgets.php:664 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" -#: ../../include/features.php:97 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/widgets.php:693 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" -#: ../../include/features.php:98 -msgid "Emoji Reactions" -msgstr "Reazioni emoji" +#: ../../include/widgets.php:695 +msgid "Combined View" +msgstr "Vista combinata" -#: ../../include/features.php:98 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti le reazioni emoji ai post" +#: ../../include/widgets.php:700 ../../include/nav.php:201 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/features.php:99 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/widgets.php:705 ../../include/nav.php:202 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/features.php:100 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/widgets.php:710 ../../include/nav.php:203 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/features.php:100 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/widgets.php:727 ../../include/widgets.php:739 +msgid "Conversations" +msgstr "Conversazioni" -#: ../../include/features.php:101 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/widgets.php:731 +msgid "Received Messages" +msgstr "Ricevuti" -#: ../../include/features.php:101 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/widgets.php:735 +msgid "Sent Messages" +msgstr "Inviati" -#: ../../include/features.php:102 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/widgets.php:749 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../include/features.php:102 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" +#: ../../include/widgets.php:767 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../include/features.php:111 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/widgets.php:793 +msgid "Events Tools" +msgstr "Gestione eventi" -#: ../../include/features.php:112 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" +#: ../../include/widgets.php:794 +msgid "Export Calendar" +msgstr "Esporta calendario" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tag" +#: ../../include/widgets.php:795 +msgid "Import Calendar" +msgstr "Importa calendario" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Parole chiave" +#: ../../include/widgets.php:887 +msgid "Overview" +msgstr "Riepilogo" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "ho" +#: ../../include/widgets.php:894 +msgid "Chat Members" +msgstr "Partecipanti" -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "ha" +#: ../../include/widgets.php:916 +msgid "Wiki List" +msgstr "Elenco wiki" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "voglio" +#: ../../include/widgets.php:954 +msgid "Wiki Pages" +msgstr "Pagine wiki" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "vuole" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gli piace" +#: ../../include/widgets.php:1012 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "non gli piace" +#: ../../include/widgets.php:1158 ../../include/widgets.php:1270 +msgid "photo/image" +msgstr "foto/immagine" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/widgets.php:1213 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" +#: ../../include/widgets.php:1364 +msgid "Rating Tools" +msgstr "Valutazione" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../include/widgets.php:1368 ../../include/widgets.php:1370 +msgid "Rate Me" +msgstr "Valutami" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../include/widgets.php:1373 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../include/widgets.php:1457 +msgid "Forums" +msgstr "Forum" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../include/widgets.php:1486 +msgid "Tasks" +msgstr "Attività" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." +#: ../../include/widgets.php:1495 +msgid "Documentation" +msgstr "Guida" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" +#: ../../include/widgets.php:1497 +msgid "Project/Site Information" +msgstr "Informazioni sul sito/progetto" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +#: ../../include/widgets.php:1498 +msgid "For Members" +msgstr "Per gli utenti" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../include/widgets.php:1499 +msgid "For Administrators" +msgstr "Per gli amministratori" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +#: ../../include/widgets.php:1500 +msgid "For Developers" +msgstr "Per sviluppatori" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account approvato." +#: ../../include/widgets.php:1524 ../../include/widgets.php:1562 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/widgets.php:1530 +msgid "Inspect queue" +msgstr "Coda di attesa" -#: ../../include/account.php:739 ../../include/account.php:741 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../include/widgets.php:1532 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../include/account.php:747 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../include/widgets.php:1557 ../../include/nav.php:221 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/account.php:752 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/widgets.php:1558 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:878 -#: ../../include/bbcode.php:881 ../../include/bbcode.php:886 -#: ../../include/bbcode.php:889 ../../include/bbcode.php:892 -#: ../../include/bbcode.php:895 ../../include/bbcode.php:900 -#: ../../include/bbcode.php:903 ../../include/bbcode.php:908 -#: ../../include/bbcode.php:911 ../../include/bbcode.php:914 -#: ../../include/bbcode.php:917 +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 msgid "Image/photo" msgstr "Immagine" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:928 +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 msgid "Encrypted content" msgstr "Contenuto cifrato" @@ -9587,7 +9655,7 @@ msgstr "Clicca per aprire/chiudere" msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:866 +#: ../../include/bbcode.php:869 msgid "$1 wrote:" msgstr "$1 ha scritto:" @@ -9669,181 +9737,196 @@ msgstr "Impossibile determinare il mittente." msgid "Stored post could not be verified." msgstr "Non è stato possibile verificare il post." -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Non specificato" + +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necessita di un intervento" + +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completato" + +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In corso" + +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Annullato" -#: ../../include/nav.php:84 ../../include/nav.php:117 ../../boot.php:1737 +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1737 msgid "Logout" msgstr "Esci" -#: ../../include/nav.php:84 ../../include/nav.php:117 +#: ../../include/nav.php:85 ../../include/nav.php:118 msgid "End this session" msgstr "Chiudi questa sessione" -#: ../../include/nav.php:87 ../../include/nav.php:148 +#: ../../include/nav.php:88 ../../include/nav.php:149 msgid "Home" msgstr "Bacheca" -#: ../../include/nav.php:87 +#: ../../include/nav.php:88 msgid "Your posts and conversations" msgstr "I tuoi post e conversazioni" -#: ../../include/nav.php:88 +#: ../../include/nav.php:89 msgid "Your profile page" msgstr "Il tuo profilo" -#: ../../include/nav.php:90 +#: ../../include/nav.php:91 msgid "Manage/Edit profiles" msgstr "Gestisci i tuoi profili" -#: ../../include/nav.php:92 +#: ../../include/nav.php:93 msgid "Edit your profile" msgstr "Modifica il tuo profilo" -#: ../../include/nav.php:94 +#: ../../include/nav.php:95 msgid "Your photos" msgstr "Le tue foto" -#: ../../include/nav.php:95 +#: ../../include/nav.php:96 msgid "Your files" msgstr "I tuoi file" -#: ../../include/nav.php:98 +#: ../../include/nav.php:99 msgid "Your chatrooms" msgstr "Le tue chat" -#: ../../include/nav.php:104 +#: ../../include/nav.php:105 msgid "Your bookmarks" msgstr "I tuoi segnalibri" -#: ../../include/nav.php:108 +#: ../../include/nav.php:109 msgid "Your webpages" msgstr "Le tue pagine web" -#: ../../include/nav.php:110 +#: ../../include/nav.php:111 msgid "Your wiki" msgstr "La tua wiki" -#: ../../include/nav.php:114 +#: ../../include/nav.php:115 msgid "Sign in" msgstr "Accedi" -#: ../../include/nav.php:131 +#: ../../include/nav.php:132 #, php-format msgid "%s - click to logout" msgstr "%s - clicca per uscire" -#: ../../include/nav.php:134 +#: ../../include/nav.php:135 msgid "Remote authentication" msgstr "Accedi dal tuo hub" -#: ../../include/nav.php:134 +#: ../../include/nav.php:135 msgid "Click to authenticate to your home hub" msgstr "Clicca per farti riconoscere dal tuo hub principale" -#: ../../include/nav.php:148 +#: ../../include/nav.php:149 msgid "Home Page" msgstr "Bacheca" -#: ../../include/nav.php:151 +#: ../../include/nav.php:152 msgid "Create an account" msgstr "Crea un account" -#: ../../include/nav.php:163 +#: ../../include/nav.php:164 msgid "Help and documentation" msgstr "Guida e documentazione" -#: ../../include/nav.php:167 +#: ../../include/nav.php:168 msgid "Applications, utilities, links, games" msgstr "Applicazioni, utilità, link, giochi" -#: ../../include/nav.php:169 +#: ../../include/nav.php:170 msgid "Search site @name, #tag, ?docs, content" msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" -#: ../../include/nav.php:171 +#: ../../include/nav.php:172 msgid "Channel Directory" msgstr "Elenchi pubblici dei canali" -#: ../../include/nav.php:183 +#: ../../include/nav.php:184 msgid "Your grid" msgstr "La tua rete" -#: ../../include/nav.php:184 +#: ../../include/nav.php:185 msgid "Mark all grid notifications seen" msgstr "Segna come lette le notifiche della tua rete" -#: ../../include/nav.php:186 +#: ../../include/nav.php:187 msgid "Channel home" msgstr "Bacheca del canale" -#: ../../include/nav.php:187 +#: ../../include/nav.php:188 msgid "Mark all channel notifications seen" msgstr "Segna come lette le notifiche del canale" -#: ../../include/nav.php:193 +#: ../../include/nav.php:194 msgid "Notices" msgstr "Avvisi" -#: ../../include/nav.php:193 +#: ../../include/nav.php:194 msgid "Notifications" msgstr "Notifiche" -#: ../../include/nav.php:194 +#: ../../include/nav.php:195 msgid "See all notifications" msgstr "Vedi tutte le notifiche" -#: ../../include/nav.php:197 +#: ../../include/nav.php:198 msgid "Private mail" msgstr "Messaggi privati" -#: ../../include/nav.php:198 +#: ../../include/nav.php:199 msgid "See all private messages" msgstr "Guarda tutti i messaggi privati" -#: ../../include/nav.php:199 +#: ../../include/nav.php:200 msgid "Mark all private messages seen" msgstr "Segna come letti tutti i messaggi privati" -#: ../../include/nav.php:205 +#: ../../include/nav.php:206 msgid "Event Calendar" msgstr "Calendario" -#: ../../include/nav.php:206 +#: ../../include/nav.php:207 msgid "See all events" msgstr "Guarda tutti gli eventi" -#: ../../include/nav.php:207 +#: ../../include/nav.php:208 msgid "Mark all events seen" msgstr "Marca come letti tutti gli eventi" -#: ../../include/nav.php:210 +#: ../../include/nav.php:211 msgid "Manage Your Channels" msgstr "Gestisci i tuoi canali" -#: ../../include/nav.php:212 +#: ../../include/nav.php:213 msgid "Account/Channel Settings" msgstr "Impostazioni dell'account e del canale" -#: ../../include/nav.php:220 +#: ../../include/nav.php:221 msgid "Site Setup and Configuration" msgstr "Installazione e configurazione del sito" -#: ../../include/nav.php:256 +#: ../../include/nav.php:257 msgid "@name, #tag, ?doc, content" msgstr "@nome, #tag, ?guida, contenuto" -#: ../../include/nav.php:257 +#: ../../include/nav.php:258 msgid "Please wait..." msgstr "Attendere..." -#: ../../view/theme/redbasic/php/config.php:6 +#: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" msgstr "Focus (predefinito)" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index cceeeda4e..6d75728bb 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -72,150 +72,6 @@ App::$strings["Requested profile is not available."] = "Il profilo richiesto non App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -App::$strings["recipient not found"] = "Destinatario non trovato"; -App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; -App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; -App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; -App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -App::$strings["Yes"] = "Sì"; -App::$strings["No"] = "No"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -App::$strings["Submit"] = "Salva"; -App::$strings["Public Hubs"] = "Hub pubblici"; -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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; -App::$strings["Location"] = "Posizione geografica"; -App::$strings["View"] = "Guarda"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; -App::$strings["Passwords do not match."] = "Le password non corrispondono."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; -App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; -App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; -App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; -App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; -App::$strings["
    Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; -App::$strings["Terms of Service"] = "Condizioni d'Uso"; -App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; -App::$strings["Your email address"] = "Il tuo indirizzo email"; -App::$strings["Choose a password"] = "Scegli una password"; -App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; -App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; -App::$strings["Name or caption"] = "Nome o titolo"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; -App::$strings["Choose a short nickname"] = "Scegli un nome breve"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; -App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; -App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; -App::$strings["no"] = "no"; -App::$strings["yes"] = "sì"; -App::$strings["Registration"] = "Registrazione"; -App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; -App::$strings["Register"] = "Registrati"; -App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -App::$strings["Public access denied."] = "Accesso pubblico negato."; -App::$strings["Item not found."] = "Elemento non trovato."; -App::$strings["Photos"] = "Foto"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["New"] = "Novità"; -App::$strings["All"] = "Tutti"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["All Connections"] = "Tutti i contatti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["Pending approval"] = "In attesa di conferma"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Delete connection"] = "Elimina il contatto"; -App::$strings["Channel address"] = "Indirizzo del canale"; -App::$strings["Network"] = "Network"; -App::$strings["Status"] = "Stato"; -App::$strings["Connected"] = "In contatto"; -App::$strings["Approve connection"] = "Approva questo contatto"; -App::$strings["Approve"] = "Approva"; -App::$strings["Ignore connection"] = "Ignora il contatto"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Attività recenti"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Connections search"] = "Ricerca tra i contatti"; -App::$strings["Find"] = "Cerca"; -App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Cover Photos"] = "Copertine del canale"; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["female"] = "femmina"; -App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["male"] = "maschio"; -App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["cover photo"] = "Copertina del canale"; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Upload Cover Photo"] = "Carica una copertina"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "salta questo passaggio"; -App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -App::$strings["Crop Image"] = "Ritaglia immagine"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -App::$strings["Done Editing"] = "Modifica terminata"; App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; @@ -243,6 +99,7 @@ App::$strings["Your account email address must match this in order to use the we App::$strings["Website URL"] = "URL completo del sito"; App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; +App::$strings["Submit"] = "Salva"; App::$strings["Basic/Minimal Social Networking"] = "Social network basilare"; App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; App::$strings["Professional"] = "Professionale"; @@ -306,117 +163,53 @@ App::$strings["The database configuration file \".htconfig.php\" could not be wr App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; App::$strings["

    What next

    "] = "

    I prossimi passi

    "; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; -App::$strings["%d rating"] = array( - 0 => "%d valutazione", - 1 => "%d valutazioni", -); -App::$strings["Gender: "] = "Sesso:"; -App::$strings["Status: "] = "Stato:"; -App::$strings["Homepage: "] = "Homepage:"; -App::$strings["Age:"] = "Età:"; -App::$strings["Location:"] = "Luogo:"; -App::$strings["Description:"] = "Descrizione:"; -App::$strings["Hometown:"] = "Città dove vivo:"; -App::$strings["About:"] = "Informazioni:"; -App::$strings["Connect"] = "Aggiungi"; -App::$strings["Public Forum:"] = "Forum pubblico:"; -App::$strings["Keywords: "] = "Parole chiave:"; -App::$strings["Don't suggest"] = "Non fornire suggerimenti"; -App::$strings["Common connections:"] = "Contatti in comune:"; -App::$strings["Global Directory"] = "Elenchi pubblici globali"; -App::$strings["Local Directory"] = "Elenco canali su questo hub"; -App::$strings["Finding:"] = "Ricerca:"; -App::$strings["Channel Suggestions"] = "Canali suggeriti"; -App::$strings["next page"] = "pagina successiva"; -App::$strings["previous page"] = "pagina precedente"; -App::$strings["Sort options"] = "Opzioni di ordinamento"; -App::$strings["Alphabetic"] = "Alfabetico"; -App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; -App::$strings["Newest to Oldest"] = "Prima i più recenti"; -App::$strings["Oldest to Newest"] = "Prima i più vecchi"; -App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["This site is not a directory server"] = "Questo non è un directory server"; -App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; -App::$strings["Item not found"] = "Elemento non trovato"; -App::$strings["Block Name"] = "Nome del block"; -App::$strings["Insert web link"] = "Inserisci un indirizzo web"; -App::$strings["Title (optional)"] = "Titolo (facoltativo)"; -App::$strings["Edit Block"] = "Modifica il block"; -App::$strings["Layout Name"] = "Nome layout"; -App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; -App::$strings["Edit Layout"] = "Modifica il layout"; -App::$strings["Page link"] = "Link alla pagina"; -App::$strings["Edit Webpage"] = "Modifica la pagina web"; -App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; -App::$strings["Unable to create menu."] = "Impossibile creare il menù."; -App::$strings["Menu Name"] = "Nome del menu"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; -App::$strings["Menu Title"] = "Titolo del menu"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; -App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; -App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; -App::$strings["Submit and proceed"] = "Salva e procedi"; -App::$strings["Menus"] = "Menù"; -App::$strings["Drop"] = "Elimina"; -App::$strings["Created"] = "Creato"; -App::$strings["Edited"] = "Modificato"; -App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; -App::$strings["Delete this menu"] = "Elimina questo menù"; -App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; -App::$strings["Edit this menu"] = "Modifica questo menù"; -App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; -App::$strings["Menu not found."] = "Menù non trovato."; -App::$strings["Edit Menu"] = "Modifica menù"; -App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; -App::$strings["Menu name"] = "Nome del menù"; -App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; -App::$strings["Menu title"] = "Titolo del menù"; -App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; -App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; -App::$strings["Not found."] = "Non trovato."; -App::$strings["App installed."] = "App installata"; -App::$strings["Malformed app."] = "L'app contiene errori"; -App::$strings["Embed code"] = "Inserisci il codice"; -App::$strings["Edit App"] = "Modifica app"; -App::$strings["Create App"] = "Crea una app"; -App::$strings["Name of app"] = "Nome app"; -App::$strings["Required"] = "Obbligatorio"; -App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; -App::$strings["Description"] = "Descrizione"; -App::$strings["Photo icon URL"] = "URL icona"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; -App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -App::$strings["Version ID"] = "ID versione"; -App::$strings["Price of app"] = "Prezzo app"; -App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; -App::$strings["Documentation Search"] = "Ricerca nella guida"; -App::$strings["Help:"] = "Guida:"; -App::$strings["Help"] = "Guida"; -App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; -App::$strings["Item not available."] = "Elemento non disponibile."; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; -App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; -App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; -App::$strings["Visible to:"] = "Visibile a:"; -App::$strings["Permission Denied."] = "Permesso negato."; -App::$strings["File not found."] = "File non trovato."; -App::$strings["Edit file permissions"] = "Modifica i permessi del file"; -App::$strings["Permissions"] = "Permessi"; -App::$strings["Set/edit permissions"] = "Modifica i permessi"; -App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; -App::$strings["Return to file list"] = "Torna all'elenco dei file"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; -App::$strings["Share this file"] = "Condividi questo file"; -App::$strings["Show URL to this file"] = "Mostra l'URL del file"; -App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; +App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; +App::$strings["Passwords do not match."] = "Le password non corrispondono."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata."; +App::$strings["Your registration is pending approval by the site owner."] = "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub."; +App::$strings["Your registration can not be processed."] = "La tua registrazione non puo' essere processata."; +App::$strings["Registration on this hub is disabled."] = "Su questo hub la registrazione non è permessa."; +App::$strings["Registration on this hub is by approval only."] = "La registrazione su questo hub è soggetta ad approvazione."; +App::$strings["Register at another affiliated hub."] = "Registrati su un altro server hubzilla."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani."; +App::$strings["Terms of Service"] = "Condizioni d'Uso"; +App::$strings["I accept the %s for this website"] = "Accetto le %s di questo sito"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ho più di 13 anni e accetto le %s di questo sito"; +App::$strings["Your email address"] = "Il tuo indirizzo email"; +App::$strings["Choose a password"] = "Scegli una password"; +App::$strings["Please re-enter your password"] = "Ripeti la password per verifica"; +App::$strings["Please enter your invitation code"] = "Inserisci il codice dell'invito"; +App::$strings["Name or caption"] = "Nome o titolo"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\""; +App::$strings["Choose a short nickname"] = "Scegli un nome breve"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s"; +App::$strings["Channel role and privacy"] = "Tipo di canale e privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Scegli il tipo di canale che vuoi e la privacy da applicare."; +App::$strings["Read more about roles"] = "Maggiori informazioni sui ruoli"; +App::$strings["no"] = "no"; +App::$strings["yes"] = "sì"; +App::$strings["Registration"] = "Registrazione"; +App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; +App::$strings["Register"] = "Registrati"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; +App::$strings["Yes"] = "Sì"; +App::$strings["No"] = "No"; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; App::$strings["Name is required"] = "Il nome è obbligatorio"; App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; App::$strings["Update"] = "Aggiorna"; @@ -426,6 +219,7 @@ App::$strings["Token saved."] = "Token salvato."; App::$strings["Not valid email."] = "Email non valida."; App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; +App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; App::$strings["Password verification failed."] = "Verifica della password fallita."; App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; @@ -434,6 +228,7 @@ App::$strings["Password update failed. Please try again."] = "Modifica password App::$strings["Friends"] = "Amici"; App::$strings["Settings updated."] = "Impostazioni aggiornate."; App::$strings["Add application"] = "Aggiungi una app"; +App::$strings["Cancel"] = "Annulla"; App::$strings["Name of application"] = "Nome dell'applicazione"; App::$strings["Consumer Key"] = "Consumer Key"; App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; @@ -449,15 +244,23 @@ App::$strings["No name"] = "Nessun nome"; App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; +App::$strings["Beginner/Basic"] = "Principiante"; +App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; +App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; +App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; +App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te"; App::$strings["Account Settings"] = "Il tuo account"; App::$strings["Current Password"] = "Password attuale"; App::$strings["Enter New Password"] = "Nuova password"; App::$strings["Confirm New Password"] = "Conferma la nuova password"; App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; +App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio"; App::$strings["Email Address:"] = "Indirizzo email:"; App::$strings["Remove Account"] = "Elimina l'account"; App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["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."] = "Usa questo modulo per creare credenziali temporanee (token) per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; +App::$strings["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."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; App::$strings["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:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; App::$strings["Login Name"] = "Nome utente"; @@ -508,6 +311,7 @@ App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; App::$strings["Anybody on the internet"] = "Chiunque su internet"; App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; +App::$strings["or"] = "o"; App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; App::$strings["Channel Settings"] = "Impostazioni del canale"; App::$strings["Basic Settings"] = "Impostazioni di base"; @@ -529,7 +333,7 @@ App::$strings["Private - default private, never open or public"] = "Pri App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; -App::$strings["Advanced Privacy Settings"] = "Impostazioni di privacy avanzate"; +App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; @@ -537,7 +341,7 @@ App::$strings["This website does not expire imported content."] = "I contenuti d App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te."; App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; -App::$strings["Default Post and Publish Permissions"] = "Permessi predefiniti per postare e pubblicare"; +App::$strings["Default Access Control List (ACL)"] = "Lista di accesso ai contenuti (ACL)"; App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; @@ -576,7 +380,6 @@ App::$strings["Notify me of events this many days in advance"] = "Giorni di anti App::$strings["Must be greater than 0"] = "Maggiore di 0"; App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in Impostazioni > Funzionalità opzionali)"; App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; @@ -586,199 +389,15 @@ App::$strings["Remove Channel"] = "Elimina questo canale"; App::$strings["Remove this channel."] = "Elimina questo canale."; App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Gruppo di canali creato."; -App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; -App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; -App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; -App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; -App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; -App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; -App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; -App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; -App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; -App::$strings["Members"] = "Membri"; -App::$strings["All Connected Channels"] = "Tutti i canali connessi"; -App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; -App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["Previous"] = "Precendente"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Remove"] = "Rimuovi"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Caption"] = "Didascalia"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; -App::$strings["Share"] = "Condividi"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; -App::$strings["Preview"] = "Anteprima"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; -App::$strings["webpage"] = "pagina web"; -App::$strings["block"] = "block"; -App::$strings["layout"] = "layout"; -App::$strings["menu"] = "menu"; -App::$strings["%s element installed"] = "%s elemento installato"; -App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Nothing to import."] = "Non c'è niente da importare."; -App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; -App::$strings["Import completed"] = "Importazione completata"; -App::$strings["Import Items"] = "Importa i contenuti"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; -App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; -App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; -App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; -App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; -App::$strings["%d message sent."] = array( - 0 => "%d messaggio inviato.", - 1 => "%d messaggi inviati.", -); -App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; -App::$strings["Send invitations"] = "Spedisci inviti"; -App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; -App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; -App::$strings["or visit"] = "oppure visita"; -App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; -App::$strings["Location not found."] = "Indirizzo non trovato."; -App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; -App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; -App::$strings["No locations found."] = "Nessun indirizzo trovato."; -App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; -App::$strings["Address"] = "Indirizzo"; -App::$strings["Primary"] = "Primario"; -App::$strings["Sync Now"] = "Sincronizza ora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; -App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; -App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; -App::$strings["Invalid request."] = "Richiesta non valida."; -App::$strings["channel"] = "il canale"; -App::$strings["thing"] = "Oggetto"; -App::$strings["Channel unavailable."] = "Canale non trovato."; -App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; -App::$strings["photo"] = "la foto"; -App::$strings["status"] = "il messaggio di stato"; -App::$strings["event"] = "l'evento"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; -App::$strings["Action completed."] = "Comando completato."; -App::$strings["Thank you."] = "Grazie."; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; -App::$strings["Create a new channel"] = "Crea un nuovo canale"; -App::$strings["Create New"] = "Crea nuova"; -App::$strings["Channel Manager"] = "Gestione canali"; -App::$strings["Current Channel"] = "Canale attuale"; -App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; -App::$strings["Default Channel"] = "Canale predefinito"; -App::$strings["Make Default"] = "Rendi predefinito"; -App::$strings["%d new messages"] = "%d nuovi messaggi"; -App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; -App::$strings["Delegated Channel"] = "Canale delegato"; -App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; -App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; -App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; -App::$strings["Menu Item Permissions"] = "Permessi del menu"; -App::$strings["Link Name"] = "Nome link"; -App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; -App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; -App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; -App::$strings["Order in list"] = "Ordine dell'elenco"; -App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; -App::$strings["Submit and finish"] = "Salva e termina"; -App::$strings["Submit and continue"] = "Salva e continua"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Destinazione link"; -App::$strings["Edit menu"] = "Modifica il menù"; -App::$strings["Edit element"] = "Modifica l'elemento"; -App::$strings["Drop element"] = "Elimina l'elemento"; -App::$strings["New element"] = "Nuovo elemento"; -App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; -App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; -App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; -App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; -App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; -App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; -App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; -App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; -App::$strings["Link text"] = "Testo del link"; +App::$strings["Photos"] = "Foto"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Save"] = "Salva"; App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["# Accounts"] = "# account"; App::$strings["# blocked accounts"] = "# account bloccati"; App::$strings["# expired accounts"] = "# account scaduti"; @@ -837,10 +456,6 @@ App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X g App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -App::$strings["Allowed email domains"] = "Domini email consentiti"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; -App::$strings["Not allowed email domains"] = "Domini email non consentiti"; -App::$strings["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."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; App::$strings["Force publish"] = "Forza la publicazione del profilo"; @@ -873,6 +488,7 @@ App::$strings["No server found"] = "Server non trovato"; App::$strings["ID"] = "ID"; App::$strings["for channel"] = "per il canale"; App::$strings["on server"] = "sul server"; +App::$strings["Status"] = "Stato"; App::$strings["Server"] = "Server"; App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; @@ -883,8 +499,12 @@ App::$strings["Block public"] = "Blocca pagine pubbliche"; App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; -App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; +App::$strings["Allowed email domains"] = "Domini email consentiti"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; +App::$strings["Not allowed email domains"] = "Domini email non consentiti"; +App::$strings["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."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; @@ -927,6 +547,7 @@ App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di App::$strings["Request date"] = "Data richiesta"; App::$strings["Email"] = "Email"; App::$strings["No registrations."] = "Nessuna registrazione."; +App::$strings["Approve"] = "Approva"; App::$strings["Deny"] = "Nega"; App::$strings["Block"] = "Blocca"; App::$strings["Unblock"] = "Sblocca"; @@ -941,84 +562,462 @@ App::$strings["%s channel censored/uncensored"] = array( 0 => "Censura modificata per %s canale", 1 => "Censura modificata per %s canali", ); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s canale permette/non permette codice nei contenuti", - 1 => "%s canali permettono/non permettono codice nei contenuti", +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s canale permette/non permette codice nei contenuti", + 1 => "%s canali permettono/non permettono codice nei contenuti", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s canale è stato rimosso", + 1 => "%s canali sono stati rimossi", +); +App::$strings["Channel not found"] = "Canale non trovato"; +App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; +App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; +App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; +App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; +App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; +App::$strings["Channels"] = "Canali"; +App::$strings["Censor"] = "Applica censura"; +App::$strings["Uncensor"] = "Rimuovi censura"; +App::$strings["Allow Code"] = "Permetti codice"; +App::$strings["Disallow Code"] = "Non permettere codice"; +App::$strings["Channel"] = "Canale"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Indirizzo"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["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?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; +App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; +App::$strings["Disable"] = "Disattiva"; +App::$strings["Enable"] = "Attiva"; +App::$strings["Plugins"] = "Plugin"; +App::$strings["Toggle"] = "Attiva/disattiva"; +App::$strings["Settings"] = "Impostazioni"; +App::$strings["Author: "] = "Autore:"; +App::$strings["Maintainer: "] = "Gestore:"; +App::$strings["Minimum project version: "] = "Minima versione hubzilla"; +App::$strings["Maximum project version: "] = "Massima versione hubzilla"; +App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; +App::$strings["Compatible Server Roles: "] = "Ruoli compatibili per questo server"; +App::$strings["Requires: "] = "Necessita di:"; +App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; +App::$strings["Plugin repo git URL"] = "URL git del repository del plugin"; +App::$strings["Custom repo name"] = "Nome repository personalizzato"; +App::$strings["(optional)"] = "(facoltativo)"; +App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; +App::$strings["Install new repo"] = "Installa un nuovo repository"; +App::$strings["Install"] = "Installa"; +App::$strings["Manage Repos"] = "Gestisci i repository"; +App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; +App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; +App::$strings["Switch branch"] = "Cambia branch"; +App::$strings["Remove"] = "Rimuovi"; +App::$strings["No themes found."] = "Nessun tema trovato."; +App::$strings["Screenshot"] = "Istantanea dello schermo"; +App::$strings["Themes"] = "Temi"; +App::$strings["[Experimental]"] = "[Sperimentale]"; +App::$strings["[Unsupported]"] = "[Non supportato]"; +App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; +App::$strings["Logs"] = "Log"; +App::$strings["Clear"] = "Pulisci"; +App::$strings["Debugging"] = "Debugging"; +App::$strings["Log file"] = "File di log"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; +App::$strings["Log level"] = "Livello di log"; +App::$strings["New Profile Field"] = "Nuovo campo del profilo"; +App::$strings["Field nickname"] = "Nome breve del campo"; +App::$strings["System name of field"] = "Nome di sistema del campo"; +App::$strings["Input type"] = "Tipo di dati"; +App::$strings["Field Name"] = "Nome del campo"; +App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; +App::$strings["Help text"] = "Testo di aiuto"; +App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; +App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; +App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; +App::$strings["Profile Fields"] = "Campi del profilo"; +App::$strings["Basic Profile Fields"] = "Campi base del profilo"; +App::$strings["Advanced Profile Fields"] = "Campi avanzati del profilo"; +App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base)"; +App::$strings["All available fields"] = "Tutti i campi disponibili"; +App::$strings["Custom Fields"] = "Campi personalizzati"; +App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; +App::$strings["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["New"] = "Novità"; +App::$strings["All"] = "Tutti"; +App::$strings["New Connections"] = "Nuovi contatti"; +App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +App::$strings["All Connections"] = "Tutti i contatti"; +App::$strings["Show all connections"] = "Mostra tutti i contatti"; +App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica il contatto"; +App::$strings["Delete connection"] = "Elimina il contatto"; +App::$strings["Channel address"] = "Indirizzo del canale"; +App::$strings["Network"] = "Network"; +App::$strings["Connected"] = "In contatto"; +App::$strings["Approve connection"] = "Approva questo contatto"; +App::$strings["Ignore connection"] = "Ignora il contatto"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Attività recenti"; +App::$strings["Connections"] = "Contatti"; +App::$strings["Search"] = "Cerca"; +App::$strings["Search your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Find"] = "Cerca"; +App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Cover Photos"] = "Copertine del canale"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +App::$strings["female"] = "femmina"; +App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["male"] = "maschio"; +App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["cover photo"] = "Copertina del canale"; +App::$strings["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Upload Cover Photo"] = "Carica una copertina"; +App::$strings["skip this step"] = "salta questo passaggio"; +App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +App::$strings["Crop Image"] = "Ritaglia immagine"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +App::$strings["Done Editing"] = "Modifica terminata"; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +App::$strings["recipient not found"] = "Destinatario non trovato"; +App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; +App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +App::$strings["mail delivered"] = "messaggio recapitato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +App::$strings["Options"] = "Opzioni"; +App::$strings["Redeliver"] = "Reinvia"; +App::$strings["Public access denied."] = "Accesso pubblico negato."; +App::$strings["%d rating"] = array( + 0 => "%d valutazione", + 1 => "%d valutazioni", +); +App::$strings["Gender: "] = "Sesso:"; +App::$strings["Status: "] = "Stato:"; +App::$strings["Homepage: "] = "Homepage:"; +App::$strings["Age:"] = "Età:"; +App::$strings["Location:"] = "Luogo:"; +App::$strings["Description:"] = "Descrizione:"; +App::$strings["Hometown:"] = "Città dove vivo:"; +App::$strings["About:"] = "Informazioni:"; +App::$strings["Connect"] = "Aggiungi"; +App::$strings["Public Forum:"] = "Forum pubblico:"; +App::$strings["Keywords: "] = "Parole chiave:"; +App::$strings["Don't suggest"] = "Non fornire suggerimenti"; +App::$strings["Common connections:"] = "Contatti in comune:"; +App::$strings["Global Directory"] = "Elenchi pubblici globali"; +App::$strings["Local Directory"] = "Elenco canali su questo hub"; +App::$strings["Finding:"] = "Ricerca:"; +App::$strings["Channel Suggestions"] = "Canali suggeriti"; +App::$strings["next page"] = "pagina successiva"; +App::$strings["previous page"] = "pagina precedente"; +App::$strings["Sort options"] = "Opzioni di ordinamento"; +App::$strings["Alphabetic"] = "Alfabetico"; +App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; +App::$strings["Newest to Oldest"] = "Prima i più recenti"; +App::$strings["Oldest to Newest"] = "Prima i più vecchi"; +App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; +App::$strings["This site is not a directory server"] = "Questo non è un directory server"; +App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; +App::$strings["Item not found"] = "Elemento non trovato"; +App::$strings["Block Name"] = "Nome del block"; +App::$strings["Insert web link"] = "Inserisci un indirizzo web"; +App::$strings["Title (optional)"] = "Titolo (facoltativo)"; +App::$strings["Edit Block"] = "Modifica il block"; +App::$strings["Layout Name"] = "Nome layout"; +App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; +App::$strings["Edit Layout"] = "Modifica il layout"; +App::$strings["Page link"] = "Link alla pagina"; +App::$strings["Edit Webpage"] = "Modifica la pagina web"; +App::$strings["Unable to update menu."] = "Impossibile aggiornare il menù."; +App::$strings["Unable to create menu."] = "Impossibile creare il menù."; +App::$strings["Menu Name"] = "Nome del menu"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nome unico (non visibile sulla pagina) - obbligatorio"; +App::$strings["Menu Title"] = "Titolo del menu"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visibile sulla pagina - lascia vuoto per non avere un titolo"; +App::$strings["Allow Bookmarks"] = "Permetti i segnalibri"; +App::$strings["Menu may be used to store saved bookmarks"] = "Puoi salvare i segnalibri nei menù"; +App::$strings["Submit and proceed"] = "Salva e procedi"; +App::$strings["Menus"] = "Menù"; +App::$strings["Drop"] = "Elimina"; +App::$strings["Created"] = "Creato"; +App::$strings["Edited"] = "Modificato"; +App::$strings["Bookmarks allowed"] = "Permetti segnalibri"; +App::$strings["Delete this menu"] = "Elimina questo menù"; +App::$strings["Edit menu contents"] = "Modifica i contenuti del menù"; +App::$strings["Edit this menu"] = "Modifica questo menù"; +App::$strings["Menu could not be deleted."] = "Il menù non può essere eliminato."; +App::$strings["Menu not found."] = "Menù non trovato."; +App::$strings["Edit Menu"] = "Modifica menù"; +App::$strings["Add or remove entries to this menu"] = "Aggiungi o rimuovi elementi di questo menù"; +App::$strings["Menu name"] = "Nome del menù"; +App::$strings["Must be unique, only seen by you"] = "Deve essere unico, lo vedrai solo tu"; +App::$strings["Menu title"] = "Titolo del menù"; +App::$strings["Menu title as seen by others"] = "Titolo del menù come comparirà a tutti"; +App::$strings["Allow bookmarks"] = "Permetti l'invio di segnalibri"; +App::$strings["Not found."] = "Non trovato."; +App::$strings["App installed."] = "App installata"; +App::$strings["Malformed app."] = "L'app contiene errori"; +App::$strings["Embed code"] = "Inserisci il codice"; +App::$strings["Edit App"] = "Modifica app"; +App::$strings["Create App"] = "Crea una app"; +App::$strings["Name of app"] = "Nome app"; +App::$strings["Required"] = "Obbligatorio"; +App::$strings["Location (URL) of app"] = "Indirizzo (URL) della app"; +App::$strings["Description"] = "Descrizione"; +App::$strings["Photo icon URL"] = "URL icona"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixel - facoltativa"; +App::$strings["Categories (optional, comma separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +App::$strings["Version ID"] = "ID versione"; +App::$strings["Price of app"] = "Prezzo app"; +App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["Item not available."] = "Elemento non disponibile."; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; +App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; +App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +App::$strings["Visible to:"] = "Visibile a:"; +App::$strings["Permission Denied."] = "Permesso negato."; +App::$strings["File not found."] = "File non trovato."; +App::$strings["Edit file permissions"] = "Modifica i permessi del file"; +App::$strings["Permissions"] = "Permessi"; +App::$strings["Set/edit permissions"] = "Modifica i permessi"; +App::$strings["Include all files and sub folders"] = "Includi tutti i file e le sottocartelle"; +App::$strings["Return to file list"] = "Torna all'elenco dei file"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copia/incolla questo codice per far comparire il file in un post"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incolla questo indirizzo in una pagina web per avere un link al file"; +App::$strings["Share this file"] = "Condividi questo file"; +App::$strings["Show URL to this file"] = "Mostra l'URL del file"; +App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; +App::$strings["Privacy group created."] = "Gruppo di canali creato."; +App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; +App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; +App::$strings["Privacy group updated."] = "Gruppo di canali aggiornato."; +App::$strings["Create a group of channels."] = "Crea un gruppo di canali."; +App::$strings["Privacy group name: "] = "Nome del gruppo di canali:"; +App::$strings["Members are visible to other channels"] = "I membri potranno vedere gli altri canali del gruppo"; +App::$strings["Privacy group removed."] = "Gruppo di canali rimosso."; +App::$strings["Unable to remove privacy group."] = "Impossibile rimuovere il gruppo di canali."; +App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; +App::$strings["Members"] = "Membri"; +App::$strings["All Connected Channels"] = "Tutti i canali connessi"; +App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; +App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Album not found."] = "Album non trovato."; +App::$strings["Delete Album"] = "Elimina album"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; +App::$strings["Delete Photo"] = "Elimina foto"; +App::$strings["No photos selected"] = "Nessuna foto selezionata"; +App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; +App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; +App::$strings["Upload Photos"] = "Carica foto"; +App::$strings["Enter an album name"] = "Scegli il nome dell'album"; +App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; +App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; +App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; +App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; +App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; +App::$strings["Contact Photos"] = "Foto dei contatti"; +App::$strings["Show Newest First"] = "Prima i più recenti"; +App::$strings["Show Oldest First"] = "Prima i più vecchi"; +App::$strings["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; +App::$strings["Photo not available"] = "Foto non disponibile"; +App::$strings["Use as profile photo"] = "Usa come foto del profilo"; +App::$strings["Use as cover photo"] = "Usa come copertina del canale"; +App::$strings["Private Photo"] = "Foto privata"; +App::$strings["Previous"] = "Precendente"; +App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; +App::$strings["Edit photo"] = "Modifica la foto"; +App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; +App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; +App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; +App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; +App::$strings["Caption"] = "Didascalia"; +App::$strings["Add a Tag"] = "Aggiungi tag"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; +App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; +App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; +App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Share"] = "Condividi"; +App::$strings["Please wait"] = "Attendere"; +App::$strings["This is you"] = "Questo sei tu"; +App::$strings["Comment"] = "Commento"; +App::$strings["Preview"] = "Anteprima"; +App::$strings["__ctx:title__ Likes"] = "Mi piace"; +App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; +App::$strings["__ctx:title__ Agree"] = "D'accordo"; +App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; +App::$strings["__ctx:title__ Abstain"] = "Astenuti"; +App::$strings["__ctx:title__ Attending"] = "Partecipano"; +App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; +App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; +App::$strings["View all"] = "Vedi tutto"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", ); -App::$strings["%s channel deleted"] = array( - 0 => "%s canale è stato rimosso", - 1 => "%s canali sono stati rimossi", +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["webpage"] = "pagina web"; +App::$strings["block"] = "block"; +App::$strings["layout"] = "layout"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s elemento installato"; +App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; +App::$strings["Nothing to import."] = "Non c'è niente da importare."; +App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +App::$strings["Import completed"] = "Importazione completata"; +App::$strings["Import Items"] = "Importa i contenuti"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; +App::$strings["File to Upload"] = "File da caricare"; +App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; +App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; +App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario."; +App::$strings["%s : Message delivery failed."] = "%s: la consegna del messaggio è fallita."; +App::$strings["%d message sent."] = array( + 0 => "%d messaggio inviato.", + 1 => "%d messaggi inviati.", ); -App::$strings["Channel not found"] = "Canale non trovato"; -App::$strings["Channel '%s' deleted"] = "Il canale '%s' è stato rimosso"; -App::$strings["Channel '%s' censored"] = "Applicata una censura al canale '%s'"; -App::$strings["Channel '%s' uncensored"] = "Rimossa la censura dal canale '%s'"; -App::$strings["Channel '%s' code allowed"] = "Il canale '%s' permette codice nei contenuti"; -App::$strings["Channel '%s' code disallowed"] = "Il canale '%s' non permette codice nei contenuti"; -App::$strings["Channels"] = "Canali"; -App::$strings["Censor"] = "Applica censura"; -App::$strings["Uncensor"] = "Rimuovi censura"; -App::$strings["Allow Code"] = "Permetti codice"; -App::$strings["Disallow Code"] = "Non permettere codice"; -App::$strings["Channel"] = "Canale"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["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?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; -App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; -App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; -App::$strings["Disable"] = "Disattiva"; -App::$strings["Enable"] = "Attiva"; -App::$strings["Plugins"] = "Plugin"; -App::$strings["Toggle"] = "Attiva/disattiva"; -App::$strings["Settings"] = "Impostazioni"; -App::$strings["Author: "] = "Autore:"; -App::$strings["Maintainer: "] = "Gestore:"; -App::$strings["Minimum project version: "] = "Minima versione hubzilla"; -App::$strings["Maximum project version: "] = "Massima versione hubzilla"; -App::$strings["Minimum PHP version: "] = "Minima versione PHP:"; -App::$strings["Compatible Server Roles: "] = "Ruoli compatibili per questo server"; -App::$strings["Requires: "] = "Necessita di:"; -App::$strings["Disabled - version incompatibility"] = "Disabilitato - incompatibilità di versione"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Inserisci lo URL del repository git dei plugin."; -App::$strings["Plugin repo git URL"] = "URL git del repository del plugin"; -App::$strings["Custom repo name"] = "Nome repository personalizzato"; -App::$strings["(optional)"] = "(facoltativo)"; -App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; -App::$strings["Install new repo"] = "Installa un nuovo repository"; -App::$strings["Install"] = "Installa"; -App::$strings["Manage Repos"] = "Gestisci i repository"; -App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; -App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; -App::$strings["Switch branch"] = "Cambia branch"; -App::$strings["No themes found."] = "Nessun tema trovato."; -App::$strings["Screenshot"] = "Istantanea dello schermo"; -App::$strings["Themes"] = "Temi"; -App::$strings["[Experimental]"] = "[Sperimentale]"; -App::$strings["[Unsupported]"] = "[Non supportato]"; -App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; -App::$strings["Logs"] = "Log"; -App::$strings["Clear"] = "Pulisci"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "File di log"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; -App::$strings["Log level"] = "Livello di log"; -App::$strings["New Profile Field"] = "Nuovo campo del profilo"; -App::$strings["Field nickname"] = "Nome breve del campo"; -App::$strings["System name of field"] = "Nome di sistema del campo"; -App::$strings["Input type"] = "Tipo di dati"; -App::$strings["Field Name"] = "Nome del campo"; -App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; -App::$strings["Help text"] = "Testo di aiuto"; -App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; -App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; -App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; -App::$strings["Profile Fields"] = "Campi del profilo"; -App::$strings["Basic Profile Fields"] = "Campi base del profilo"; -App::$strings["Advanced Profile Fields"] = "Campi avanzati del profilo"; -App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base)"; -App::$strings["All available fields"] = "Tutti i campi disponibili"; -App::$strings["Custom Fields"] = "Campi personalizzati"; -App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; +App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; +App::$strings["Send invitations"] = "Spedisci inviti"; +App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; +App::$strings["or visit"] = "oppure visita"; +App::$strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +App::$strings["Location not found."] = "Indirizzo non trovato."; +App::$strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria."; +App::$strings["Syncing locations"] = "Sincronizzazione tra hub"; +App::$strings["No locations found."] = "Nessun indirizzo trovato."; +App::$strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["Primary"] = "Primario"; +App::$strings["Sync Now"] = "Sincronizza ora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; +App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; +App::$strings["Invalid request."] = "Richiesta non valida."; +App::$strings["channel"] = "il canale"; +App::$strings["thing"] = "Oggetto"; +App::$strings["Channel unavailable."] = "Canale non trovato."; +App::$strings["Previous action reversed."] = "Il comando precedente è stato annullato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "il messaggio di stato"; +App::$strings["event"] = "l'evento"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s è d'accordo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non è d'accordo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non si esprime"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s partecipa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s non partecipa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s di %2\$s: %1\$s forse partecipa"; +App::$strings["Action completed."] = "Comando completato."; +App::$strings["Thank you."] = "Grazie."; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +App::$strings["Create a new channel"] = "Crea un nuovo canale"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Channel Manager"] = "Gestione canali"; +App::$strings["Current Channel"] = "Canale attuale"; +App::$strings["Switch to one of your channels by selecting it."] = "Seleziona l'altro canale a cui vuoi passare."; +App::$strings["Default Channel"] = "Canale predefinito"; +App::$strings["Make Default"] = "Rendi predefinito"; +App::$strings["%d new messages"] = "%d nuovi messaggi"; +App::$strings["%d new introductions"] = "%d nuove richieste di entrare in contatto"; +App::$strings["Delegated Channel"] = "Canale delegato"; +App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; +App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; +App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; +App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["Link Name"] = "Nome link"; +App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; +App::$strings["Use magic-auth if available"] = "Usa l'autenticazione tramite il tuo hub, se disponibile"; +App::$strings["Open link in new window"] = "Apri il link in una nuova finestra"; +App::$strings["Order in list"] = "Ordine dell'elenco"; +App::$strings["Higher numbers will sink to bottom of listing"] = "I numeri più alti andranno in fondo all'elenco"; +App::$strings["Submit and finish"] = "Salva e termina"; +App::$strings["Submit and continue"] = "Salva e continua"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Destinazione link"; +App::$strings["Edit menu"] = "Modifica il menù"; +App::$strings["Edit element"] = "Modifica l'elemento"; +App::$strings["Drop element"] = "Elimina l'elemento"; +App::$strings["New element"] = "Nuovo elemento"; +App::$strings["Edit this menu container"] = "Modifica il contenitore del menù"; +App::$strings["Add menu element"] = "Aggiungi un elemento al menù"; +App::$strings["Delete this menu item"] = "Elimina questo elemento del menù"; +App::$strings["Edit this menu item"] = "Modifica questo elemento del menù"; +App::$strings["Menu item not found."] = "L'elemento del menù non è stato trovato."; +App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato."; +App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; +App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; +App::$strings["Link text"] = "Testo del link"; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; +App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; App::$strings["No valid account found."] = "Nessun account valido trovato."; App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; @@ -1114,7 +1113,10 @@ App::$strings["is interested in:"] = "interessi personali:"; App::$strings["No matches"] = "Nessun risultato"; App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; +App::$strings["Export selected"] = "Esporta i selezionati"; App::$strings["Webpages"] = "Pagine web"; +App::$strings["View"] = "Guarda"; App::$strings["Actions"] = "Azioni"; App::$strings["Page Link"] = "Link alla pagina"; App::$strings["Page Title"] = "Titolo della pagina"; @@ -1203,10 +1205,15 @@ App::$strings["Visible To"] = "Visibile a"; App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; App::$strings["Configuration Editor"] = "Editor di configurazione"; 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."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; -App::$strings["Posts and comments"] = "Post e commenti"; -App::$strings["Only posts"] = "Solo post"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; +App::$strings["Public Hubs"] = "Hub pubblici"; +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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = "Statistiche"; +App::$strings["Software"] = "Software"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rate"] = "Valuta"; App::$strings["Version %s"] = "Versione %s"; App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1223,13 +1230,15 @@ App::$strings["Site Administrators"] = "Amministratori del sito"; App::$strings["Blocks"] = "Block"; App::$strings["Block Title"] = "Titolo del block"; App::$strings["Layouts"] = "Layout"; +App::$strings["Help"] = "Guida"; App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; App::$strings["Layout Description"] = "Descrizione del layout"; App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; App::$strings["Permissions denied."] = "Permesso negato."; @@ -1262,6 +1271,10 @@ App::$strings["Delete Conversation"] = "Elimina la conversazione"; App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; App::$strings["Send Reply"] = "Invia la risposta"; App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; App::$strings["Connection updated."] = "Contatto aggiornato."; @@ -1320,7 +1333,9 @@ App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazio App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; App::$strings["Last update:"] = "Ultimo aggiornamento:"; -App::$strings["Apps"] = "App"; +App::$strings["Documentation Search"] = "Ricerca nella guida"; +App::$strings["Help:"] = "Guida:"; +App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; App::$strings["Continue"] = "Continua"; App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; @@ -1362,7 +1377,6 @@ App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2\$s"; App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Questi contenuti potranno essere importati o ripristinati visitando %2\$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)"; App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Edit post"] = "Modifica post"; App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; App::$strings["No service class restrictions found."] = "Non esistono restrizioni su questa classe di account."; @@ -1380,18 +1394,12 @@ App::$strings["Name of thing e.g. something"] = "Nome dell'oggetto"; App::$strings["URL of thing (optional)"] = "Indirizzo web dell'oggetto (facoltativo)"; App::$strings["URL for photo of thing (optional)"] = "Indirizzo di un'immagine dell'oggetto (facoltativo)"; App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +App::$strings["Apps"] = "App"; App::$strings["Files: shared with me"] = "File: condivisi con me"; App::$strings["NEW"] = "NOVITÀ"; App::$strings["Remove all files"] = "Elimina tutti i file"; App::$strings["Remove this file"] = "Elimina questo file"; +App::$strings["You must be logged in to see this page."] = "Devi aver effettuato l'accesso per vedere questa pagina."; App::$strings["Not found"] = "Non trovato"; App::$strings["Wiki"] = "Wiki"; App::$strings["Sandbox"] = "Sandbox"; @@ -1437,6 +1445,9 @@ App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s App::$strings["Tag removed"] = "Tag rimosso"; App::$strings["Remove Item Tag"] = "Rimuovi il tag"; App::$strings["Select a tag to remove: "] = "Seleziona un tag da rimuovere: "; +App::$strings["Posts and comments"] = "Post e commenti"; +App::$strings["Only posts"] = "Solo post"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permessi insufficienti. Sarà visualizzata la pagina del profilo."; App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; @@ -1448,7 +1459,6 @@ App::$strings["Delete Room"] = "Elimina questa chat"; App::$strings["I am away right now"] = "Non sono presente"; App::$strings["I am online"] = "Sono online"; App::$strings["Bookmark this room"] = "Aggiungi questa chat ai segnalibri"; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; App::$strings["New Chatroom"] = "Nuova chat"; App::$strings["Chatroom name"] = "Nome chat"; App::$strings["Expiration of chats (minutes)"] = "Scadenza dei messaggi della chat (minuti)"; @@ -1505,6 +1515,20 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita App::$strings["[Hubzilla:Notify]"] = "[Hubzilla]"; App::$strings["created a new post"] = "Ha creato un nuovo post"; App::$strings["commented on %s's post"] = "ha commentato il post di %s"; +App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; +App::$strings["Only me"] = "Solo io"; +App::$strings["Public"] = "Pubblico"; +App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; +App::$strings["Any account on %s"] = "Tutti gli account su %s"; +App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; +App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; +App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; +App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; +App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; App::$strings["Site Admin"] = "Amministrazione sito"; App::$strings["Bug Report"] = "Bug Report"; App::$strings["View Bookmarks"] = "Vedi i segnalibri"; @@ -1528,20 +1552,6 @@ App::$strings["Language"] = "Lingua"; App::$strings["Post"] = "Post"; App::$strings["Profile Photo"] = "Foto del profilo"; App::$strings["Purchase"] = "Acquista"; -App::$strings["Visible to your default audience"] = "Visibile secondo le impostazioni predefinite"; -App::$strings["Only me"] = "Solo io"; -App::$strings["Public"] = "Pubblico"; -App::$strings["Anybody in the \$Projectname network"] = "Tutti sulla rete \$Projectname"; -App::$strings["Any account on %s"] = "Tutti gli account su %s"; -App::$strings["Any of my connections"] = "Chiunque tra i miei contatti"; -App::$strings["Only connections I specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Chiunque sia autenticato (inclusi visitatori di altre reti)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Tutti i contatti inclusi quelli non ancora approvati"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Impostazione predefinita di chi può vedere ciò che pubblichi in bacheca"; -App::$strings["This is your default setting for who can view your default channel profile"] = "Impostazione predefinita di chi può vedere il profilo standard del tuo canale"; -App::$strings["This is your default setting for who can view your connections"] = "Impostazione predefinita di chi può vedere i tuoi contatti/amici"; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Impostazione predefinita di chi può vedere le foto e il tuo archivio file"; -App::$strings["This is your default setting for the audience of your webpages"] = "Impostazione predefinita di chi può vedere le tue pagine web"; App::$strings["Private Message"] = "Messaggio privato"; App::$strings["Select"] = "Scegli"; App::$strings["Save to Folder"] = "Salva nella cartella"; @@ -1560,228 +1570,67 @@ App::$strings["Message signature incorrect"] = "Massaggio con firma non corretta App::$strings["Add Tag"] = "Aggiungi un tag"; App::$strings["like"] = "mi piace"; App::$strings["dislike"] = "non mi piace"; -App::$strings["Share This"] = "Condividi"; -App::$strings["share"] = "condividi"; -App::$strings["Delivery Report"] = "Rapporto di trasmissione"; -App::$strings["%d comment"] = array( - 0 => "%d commento", - 1 => "%d commenti", -); -App::$strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Da bacheca a bacheca"; -App::$strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; -App::$strings["from %s"] = "da %s"; -App::$strings["last edited: %s"] = "ultima modifica: %s"; -App::$strings["Expires: %s"] = "Scadenza: %s"; -App::$strings["Save Bookmarks"] = "Salva segnalibro"; -App::$strings["Add to Calendar"] = "Aggiungi al calendario"; -App::$strings["Mark all seen"] = "Marca tutto come letto"; -App::$strings["%s show all"] = "%s mostra tutto"; -App::$strings["Bold"] = "Grassetto"; -App::$strings["Italic"] = "Corsivo"; -App::$strings["Underline"] = "Sottolineato"; -App::$strings["Quote"] = "Citazione"; -App::$strings["Code"] = "Codice"; -App::$strings["Image"] = "Immagine"; -App::$strings["Insert Link"] = "Collegamento"; -App::$strings["Video"] = "Video"; -App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; -App::$strings["view full size"] = "guarda nelle dimensioni reali"; -App::$strings["Administrator"] = "Amministratore"; -App::$strings["No Subject"] = "Nessun titolo"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["(Unknown)"] = "(Sconosciuto)"; -App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -App::$strings["Visible to you only."] = "Visibile solo a te."; -App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; -App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["profile photo"] = "foto del profilo"; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; -App::$strings["poke"] = "poke"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["Monday"] = "lunedì"; -App::$strings["Tuesday"] = "martedì"; -App::$strings["Wednesday"] = "mercoledì"; -App::$strings["Thursday"] = "giovedì"; -App::$strings["Friday"] = "venerdì"; -App::$strings["Saturday"] = "sabato"; -App::$strings["Sunday"] = "domenica"; -App::$strings["January"] = "gennaio"; -App::$strings["February"] = "febbraio"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "aprile"; -App::$strings["May"] = "Mag"; -App::$strings["June"] = "giugno"; -App::$strings["July"] = "luglio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "settembre"; -App::$strings["October"] = "ottobre"; -App::$strings["November"] = "novembre"; -App::$strings["December"] = "dicembre"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa i file da un cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Categories"] = "Categorie"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Saved Searches"] = "Ricerche salvate"; -App::$strings["add"] = "aggiungi"; -App::$strings["Saved Folders"] = "Cartelle salvate"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Chatrooms"] = "Chat"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Plugin Features"] = "Plugin"; +App::$strings["Share This"] = "Condividi"; +App::$strings["share"] = "condividi"; +App::$strings["Delivery Report"] = "Rapporto di trasmissione"; +App::$strings["%d comment"] = array( + 0 => "%d commento", + 1 => "%d commenti", +); +App::$strings["View %s's profile - %s"] = "Guarda il profilo di %s - %s"; +App::$strings["to"] = "a"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "Da bacheca a bacheca"; +App::$strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; +App::$strings["from %s"] = "da %s"; +App::$strings["last edited: %s"] = "ultima modifica: %s"; +App::$strings["Expires: %s"] = "Scadenza: %s"; +App::$strings["Save Bookmarks"] = "Salva segnalibro"; +App::$strings["Add to Calendar"] = "Aggiungi al calendario"; +App::$strings["Mark all seen"] = "Marca tutto come letto"; +App::$strings["%s show all"] = "%s mostra tutto"; +App::$strings["Bold"] = "Grassetto"; +App::$strings["Italic"] = "Corsivo"; +App::$strings["Underline"] = "Sottolineato"; +App::$strings["Quote"] = "Citazione"; +App::$strings["Code"] = "Codice"; +App::$strings["Image"] = "Immagine"; +App::$strings["Insert Link"] = "Collegamento"; +App::$strings["Video"] = "Video"; +App::$strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["No Subject"] = "Nessun titolo"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; App::$strings["New window"] = "Nuova finestra"; App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["Who can see this?"] = "Chi può vederlo?"; -App::$strings["Custom selection"] = "Selezione personalizzata"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; -App::$strings["Show"] = "Mostra"; -App::$strings["Don't show"] = "Non mostrare"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; App::$strings["Public Timeline"] = "Diario pubblico"; App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; App::$strings["Empty name"] = "Nome vuoto"; @@ -1920,6 +1769,34 @@ App::$strings["Uncertain"] = "Incerto/a"; App::$strings["It's complicated"] = "Relazione complicata"; App::$strings["Don't care"] = "Chi se ne frega"; App::$strings["Ask me"] = "Chiedimelo"; +App::$strings["(Unknown)"] = "(Sconosciuto)"; +App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +App::$strings["Visible to you only."] = "Visibile solo a te."; +App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; +App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; +App::$strings["Connection not found."] = "Contatto non trovato."; +App::$strings["profile photo"] = "foto del profilo"; +App::$strings["guest:"] = "ospite:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; +App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; +App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; +App::$strings["edit"] = "modifica"; +App::$strings["Privacy Groups"] = "Gruppi di canali"; +App::$strings["Edit group"] = "Modifica il gruppo"; +App::$strings["Add privacy group"] = "Crea un gruppo di canali"; +App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; +App::$strings["add"] = "aggiungi"; App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; @@ -1927,8 +1804,214 @@ App::$strings["a new photo"] = "una nuova foto"; App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; App::$strings["Photo Albums"] = "Album foto"; App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["guest:"] = "ospite:"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +App::$strings["Item was not found."] = "Elemento non trovato."; +App::$strings["No source file."] = "Nessun file di origine."; +App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +App::$strings["Path not available."] = "Percorso non disponibile."; +App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; +App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +App::$strings["Path not found."] = "Percorso del file non trovato."; +App::$strings["mkdir failed."] = "mkdir fallito."; +App::$strings["database storage failed."] = "scrittura su database fallita."; +App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["Attachments:"] = "Allegati:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; +App::$strings["Starts:"] = "Inizio:"; +App::$strings["Finishes:"] = "Fine:"; +App::$strings["Delete this item?"] = "Eliminare questo elemento?"; +App::$strings["%s show less"] = "%s riduci"; +App::$strings["%s expand"] = "%s mostra tutto"; +App::$strings["%s collapse"] = "%s minimizza"; +App::$strings["Password too short"] = "Password troppo corta"; +App::$strings["Passwords do not match"] = "Le password non corrispondono"; +App::$strings["everybody"] = "tutti"; +App::$strings["Secret Passphrase"] = "Parola chiave per decifrare"; +App::$strings["Passphrase hint"] = "Suggerimento per la parola chiave"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; +App::$strings["close all"] = "chiudi tutto"; +App::$strings["Nothing new here"] = "Niente di nuovo qui"; +App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; +App::$strings["Describe (optional)"] = "Descrizione (facoltativa)"; +App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "fa"; +App::$strings["from now"] = "da adesso"; +App::$strings["less than a minute"] = "meno di un minuto"; +App::$strings["about a minute"] = "circa un minuto"; +App::$strings["%d minutes"] = "%d minuti"; +App::$strings["about an hour"] = "circa un’ora"; +App::$strings["about %d hours"] = "circa %d ore"; +App::$strings["a day"] = "un giorno"; +App::$strings["%d days"] = "%d giorni"; +App::$strings["about a month"] = "circa un mese"; +App::$strings["%d months"] = "%d mesi"; +App::$strings["about a year"] = "circa un anno"; +App::$strings["%d years"] = "%d anni"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["January"] = "gennaio"; +App::$strings["February"] = "febbraio"; +App::$strings["March"] = "marzo"; +App::$strings["April"] = "aprile"; +App::$strings["__ctx:long__ May"] = "maggio"; +App::$strings["June"] = "giugno"; +App::$strings["July"] = "luglio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "settembre"; +App::$strings["October"] = "ottobre"; +App::$strings["November"] = "novembre"; +App::$strings["December"] = "dicembre"; +App::$strings["Jan"] = "Gen"; +App::$strings["Feb"] = "Feb"; +App::$strings["Mar"] = "Mar"; +App::$strings["Apr"] = "Apr"; +App::$strings["__ctx:short__ May"] = "maggio"; +App::$strings["Jun"] = "Mag"; +App::$strings["Jul"] = "Giu"; +App::$strings["Aug"] = "Ago"; +App::$strings["Sep"] = "Set"; +App::$strings["Oct"] = "Ott"; +App::$strings["Nov"] = "Nov"; +App::$strings["Dec"] = "Dic"; +App::$strings["Sunday"] = "domenica"; +App::$strings["Monday"] = "lunedì"; +App::$strings["Tuesday"] = "martedì"; +App::$strings["Wednesday"] = "mercoledì"; +App::$strings["Thursday"] = "giovedì"; +App::$strings["Friday"] = "venerdì"; +App::$strings["Saturday"] = "sabato"; +App::$strings["Sun"] = "Dom"; +App::$strings["Mon"] = "Lun"; +App::$strings["Tue"] = "Mar"; +App::$strings["Wed"] = "Mer"; +App::$strings["Thu"] = "Gio"; +App::$strings["Fri"] = "Ven"; +App::$strings["Sat"] = "Sab"; +App::$strings["__ctx:calendar__ today"] = "oggi"; +App::$strings["__ctx:calendar__ month"] = "mese"; +App::$strings["__ctx:calendar__ week"] = "settimana"; +App::$strings["__ctx:calendar__ day"] = "giorno"; +App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; +App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; +App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; +App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; +App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; +App::$strings["Who can see this?"] = "Chi può vederlo?"; +App::$strings["Custom selection"] = "Selezione personalizzata"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"."; +App::$strings["Show"] = "Mostra"; +App::$strings["Don't show"] = "Non mostrare"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; +App::$strings["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +App::$strings["newer"] = "più nuovi"; +App::$strings["No connections"] = "Nessun contatto"; +App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; +App::$strings["poke"] = "poke"; +App::$strings["poked"] = "ha mandato un poke"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["May"] = "Mag"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; +App::$strings["activity"] = "l'attività"; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Export website..."] = "Esporta il sito web..."; +App::$strings["Export to a zip file"] = "Esporta come file zip"; +App::$strings["website.zip"] = "sitoweb.zip"; +App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; +App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; +App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; +App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; +App::$strings["Specify folder"] = "Scegli la cartella"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; +App::$strings["Not a valid email address"] = "Email non valida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +App::$strings["An invitation is required."] = "È necessario un invito."; +App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +App::$strings["your registration password"] = "la password di registrazione"; +App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +App::$strings["Account approved."] = "Account approvato."; +App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Logged out."] = "Uscita effettuata."; +App::$strings["Failed authentication"] = "Autenticazione fallita"; +App::$strings["Login failed."] = "Accesso fallito."; +App::$strings[" and "] = "e"; +App::$strings["public profile"] = "profilo pubblico"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; @@ -1991,6 +2074,7 @@ App::$strings["Status Messages and Posts"] = "Post e messaggi di stato"; App::$strings["About"] = "Informazioni"; App::$strings["Profile Details"] = "Dettagli del profilo"; App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Chatrooms"] = "Chat"; App::$strings["Bookmarks"] = "Segnalibri"; App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; App::$strings["Manage Webpages"] = "Gestisci le pagine web"; @@ -2018,120 +2102,15 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Astenuto", 1 => "Astenuti", ); -App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; -App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; -App::$strings["edit"] = "modifica"; -App::$strings["Privacy Groups"] = "Gruppi di canali"; -App::$strings["Edit group"] = "Modifica il gruppo"; -App::$strings["Add privacy group"] = "Crea un gruppo di canali"; -App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["Not specified"] = "Non specificato"; -App::$strings["Needs Action"] = "Necessita di un intervento"; -App::$strings["Completed"] = "Completato"; -App::$strings["In Process"] = "In corso"; -App::$strings["Cancelled"] = "Annullato"; -App::$strings["Attachments:"] = "Allegati:"; -App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; -App::$strings["Delete this item?"] = "Eliminare questo elemento?"; -App::$strings["%s show less"] = "%s riduci"; -App::$strings["%s expand"] = "%s mostra tutto"; -App::$strings["%s collapse"] = "%s minimizza"; -App::$strings["Password too short"] = "Password troppo corta"; -App::$strings["Passwords do not match"] = "Le password non corrispondono"; -App::$strings["everybody"] = "tutti"; -App::$strings["Secret Passphrase"] = "Parola chiave per decifrare"; -App::$strings["Passphrase hint"] = "Suggerimento per la parola chiave"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Nota: i permessi sono stati modificati ma non ancora salvati."; -App::$strings["close all"] = "chiudi tutto"; -App::$strings["Nothing new here"] = "Niente di nuovo qui"; -App::$strings["Rate This Channel (this is public)"] = "Valuta questo canale (visibile a tutti)"; -App::$strings["Describe (optional)"] = "Descrizione (facoltativa)"; -App::$strings["Please enter a link URL"] = "Inserisci l'URL di un link"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Non hai salvato i cambiamenti. Vuoi davvero lasciare questa pagina?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "fa"; -App::$strings["from now"] = "da adesso"; -App::$strings["less than a minute"] = "meno di un minuto"; -App::$strings["about a minute"] = "circa un minuto"; -App::$strings["%d minutes"] = "%d minuti"; -App::$strings["about an hour"] = "circa un’ora"; -App::$strings["about %d hours"] = "circa %d ore"; -App::$strings["a day"] = "un giorno"; -App::$strings["%d days"] = "%d giorni"; -App::$strings["about a month"] = "circa un mese"; -App::$strings["%d months"] = "%d mesi"; -App::$strings["about a year"] = "circa un anno"; -App::$strings["%d years"] = "%d anni"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "maggio"; -App::$strings["Jan"] = "Gen"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mar"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "maggio"; -App::$strings["Jun"] = "Mag"; -App::$strings["Jul"] = "Giu"; -App::$strings["Aug"] = "Ago"; -App::$strings["Sep"] = "Set"; -App::$strings["Oct"] = "Ott"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dic"; -App::$strings["Sun"] = "Dom"; -App::$strings["Mon"] = "Lun"; -App::$strings["Tue"] = "Mar"; -App::$strings["Wed"] = "Mer"; -App::$strings["Thu"] = "Gio"; -App::$strings["Fri"] = "Ven"; -App::$strings["Sat"] = "Sab"; -App::$strings["__ctx:calendar__ today"] = "oggi"; -App::$strings["__ctx:calendar__ month"] = "mese"; -App::$strings["__ctx:calendar__ week"] = "settimana"; -App::$strings["__ctx:calendar__ day"] = "giorno"; -App::$strings["__ctx:calendar__ All day"] = "Tutto il giorno"; -App::$strings["Channel is blocked on this site."] = "Il canale è bloccato per questo sito."; -App::$strings["Channel location missing."] = "Manca l'indirizzo del canale."; -App::$strings["Response from remote channel was incomplete."] = "La risposta dal canale non è completa."; -App::$strings["Channel was deleted and no longer exists."] = "Il canale è stato rimosso e non esiste più."; -App::$strings["Protocol disabled."] = "Protocollo disabilitato."; -App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; -App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; -App::$strings["Item was not found."] = "Elemento non trovato."; -App::$strings["No source file."] = "Nessun file di origine."; -App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -App::$strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -App::$strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -App::$strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -App::$strings["Path not available."] = "Percorso non disponibile."; -App::$strings["Empty pathname"] = "Il percorso del file è vuoto"; -App::$strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -App::$strings["Path not found."] = "Percorso del file non trovato."; -App::$strings["mkdir failed."] = "mkdir fallito."; -App::$strings["database storage failed."] = "scrittura su database fallita."; -App::$strings["Empty path"] = "La posizione è vuota"; -App::$strings["Logged out."] = "Uscita effettuata."; -App::$strings["Failed authentication"] = "Autenticazione fallita"; -App::$strings["Login failed."] = "Accesso fallito."; -App::$strings[" and "] = "e"; -App::$strings["public profile"] = "profilo pubblico"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; -App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["Categories"] = "Categorie"; +App::$strings["Tags"] = "Tag"; +App::$strings["Keywords"] = "Parole chiave"; +App::$strings["have"] = "ho"; +App::$strings["has"] = "ha"; +App::$strings["want"] = "voglio"; +App::$strings["wants"] = "vuole"; +App::$strings["likes"] = "gli piace"; +App::$strings["dislikes"] = "non gli piace"; App::$strings["General Features"] = "Funzionalità di base"; App::$strings["Content Expiration"] = "Scadenza"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; @@ -2151,11 +2130,9 @@ App::$strings["Change channels directly from within the navigation dropdown menu App::$strings["Photo Location"] = "Posizione geografica"; App::$strings["If location data is available on uploaded photos, link this to a map."] = "Collega la foto a una mappa quando contiene indicazioni geografiche."; App::$strings["Access Controlled Chatrooms"] = "Chat ad accesso riservato"; -App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato"; +App::$strings["Provide chatrooms and chat services with access control."] = "Il servizio di chat con accesso riservato."; App::$strings["Smart Birthdays"] = "Compleanni intelligenti"; App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo."; -App::$strings["Expert Mode"] = "Modalità esperto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Abilita la modalità esperto per vedere le opzioni di configurazione avanzate"; App::$strings["Post Composition Features"] = "Modalità di scrittura post"; App::$strings["Large Photos"] = "Foto grandi"; App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)"; @@ -2174,6 +2151,7 @@ App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; App::$strings["Search by Date"] = "Ricerca per data"; App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["Saved Searches"] = "Ricerche salvate"; App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; App::$strings["Network Personal Tab"] = "Attività personale"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; @@ -2181,16 +2159,15 @@ App::$strings["Network New Tab"] = "Contenuti nuovi"; App::$strings["Enable tab to display all new Network activity"] = "Abilita il link per visualizzare solo i nuovi contenuti"; App::$strings["Affinity Tool"] = "Filtro per affinità"; App::$strings["Filter stream activity by depth of relationships"] = "Permette di selezionare i contenuti in base al livello di amicizia"; -App::$strings["Connection Filtering"] = "Filtro sui contatti"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; -App::$strings["Show channel suggestions"] = "Mostra alcuni canali che potrebbero interessarti"; +App::$strings["Show friend and connection suggestions"] = "Mostra suggerimenti di contatti e amici"; App::$strings["Post/Comment Tools"] = "Gestione post e commenti"; App::$strings["Community Tagging"] = "Tag della comunità"; App::$strings["Ability to tag existing posts"] = "Permetti l'aggiunta di tag su post già esistenti"; App::$strings["Post Categories"] = "Categorie dei post"; App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; -App::$strings["Emoji Reactions"] = "Reazioni emoji"; -App::$strings["Add emoji reaction ability to posts"] = "Permetti le reazioni emoji ai post"; +App::$strings["Emoji Reactions"] = "Risposte emoji"; +App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; +App::$strings["Saved Folders"] = "Cartelle salvate"; App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; App::$strings["Dislike Posts"] = "Non mi piace"; App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; @@ -2198,32 +2175,72 @@ App::$strings["Star Posts"] = "Post con stella"; App::$strings["Ability to mark special posts with a star indicator"] = "Mostra la stella per segnare i post preferiti"; App::$strings["Tag Cloud"] = "Nuvola di tag"; App::$strings["Provide a personal tag cloud on your channel page"] = "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale"; +App::$strings["Connection Filtering"] = "Filtro sui contatti"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtra i post che ricevi con parole chiave"; App::$strings["Premium Channel"] = "Canale premium"; App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ti permette di impostare restrizioni e termini d'uso per il canale"; -App::$strings["Tags"] = "Tag"; -App::$strings["Keywords"] = "Parole chiave"; -App::$strings["have"] = "ho"; -App::$strings["has"] = "ha"; -App::$strings["want"] = "voglio"; -App::$strings["wants"] = "vuole"; -App::$strings["likes"] = "gli piace"; -App::$strings["dislikes"] = "non gli piace"; -App::$strings["Not a valid email address"] = "Email non valida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -App::$strings["An invitation is required."] = "È necessario un invito."; -App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -App::$strings["your registration password"] = "la password di registrazione"; -App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -App::$strings["Account approved."] = "Account approvato."; -App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pubblici"; +App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; +App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione repliche"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Wiki List"] = "Elenco wiki"; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; +App::$strings["For Members"] = "Per gli utenti"; +App::$strings["For Administrators"] = "Per gli amministratori"; +App::$strings["For Developers"] = "Per sviluppatori"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Plugin Features"] = "Plugin"; App::$strings["Image/photo"] = "Immagine"; App::$strings["Encrypted content"] = "Contenuto cifrato"; App::$strings["Install %s element: "] = "Installa l'elemento %s:"; @@ -2256,8 +2273,12 @@ App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; App::$strings["[no subject]"] = "[nessun titolo]"; App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +App::$strings["Not specified"] = "Non specificato"; +App::$strings["Needs Action"] = "Necessita di un intervento"; +App::$strings["Completed"] = "Completato"; +App::$strings["In Process"] = "In corso"; +App::$strings["Cancelled"] = "Annullato"; App::$strings["Logout"] = "Esci"; App::$strings["End this session"] = "Chiudi questa sessione"; App::$strings["Home"] = "Bacheca"; -- cgit v1.2.3 From ab59479a0c095c0cebb3b5cb9304850ad54e86d3 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 20 Sep 2016 15:19:13 +0200 Subject: narrow navbar css fixes --- view/theme/redbasic/css/narrow_navbar.css | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) (limited to 'view') diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css index faa18dfe5..6b09b031a 100644 --- a/view/theme/redbasic/css/narrow_navbar.css +++ b/view/theme/redbasic/css/narrow_navbar.css @@ -18,22 +18,22 @@ } nav .navbar-header img { - height: 30px; - width: 30px; + height: 29px; + width: 29px; margin-top: 1px; border-radius: 4px; } .navbar-left { - height: 30px; + height: 29px; } .container-fluid { - min-height:30px; + min-height:29px; } .collapse .navbar-collapse { - min-height:30px; + min-height:29px; } #nav-search-text { @@ -50,15 +50,11 @@ nav .dropdown-menu, nav .acpopup { - top: 31px !important; + top: 30px !important; } nav .badge { - position: relative; - top: -31px; - float: right; - font-size: 10px; - cursor: pointer; + top: -29px; } #jGrowl.top-right { @@ -67,6 +63,6 @@ } .contextual-help-content-open { - top: 32px; + top: 31px; } } -- cgit v1.2.3 From 3edbb564fcbc3f1b5ba41f6806dc2aa9e0f86c99 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 22 Sep 2016 09:43:11 +0200 Subject: fix #525 --- view/tpl/event_head.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/event_head.tpl b/view/tpl/event_head.tpl index fee4f17a3..640e6024a 100755 --- a/view/tpl/event_head.tpl +++ b/view/tpl/event_head.tpl @@ -1,7 +1,7 @@ - + -- cgit v1.2.3 From ed457ac6947486f93f9d1288c1fe81c2e9c11e26 Mon Sep 17 00:00:00 2001 From: phellmes Date: Thu, 22 Sep 2016 13:45:49 +0200 Subject: Update DE translation strings --- view/de/hmessages.po | 14058 +++++++++++++++++++++++++------------------------ view/de/hstrings.php | 3453 ++++++------ 2 files changed, 8958 insertions(+), 8553 deletions(-) (limited to 'view') diff --git a/view/de/hmessages.po b/view/de/hmessages.po index 5c3b981ad..425273386 100644 --- a/view/de/hmessages.po +++ b/view/de/hmessages.po @@ -5,7 +5,7 @@ # Translators: # Alex , 2013 # Balder , 2013 -# bavatar , 2013 +# Tobias Diekershoff , 2013 # do.t , 2014 # Einer von Vielen , 2013 # Ettore Atalan , 2015-2016 @@ -16,15 +16,16 @@ # Phellmes , 2014,2016 # sasiflo , 2014 # Steff , 2015-2016 -# bavatar , 2016 +# Tobias Diekershoff , 2016 +# Tobias Diekershoff , 2016 # zottel , 2015 # sasiflo , 2015 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-06-10 00:02-0700\n" -"PO-Revision-Date: 2016-06-15 09:43+0000\n" +"POT-Creation-Date: 2016-09-17 14:51-0700\n" +"PO-Revision-Date: 2016-09-22 11:28+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -33,11 +34,160 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../Zotlabs/Access/PermissionRoles.php:182 +#: ../../include/permissions.php:945 +msgid "Social Networking" +msgstr "Soziales Netzwerk" + +#: ../../Zotlabs/Access/PermissionRoles.php:183 +#: ../../include/permissions.php:945 +msgid "Social - Mostly Public" +msgstr "Soziales Netzwerk - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:184 +#: ../../include/permissions.php:945 +msgid "Social - Restricted" +msgstr "Soziales Netzwerk - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:185 +#: ../../include/permissions.php:945 +msgid "Social - Private" +msgstr "Soziales Netzwerk - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:188 +#: ../../include/permissions.php:946 +msgid "Community Forum" +msgstr "Forum" + +#: ../../Zotlabs/Access/PermissionRoles.php:189 +#: ../../include/permissions.php:946 +msgid "Forum - Mostly Public" +msgstr "Forum - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:190 +#: ../../include/permissions.php:946 +msgid "Forum - Restricted" +msgstr "Forum - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:191 +#: ../../include/permissions.php:946 +msgid "Forum - Private" +msgstr "Forum - Privat" + +#: ../../Zotlabs/Access/PermissionRoles.php:194 +#: ../../include/permissions.php:947 +msgid "Feed Republish" +msgstr "Teilen von Feeds" + +#: ../../Zotlabs/Access/PermissionRoles.php:195 +#: ../../include/permissions.php:947 +msgid "Feed - Mostly Public" +msgstr "Feeds - Weitgehend öffentlich" + +#: ../../Zotlabs/Access/PermissionRoles.php:196 +#: ../../include/permissions.php:947 +msgid "Feed - Restricted" +msgstr "Feeds - Beschränkt" + +#: ../../Zotlabs/Access/PermissionRoles.php:199 +#: ../../include/permissions.php:948 +msgid "Special Purpose" +msgstr "Für besondere Zwecke" + +#: ../../Zotlabs/Access/PermissionRoles.php:200 +#: ../../include/permissions.php:948 +msgid "Special - Celebrity/Soapbox" +msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" + +#: ../../Zotlabs/Access/PermissionRoles.php:201 +#: ../../include/permissions.php:948 +msgid "Special - Group Repository" +msgstr "Speziell - Gruppenarchiv" + +#: ../../Zotlabs/Access/PermissionRoles.php:204 +#: ../../Zotlabs/Module/Register.php:213 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Settings/Channel.php:442 +#: ../../include/permissions.php:949 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 +msgid "Other" +msgstr "Andere" + +#: ../../Zotlabs/Access/PermissionRoles.php:205 +#: ../../include/permissions.php:949 +msgid "Custom/Expert Mode" +msgstr "Benutzerdefiniert/Expertenmodus" + +#: ../../Zotlabs/Access/Permissions.php:30 +msgid "Can view my channel stream and posts" +msgstr "Kann meinen Kanal-Stream und meine Beiträge sehen" + +#: ../../Zotlabs/Access/Permissions.php:31 ../../include/permissions.php:42 +msgid "Can send me their channel stream and posts" +msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" + +#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:36 +msgid "Can view my default channel profile" +msgstr "Kann mein Standardprofil sehen" + +#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:37 +msgid "Can view my connections" +msgstr "Kann meine Verbindungen sehen" + +#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:38 +msgid "Can view my file storage and photos" +msgstr "Kann meine Datei- und Bilderordner sehen" + +#: ../../Zotlabs/Access/Permissions.php:35 +msgid "Can upload/modify my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner hochladen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:36 +msgid "Can view my channel webpages" +msgstr "Kann die Webseiten meines Kanals sehen" + +#: ../../Zotlabs/Access/Permissions.php:37 +msgid "Can create/edit my channel webpages" +msgstr "Kann Webseiten in meinem Kanal erstellen/ändern" + +#: ../../Zotlabs/Access/Permissions.php:38 +msgid "Can post on my channel (wall) page" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" + +#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:44 +msgid "Can comment on or like my posts" +msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:40 ../../include/permissions.php:45 +msgid "Can send me private mail messages" +msgstr "Kann mir private Nachrichten schicken" + +#: ../../Zotlabs/Access/Permissions.php:41 +msgid "Can like/dislike profiles and profile things" +msgstr "Kann Profile und Profilsachen mögen/nicht mögen" + +#: ../../Zotlabs/Access/Permissions.php:42 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten" + +#: ../../Zotlabs/Access/Permissions.php:43 +msgid "Can chat with me" +msgstr "Kann mit mir chatten" + +#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:53 +msgid "Can source my public posts in derived channels" +msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" + +#: ../../Zotlabs/Access/Permissions.php:45 +msgid "Can administer my channel" +msgstr "Kann meinen Kanal administrieren" + #: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:239 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2620 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 msgid "Collection" msgstr "Sammlung" @@ -61,16 +211,17 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:798 -#: ../../Zotlabs/Module/Photos.php:1243 ../../Zotlabs/Lib/Apps.php:486 -#: ../../Zotlabs/Lib/Apps.php:561 ../../include/widgets.php:1505 -#: ../../include/conversation.php:1032 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 +#: ../../Zotlabs/Module/Photos.php:1249 +#: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 +#: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 +#: ../../include/widgets.php:1679 msgid "Unknown" msgstr "Unbekannt" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/nav.php:93 -#: ../../include/conversation.php:1639 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 +#: ../../include/conversation.php:1678 msgid "Files" msgstr "Dateien" @@ -82,24 +233,26 @@ msgstr "Summe" msgid "Shared" msgstr "Geteilt" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:306 -#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:182 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 -#: ../../Zotlabs/Module/Webpages.php:186 +#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" msgstr "Erstelle" -#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:308 +#: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:825 ../../Zotlabs/Module/Photos.php:1364 -#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1518 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692 msgid "Upload" msgstr "Hochladen" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Chat.php:247 -#: ../../Zotlabs/Module/Admin.php:1223 ../../Zotlabs/Module/Settings.php:592 -#: ../../Zotlabs/Module/Settings.php:618 -#: ../../Zotlabs/Module/Sharedwithme.php:99 +#: ../../Zotlabs/Storage/Browser.php:235 +#: ../../Zotlabs/Module/Admin/Channels.php:163 +#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 msgid "Name" msgstr "Name" @@ -108,7 +261,7 @@ msgid "Type" msgstr "Typ" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1344 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "Größe" @@ -117,1700 +270,1608 @@ msgstr "Größe" msgid "Last Modified" msgstr "Zuletzt geändert" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 -#: ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Editlayout.php:113 -#: ../../Zotlabs/Module/Editwebpage.php:146 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Admin.php:2113 ../../Zotlabs/Module/Settings.php:652 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Webpages.php:187 -#: ../../Zotlabs/Lib/Apps.php:337 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../include/channel.php:937 ../../include/channel.php:941 -#: ../../include/menu.php:108 ../../include/page_widgets.php:8 -#: ../../include/page_widgets.php:36 +#: ../../Zotlabs/Module/Editblock.php:109 +#: ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 +#: ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/menu.php:113 msgid "Edit" msgstr "Bearbeiten" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Blocks.php:159 -#: ../../Zotlabs/Module/Connedit.php:572 -#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Connections.php:263 -#: ../../Zotlabs/Module/Editlayout.php:136 +#: ../../Zotlabs/Module/Editblock.php:134 +#: ../../Zotlabs/Module/Editlayout.php:137 #: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Admin.php:1039 -#: ../../Zotlabs/Module/Admin.php:1213 ../../Zotlabs/Module/Admin.php:2114 -#: ../../Zotlabs/Module/Settings.php:653 ../../Zotlabs/Module/Thing.php:261 -#: ../../Zotlabs/Module/Webpages.php:189 ../../Zotlabs/Lib/Apps.php:338 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:657 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Löschen" -#: ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Storage/Browser.php:301 #, php-format msgid "You are using %1$s of your available file storage." msgstr "Sie verwenden %1$s von Ihrem verfügbaren Dateispeicher." -#: ../../Zotlabs/Storage/Browser.php:290 +#: ../../Zotlabs/Storage/Browser.php:306 #, php-format msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "Sie verwenden %1$s von %2$s verfügbarem Dateispeicher. (%3$s%)" -#: ../../Zotlabs/Storage/Browser.php:302 +#: ../../Zotlabs/Storage/Browser.php:317 msgid "WARNING:" msgstr "WARNUNG:" -#: ../../Zotlabs/Storage/Browser.php:305 +#: ../../Zotlabs/Storage/Browser.php:322 msgid "Create new folder" msgstr "Neuen Ordner anlegen" -#: ../../Zotlabs/Storage/Browser.php:307 +#: ../../Zotlabs/Storage/Browser.php:324 msgid "Upload file" msgstr "Datei hochladen" -#: ../../Zotlabs/Web/WebServer.php:120 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:49 ../../Zotlabs/Module/Group.php:72 -#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Import_items.php:112 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../include/items.php:385 -msgid "Permission denied" -msgstr "Keine Berechtigung" +#: ../../Zotlabs/Storage/Browser.php:337 +msgid "Drop files here to immediately upload" +msgstr "Dateien zum sofortigen Hochladen hier fallen lassen" -#: ../../Zotlabs/Web/WebServer.php:121 ../../Zotlabs/Web/Router.php:65 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Channel.php:105 -#: ../../Zotlabs/Module/Channel.php:226 ../../Zotlabs/Module/Channel.php:267 -#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Block.php:26 -#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Connedit.php:366 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Events.php:265 +#: ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Editlayout.php:67 #: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:69 -#: ../../Zotlabs/Module/Editwebpage.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:105 -#: ../../Zotlabs/Module/Editwebpage.php:127 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 -#: ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Filestorage.php:79 -#: ../../Zotlabs/Module/Filestorage.php:94 -#: ../../Zotlabs/Module/Filestorage.php:121 ../../Zotlabs/Module/Item.php:210 -#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Id.php:76 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:104 +#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Settings.php:59 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Mail.php:129 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:17 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 +#: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 -#: ../../Zotlabs/Module/Notifications.php:70 -#: ../../Zotlabs/Module/Photos.php:75 ../../Zotlabs/Module/Page.php:35 -#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 -#: ../../Zotlabs/Module/Poke.php:137 ../../Zotlabs/Module/Profile.php:68 -#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Profiles.php:203 -#: ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Profile_photo.php:256 -#: ../../Zotlabs/Module/Profile_photo.php:269 -#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Appman.php:75 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Profile_photo.php:265 +#: ../../Zotlabs/Module/Profile_photo.php:278 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29 +#: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Settings.php:572 ../../Zotlabs/Module/Setup.php:215 -#: ../../Zotlabs/Module/Sharedwithme.php:11 -#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 -#: ../../Zotlabs/Module/Thing.php:331 -#: ../../Zotlabs/Module/Viewconnections.php:25 -#: ../../Zotlabs/Module/Viewconnections.php:30 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:74 -#: ../../Zotlabs/Lib/Chatroom.php:137 ../../include/items.php:3438 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../include/photos.php:27 +#: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 +#: ../../Zotlabs/Module/Photos.php:73 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 +#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../include/photos.php:27 ../../include/items.php:3496 +#: ../../include/attach.php:142 ../../include/attach.php:190 +#: ../../include/attach.php:253 ../../include/attach.php:267 +#: ../../include/attach.php:274 ../../include/attach.php:339 +#: ../../include/attach.php:353 ../../include/attach.php:360 +#: ../../include/attach.php:440 ../../include/attach.php:902 +#: ../../include/attach.php:973 ../../include/attach.php:1125 msgid "Permission denied." msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:53 msgid "Not Found" msgstr "Nicht gefunden" -#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Display.php:117 ../../Zotlabs/Module/Help.php:97 -#: ../../Zotlabs/Module/Page.php:93 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 +#: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 +#: ../../include/help.php:56 msgid "Page not found." msgstr "Seite nicht gefunden." +#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Dreport.php:10 +#: ../../Zotlabs/Module/Dreport.php:66 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../include/items.php:403 +msgid "Permission denied" +msgstr "Keine Berechtigung" + #: ../../Zotlabs/Zot/Auth.php:138 msgid "" "Remote authentication blocked. You are logged into this site locally. Please" " logout and retry." msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut." -#: ../../Zotlabs/Zot/Auth.php:246 ../../Zotlabs/Module/Openid.php:76 -#: ../../Zotlabs/Module/Openid.php:183 +#: ../../Zotlabs/Zot/Auth.php:246 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:33 -#: ../../Zotlabs/Module/Filestorage.php:60 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Profile.php:20 -#: ../../Zotlabs/Module/Webpages.php:34 ../../include/channel.php:837 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859 msgid "Requested profile is not available." -msgstr "Erwünschte Profil ist nicht verfügbar." +msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Achievements.php:38 msgid "Some blurb about what to do when you're new here" msgstr "Ein Hinweis, was man tun kann, wenn man neu hier ist" -#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:152 -#: ../../Zotlabs/Module/Editblock.php:108 -msgid "Block Name" -msgstr "Block-Name" +#: ../../Zotlabs/Module/Chatsvc.php:117 +msgid "Away" +msgstr "Abwesend" -#: ../../Zotlabs/Module/Blocks.php:151 ../../include/text.php:2265 -msgid "Blocks" -msgstr "Blöcke" +#: ../../Zotlabs/Module/Chatsvc.php:122 +msgid "Online" +msgstr "Online" -#: ../../Zotlabs/Module/Blocks.php:153 -msgid "Block Title" -msgstr "Titel des Blocks" +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Ungültige Beitrags-ID (mid)" -#: ../../Zotlabs/Module/Blocks.php:154 ../../Zotlabs/Module/Layouts.php:188 -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:198 -#: ../../include/page_widgets.php:44 -msgid "Created" -msgstr "Erstellt" +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "keine Ergebnisse" -#: ../../Zotlabs/Module/Blocks.php:155 ../../Zotlabs/Module/Layouts.php:189 -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:199 -#: ../../include/page_widgets.php:45 -msgid "Edited" -msgstr "Geändert" +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "Kanal-Sync verarbeitet" -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Module/Webpages.php:188 -#: ../../include/conversation.php:1208 -msgid "Share" -msgstr "Teilen" +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "zur Warteschlange hinzugefügt" -#: ../../Zotlabs/Module/Blocks.php:163 ../../Zotlabs/Module/Layouts.php:195 -#: ../../Zotlabs/Module/Pubsites.php:47 ../../Zotlabs/Module/Webpages.php:193 -#: ../../include/page_widgets.php:39 -msgid "View" -msgstr "Ansicht" +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "zugestellt" -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Kanal nicht gefunden." +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "für Zustellung akzeptiert" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Berechtigung verweigert." +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aktualisiert" -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:588 -msgid "l, F j" -msgstr "l, j. F" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "Aktualisierung ignoriert" -#: ../../Zotlabs/Module/Cal.php:308 ../../Zotlabs/Module/Events.php:637 -#: ../../include/text.php:1732 -msgid "Link to Source" -msgstr "Link zur Quelle" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "Zugriff verweigert" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Edit Event" -msgstr "Termin bearbeiten" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Empfänger nicht gefunden." -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:665 -msgid "Create Event" -msgstr "Termin anlegen" +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "Mail widerrufen" -#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 -#: ../../Zotlabs/Module/Events.php:666 ../../Zotlabs/Module/Events.php:673 -#: ../../Zotlabs/Module/Photos.php:949 -msgid "Previous" -msgstr "Voriges" +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "Doppelte Mail erhalten" -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -#: ../../Zotlabs/Module/Events.php:667 ../../Zotlabs/Module/Events.php:674 -#: ../../Zotlabs/Module/Photos.php:958 ../../Zotlabs/Module/Setup.php:267 -msgid "Next" -msgstr "Nächste" +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "Mail zugestellt" -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:668 -#: ../../include/widgets.php:755 -msgid "Export" -msgstr "Exportieren" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Zustellungsbericht für %1$s" -#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:671 -#: ../../include/widgets.php:756 -msgid "Import" -msgstr "Import" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Optionen" -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:238 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Connedit.php:731 ../../Zotlabs/Module/Events.php:475 -#: ../../Zotlabs/Module/Events.php:672 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Filestorage.php:162 -#: ../../Zotlabs/Module/Import.php:550 -#: ../../Zotlabs/Module/Import_items.php:120 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mail.php:378 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mitem.php:235 ../../Zotlabs/Module/Photos.php:677 -#: ../../Zotlabs/Module/Photos.php:1052 ../../Zotlabs/Module/Photos.php:1092 -#: ../../Zotlabs/Module/Photos.php:1210 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Rate.php:170 -#: ../../Zotlabs/Module/Admin.php:492 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:771 ../../Zotlabs/Module/Admin.php:1032 -#: ../../Zotlabs/Module/Admin.php:1211 ../../Zotlabs/Module/Admin.php:1421 -#: ../../Zotlabs/Module/Admin.php:1648 ../../Zotlabs/Module/Admin.php:1733 -#: ../../Zotlabs/Module/Admin.php:2116 ../../Zotlabs/Module/Appman.php:126 -#: ../../Zotlabs/Module/Settings.php:590 ../../Zotlabs/Module/Settings.php:703 -#: ../../Zotlabs/Module/Settings.php:731 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Settings.php:842 -#: ../../Zotlabs/Module/Settings.php:1034 ../../Zotlabs/Module/Setup.php:312 -#: ../../Zotlabs/Module/Setup.php:353 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 ../../Zotlabs/Module/Thing.php:316 -#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:710 ../../include/widgets.php:757 -#: ../../include/widgets.php:769 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Bestätigen" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Erneut zustellen" -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:675 -msgid "Today" -msgstr "Heute" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" -#: ../../Zotlabs/Module/Channel.php:29 ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Posts and comments" -msgstr "Beiträge und Kommentare" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." -#: ../../Zotlabs/Module/Channel.php:42 -msgid "Only posts" -msgstr "Nur Beiträge" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Passwörter stimmen nicht überein." -#: ../../Zotlabs/Module/Channel.php:102 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chatraum nicht gefunden" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Raum verlassen" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Deine Registrierung konnte nicht verarbeitet werden." -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Raum löschen" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Die Registrierung auf diesem Hub ist nicht möglich." -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Ich bin gerade nicht da" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator." -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Ich bin online" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registriere Dich auf einem der anderen verbundenen Hubs." -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Lesezeichen für diesen Raum setzen" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:205 -#: ../../Zotlabs/Module/Mail.php:314 ../../include/conversation.php:1176 -msgid "Please enter a link URL:" -msgstr "Gib eine URL ein:" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Nutzungsbedingungen" -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:258 -#: ../../Zotlabs/Module/Mail.php:383 ../../Zotlabs/Lib/ThreadItem.php:722 -#: ../../include/conversation.php:1256 -msgid "Encrypt text" -msgstr "Text verschlüsseln" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../Zotlabs/Module/Chat.php:207 ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Mail.php:252 -#: ../../Zotlabs/Module/Mail.php:377 ../../include/conversation.php:1143 -msgid "Insert web link" -msgstr "Link einfügen" - -#: ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funktion deaktiviert." - -#: ../../Zotlabs/Module/Chat.php:232 -msgid "New Chatroom" -msgstr "Neuer Chatraum" - -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Chatroom name" -msgstr "Chatraumname" - -#: ../../Zotlabs/Module/Chat.php:234 -msgid "Expiration of chats (minutes)" -msgstr "Verfall von Chats (Minuten)" - -#: ../../Zotlabs/Module/Chat.php:235 ../../Zotlabs/Module/Filestorage.php:153 -#: ../../Zotlabs/Module/Photos.php:671 ../../Zotlabs/Module/Photos.php:1045 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 -#: ../../include/acl_selectors.php:283 -msgid "Permissions" -msgstr "Berechtigungen" - -#: ../../Zotlabs/Module/Chat.php:246 +#: ../../Zotlabs/Module/Register.php:229 #, php-format -msgid "%1$s's Chatrooms" -msgstr "%1$ss Chaträume" +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" -#: ../../Zotlabs/Module/Chat.php:251 -msgid "No chatrooms available" -msgstr "Keine Chaträume verfügbar" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Ihre E-Mail Adresse" -#: ../../Zotlabs/Module/Chat.php:252 ../../Zotlabs/Module/Manage.php:143 -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Create New" -msgstr "Neu anlegen" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Passwort" -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Expiration" -msgstr "Verfall" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Bitte gib Dein Passwort noch einmal ein" -#: ../../Zotlabs/Module/Chat.php:256 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../Zotlabs/Module/Chatsvc.php:117 -msgid "Away" -msgstr "Abwesend" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" +msgstr "Name oder Titel" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " -#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 -msgid "Invalid item." -msgstr "Ungültiges Element." +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" +msgstr "Wähle einen kurzen Spitznamen" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Lesezeichen hinzugefügt" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "Meine Lesezeichen" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" +msgstr "Kanaltyp und Privatspäre-Einstellungen" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "Lesezeichen meiner Kontakte" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." +msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Fortfahren" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" +msgstr "Mehr Informationen über Rollen" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Premium-Kanal-Einrichtung" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "nein" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Einschränkungen für einen Premium-Kanal aktivieren" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "ja" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." +#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "Registration" +msgstr "Registrierung" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" +msgstr "Registrieren" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +#: ../../Zotlabs/Module/Register.php:271 msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." - -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" - -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Eingeschränkter oder Premium-Kanal" - -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Konnte nicht auf den Kontakteintrag zugreifen." - -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Gewähltes Profil nicht gefunden." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen." -#: ../../Zotlabs/Module/Connedit.php:227 -msgid "Connection updated." -msgstr "Verbindung aktualisiert." +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s Konto blockiert/freigegeben" +msgstr[1] "%s Konten blockiert/freigegeben" -#: ../../Zotlabs/Module/Connedit.php:229 -msgid "Failed to update connection record." -msgstr "Konnte den Verbindungseintrag nicht aktualisieren." +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s Konto gelöscht" +msgstr[1] "%s Konten gelöscht" -#: ../../Zotlabs/Module/Connedit.php:276 -msgid "is now connected to" -msgstr "ist jetzt verbunden mit" +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" +msgstr "Konto nicht gefunden" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 -#: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Api.php:89 -#: ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:459 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "No" -msgstr "Nein" +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" +msgstr "Konto '%s' gelöscht" -#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:459 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:469 -#: ../../Zotlabs/Module/Api.php:88 ../../Zotlabs/Module/Filestorage.php:157 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 -#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:666 -#: ../../Zotlabs/Module/Profiles.php:647 ../../Zotlabs/Module/Admin.php:461 -#: ../../Zotlabs/Module/Removeme.php:61 ../../Zotlabs/Module/Settings.php:581 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1707 -msgid "Yes" -msgstr "Ja" +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" +msgstr "Konto '%s' blockiert" -#: ../../Zotlabs/Module/Connedit.php:411 -msgid "Could not access address book record." -msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Konto '%s' freigegeben" -#: ../../Zotlabs/Module/Connedit.php:425 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Administration" +msgstr "Administration" -#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 -#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 -#: ../../Zotlabs/Module/Connedit.php:480 -msgid "Unable to set address book parameters." -msgstr "Konnte die Adressbuch-Parameter nicht setzen." +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +msgid "Accounts" +msgstr "Konten" -#: ../../Zotlabs/Module/Connedit.php:503 -msgid "Connection has been removed." -msgstr "Verbindung wurde gelöscht." +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Absenden" -#: ../../Zotlabs/Module/Connedit.php:519 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/nav.php:86 ../../include/conversation.php:954 -msgid "View Profile" -msgstr "Profil ansehen" +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" +msgstr "Alle auswählen" -#: ../../Zotlabs/Module/Connedit.php:522 -#, php-format -msgid "View %s's profile" -msgstr "%ss Profil ansehen" +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" +msgstr "Registrierungen warten auf Bestätigung" -#: ../../Zotlabs/Module/Connedit.php:526 -msgid "Refresh Permissions" -msgstr "Zugriffsrechte neu laden" +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" +msgstr "Antragsdatum" -#: ../../Zotlabs/Module/Connedit.php:529 -msgid "Fetch updated permissions" -msgstr "Aktualisierte Zugriffsrechte abfragen" +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 +msgid "Email" +msgstr "E-Mail" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Recent Activity" -msgstr "Kürzliche Aktivitäten" +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." +msgstr "Keine Registrierungen." -#: ../../Zotlabs/Module/Connedit.php:536 -msgid "View recent posts and comments" -msgstr "Betrachte die neuesten Beiträge und Kommentare" +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Genehmigen" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1041 -msgid "Unblock" -msgstr "Freigeben" +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" +msgstr "Verweigern" -#: ../../Zotlabs/Module/Connedit.php:540 ../../Zotlabs/Module/Admin.php:1040 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 msgid "Block" msgstr "Blockieren" -#: ../../Zotlabs/Module/Connedit.php:543 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Freigeben" -#: ../../Zotlabs/Module/Connedit.php:544 -msgid "This connection is blocked!" -msgstr "Die Verbindung ist geblockt!" +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Connedit.php:548 -msgid "Unignore" -msgstr "Nicht ignorieren" +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" +msgstr "Alle Kanäle" -#: ../../Zotlabs/Module/Connedit.php:548 -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignorieren" +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" +msgstr "Registrierungs-Datum" -#: ../../Zotlabs/Module/Connedit.php:551 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" +msgstr "Letzte Anmeldung" -#: ../../Zotlabs/Module/Connedit.php:552 -msgid "This connection is ignored!" -msgstr "Die Verbindung wird ignoriert!" +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" +msgstr "Verfällt" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Unarchive" -msgstr "Aus Archiv zurückholen" +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" +msgstr "Service-Klasse" -#: ../../Zotlabs/Module/Connedit.php:556 -msgid "Archive" -msgstr "Archivieren" +#: ../../Zotlabs/Module/Admin/Accounts.php:189 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" -#: ../../Zotlabs/Module/Connedit.php:559 +#: ../../Zotlabs/Module/Admin/Accounts.php:190 msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" -#: ../../Zotlabs/Module/Connedit.php:560 -msgid "This connection is archived!" -msgstr "Die Verbindung ist archiviert!" - -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Unhide" -msgstr "Wieder sichtbar machen" - -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Hide" -msgstr "Verstecken" - -#: ../../Zotlabs/Module/Connedit.php:567 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" +#: ../../Zotlabs/Module/Admin/Channels.php:30 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s Kanal gesperrt/freigegeben" +msgstr[1] "%s Kanäle gesperrt/freigegeben" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "This connection is hidden!" -msgstr "Die Verbindung ist versteckt!" +#: ../../Zotlabs/Module/Admin/Channels.php:39 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Code für %s Kanal gesperrt/freigegeben" +msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Delete this connection" -msgstr "Verbindung löschen" +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s Kanal gelöscht" +msgstr[1] "%s Kanäle gelöscht" -#: ../../Zotlabs/Module/Connedit.php:590 ../../include/widgets.php:493 -msgid "Me" -msgstr "Ich" +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" +msgstr "Kanal nicht gefunden" -#: ../../Zotlabs/Module/Connedit.php:591 ../../include/widgets.php:494 -msgid "Family" -msgstr "Familie" +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanal '%s' gelöscht" -#: ../../Zotlabs/Module/Connedit.php:592 ../../Zotlabs/Module/Settings.php:342 -#: ../../Zotlabs/Module/Settings.php:346 ../../Zotlabs/Module/Settings.php:347 -#: ../../Zotlabs/Module/Settings.php:350 ../../Zotlabs/Module/Settings.php:361 -#: ../../include/widgets.php:495 ../../include/selectors.php:123 -#: ../../include/channel.php:389 ../../include/channel.php:390 -#: ../../include/channel.php:397 -msgid "Friends" -msgstr "Freunde" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:496 -msgid "Acquaintances" -msgstr "Bekannte" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanal '%s' freigegeben" -#: ../../Zotlabs/Module/Connedit.php:594 -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 ../../include/widgets.php:497 -msgid "All" -msgstr "Alle" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Code für Kanal '%s' freigegeben" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Approve this connection" -msgstr "Verbindung genehmigen" +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Code für Kanal '%s' gesperrt" -#: ../../Zotlabs/Module/Connedit.php:654 -msgid "Accept connection to allow communication" -msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +msgid "Channels" +msgstr "Kanäle" -#: ../../Zotlabs/Module/Connedit.php:659 -msgid "Set Affinity" -msgstr "Beziehung festlegen" +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" +msgstr "Sperren" -#: ../../Zotlabs/Module/Connedit.php:662 -msgid "Set Profile" -msgstr "Profil festlegen" +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" +msgstr "Freigeben" -#: ../../Zotlabs/Module/Connedit.php:665 -msgid "Set Affinity & Profile" -msgstr "Beziehung und Profile festlegen" +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" +msgstr "Code erlauben" -#: ../../Zotlabs/Module/Connedit.php:698 -msgid "none" -msgstr "Keine" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" +msgstr "Code sperren" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/widgets.php:614 -msgid "Connection Default Permissions" -msgstr "Standardzugriffsrechte für neue Verbindungen:" +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1650 +msgid "Channel" +msgstr "Kanal" -#: ../../Zotlabs/Module/Connedit.php:702 ../../include/items.php:3926 -#, php-format -msgid "Connection: %s" -msgstr "Verbindung: %s" +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Apply these permissions automatically" -msgstr "Diese Berechtigungen automatisch anwenden" +#: ../../Zotlabs/Module/Admin/Channels.php:164 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Adresse" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Connection requests will be approved without your interaction" -msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." +#: ../../Zotlabs/Module/Admin/Channels.php:166 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" -#: ../../Zotlabs/Module/Connedit.php:705 -msgid "This connection's primary address is" -msgstr "Die Hauptadresse der Verbindung ist" +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" -#: ../../Zotlabs/Module/Connedit.php:706 -msgid "Available locations:" -msgstr "Verfügbare Klone:" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "Update wurde als erfolgreich markiert" -#: ../../Zotlabs/Module/Connedit.php:710 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../Zotlabs/Module/Connedit.php:711 -msgid "Connection Tools" -msgstr "Verbindungswerkzeuge" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../Zotlabs/Module/Connedit.php:713 -msgid "Slide to adjust your degree of friendship" -msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Module/Rate.php:159 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Bewertung" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../Zotlabs/Module/Connedit.php:715 -msgid "Slide to adjust your rating" -msgstr "Verschieben, um Deine Bewertung einzustellen" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Connedit.php:721 -msgid "Optionally explain your rating" -msgstr "Optional kannst Du Deine Bewertung begründen" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Fehlgeschlagene Aktualisierungen" -#: ../../Zotlabs/Module/Connedit.php:718 -msgid "Custom Filter" -msgstr "Benutzerdefinierter Filter" +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" -#: ../../Zotlabs/Module/Connedit.php:719 -msgid "Only import posts with this text" -msgstr "Nur Beiträge mit diesem Text importieren" +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Versuche, diesen Updateschritt automatisch auszuführen" -#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:720 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "Aus" -#: ../../Zotlabs/Module/Connedit.php:720 -msgid "Do not import posts with this text" -msgstr "Beiträge mit diesem Text nicht importieren" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "An" -#: ../../Zotlabs/Module/Connedit.php:722 -msgid "This information is public!" -msgstr "Diese Information ist öffentlich!" +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Blockiere die Funktion %s" -#: ../../Zotlabs/Module/Connedit.php:727 -msgid "Connection Pending Approval" -msgstr "Verbindung wartet auf Bestätigung" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Zusätzliche Funktionen verwalten" -#: ../../Zotlabs/Module/Connedit.php:730 -msgid "inherited" -msgstr "geerbt" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Protokoll-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Connedit.php:732 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 +#: ../../include/widgets.php:1593 +msgid "Logs" +msgstr "Protokolle" -#: ../../Zotlabs/Module/Connedit.php:734 -msgid "Their Settings" -msgstr "Deren Einstellungen" +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Leeren" -#: ../../Zotlabs/Module/Connedit.php:735 -msgid "My Settings" -msgstr "Meine Einstellungen" +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Connedit.php:737 -msgid "Individual Permissions" -msgstr "Individuelle Zugriffsrechte" +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "Protokolldatei" -#: ../../Zotlabs/Module/Connedit.php:738 +#: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis." -#: ../../Zotlabs/Module/Connedit.php:739 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Protokollstufe" -#: ../../Zotlabs/Module/Connedit.php:740 -msgid "Last update:" -msgstr "Letzte Aktualisierung:" +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417 +msgid "Item not found." +msgstr "Element nicht gefunden." -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:522 ../../Zotlabs/Module/Ratings.php:86 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:20 -msgid "Public access denied." -msgstr "Öffentlichen Zugriff verweigert." +#: ../../Zotlabs/Module/Admin/Plugins.php:284 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plug-In %s deaktiviert." -#: ../../Zotlabs/Module/Directory.php:243 +#: ../../Zotlabs/Module/Admin/Plugins.php:289 #, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d Bewertung" -msgstr[1] "%d Bewertungen" +msgid "Plugin %s enabled." +msgstr "Plug-In %s aktiviert." -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Geschlecht:" +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" +msgstr "Deaktivieren" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Status:" +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" +msgstr "Aktivieren" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Webseite:" +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +msgid "Plugins" +msgstr "Plug-Ins" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1183 -msgid "Age:" -msgstr "Alter:" +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" +msgstr "Umschalten" -#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1027 -#: ../../include/bb2diaspora.php:507 -msgid "Location:" -msgstr "Ort:" +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" +msgstr "Einstellungen" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Beschreibung:" +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " +msgstr "Autor: " -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1199 -msgid "Hometown:" -msgstr "Heimatstadt:" - -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1207 -msgid "About:" -msgstr "Über:" +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " +msgstr "Betreuer:" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../include/connections.php:78 -#: ../../include/conversation.php:956 ../../include/channel.php:1012 -msgid "Connect" -msgstr "Verbinden" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " +msgstr "Minimale Version des Projekts:" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Öffentliches Forum:" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " +msgstr "Maximale Version des Projekts:" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Schlüsselwörter:" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " +msgstr "Minimale PHP Version:" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Nicht vorschlagen" +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " +msgstr "Kompatible Serverrollen: " -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Gemeinsame Verbindungen:" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " +msgstr "Benötigt:" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Globales Verzeichnis" +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" +msgstr "Abgeschaltet - Versionsinkompatibilität" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Lokales Verzeichnis" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an." -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Finde" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" +msgstr "Plugin-Repository Git URL" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ergebnisse:" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" +msgstr "Benutzerdefinierter Repository-Name" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Kanal-Vorschläge" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" +msgstr "(optional)" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "nächste Seite" +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" +msgstr "Plugin-Repository herunterladen" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "vorherige Seite" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" +msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Sortieroptionen" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installieren" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "alphabetisch" +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +msgid "Cancel" +msgstr "Abbrechen" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Entgegengesetzt alphabetisch" +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" +msgstr "Repositorien verwalten" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Neueste zuerst" +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" +msgstr "Installierte Plugin-Repositorien" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Älteste zuerst" +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" +msgstr "Ein neues Plugin-Repository installieren" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 +msgid "Update" +msgstr "Aktualisieren" -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:33 -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1255 -#: ../../Zotlabs/Module/Admin.php:1561 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3359 -msgid "Item not found." -msgstr "Element nicht gefunden." +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" +msgstr "Zweig/Branch wechseln" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:81 -msgid "Item not found" -msgstr "Element nicht gefunden" +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989 +msgid "Remove" +msgstr "Entfernen" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1228 -msgid "Title (optional)" -msgstr "Titel (optional)" +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" +msgstr "Neues Profilfeld" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Block bearbeiten" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" +msgstr "Kurzname für das Feld" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Kein Kanal." +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" +msgstr "Systemname des Feldes" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Gemeinsame Verbindungen" +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" +msgstr "Art des Inhalts" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Keine gemeinsamen Verbindungen." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" +msgstr "Feldname" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Blockiert" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" +msgstr "Bezeichnung auf Profilseiten" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignoriert" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" +msgstr "Hilfetext" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Versteckt" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" +msgstr "Zusätzliche Informationen (optional)" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviert" +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../include/text.php:972 ../../include/text.php:984 +#: ../../include/widgets.php:201 +msgid "Save" +msgstr "Speichern" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1535 -msgid "New" -msgstr "Neu" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" +msgstr "Feld-Definition nicht gefunden" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Neue Verbindungen" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" +msgstr "Profilfeld bearbeiten" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +msgid "Profile Fields" +msgstr "Profil Felder" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Alle Verbindungen" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" +msgstr "Notwendige Profil Felder" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Alle Verbindungen anzeigen" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" +msgstr "Erweiterte Profil Felder" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Nur blockierte Verbindungen anzeigen" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" +msgstr "(zusätzlich zu notwendige Felder)" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Nur ignorierte Verbindungen anzeigen" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" +msgstr "Alle verfügbaren Felder" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Nur archivierte Verbindungen anzeigen" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" +msgstr "Benutzerdefinierte Felder" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Nur versteckte Verbindungen anzeigen" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" +msgstr "Erstelle benutzerdefiniertes Feld" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "Wartet auf Genehmigung" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" +msgstr "Warteschlangenstatistiken" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" +msgstr "Einträge insgesamt" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Verbindung bearbeiten" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" +msgstr "Priorität" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Verbindung löschen" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" +msgstr "Ziel-URL" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Kanaladresse" +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markieren" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Netzwerk" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" +msgstr "Warteschlange für diesen Hub leeren" -#: ../../Zotlabs/Module/Connections.php:270 ../../Zotlabs/Module/Admin.php:710 -msgid "Status" -msgstr "Status" +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" +msgstr "Letzter Kontakt" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "Verbunden" +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher." -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Verbindung genehmigen" +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:" -#: ../../Zotlabs/Module/Connections.php:275 -#: ../../Zotlabs/Module/Admin.php:1037 -msgid "Approve" -msgstr "Genehmigen" - -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Verbindung ignorieren" - -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Kürzliche Aktivitäten" +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"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/
    " -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:208 -#: ../../include/text.php:875 ../../include/nav.php:186 -msgid "Connections" -msgstr "Verbindungen" +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:228 ../../include/text.php:945 -#: ../../include/text.php:957 ../../include/nav.php:165 -#: ../../include/acl_selectors.php:276 -msgid "Search" -msgstr "Suche" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" +msgstr "Sicherheit" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Verbindungen durchsuchen" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Öffentlichen Zugriff blockieren" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Verbindung suchen" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:79 -msgid "Image uploaded but image cropping failed." -msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Setze den \"Transport Security\" HTTP Header" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Cover Foto" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Setze den \"Content Security Policy\" HTTP Header" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:133 -msgid "Image resize failed." -msgstr "Bild-Anpassung fehlgeschlagen." +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Erlaubte Domains für E-Mails" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:144 -msgid "Unable to process image" -msgstr "Kann Bild nicht verarbeiten" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:217 -msgid "Image upload failed." -msgstr "Hochladen des Bilds fehlgeschlagen." +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Nicht erlaubte Domains für E-Mails" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:236 -msgid "Unable to process image." -msgstr "Kann Bild nicht verarbeiten." +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4270 -msgid "female" -msgstr "weiblich" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Kommunikation nur von diesen Seiten erlauben" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4271 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s hat ihr %2$s aktualisiert" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4272 -msgid "male" -msgstr "männlich" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Kommunikation von diesen Seiten blockieren" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4273 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s hat sein %2$s aktualisiert" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Kommunikation nur von diesen Kanälen erlauben" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4275 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s hat sein/ihr %2$s aktualisiert" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1661 -msgid "cover photo" -msgstr "Cover Foto" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Kommunikation von folgenden Kanälen blockieren" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:283 -#: ../../Zotlabs/Module/Profile_photo.php:324 -msgid "Photo not available." -msgstr "Foto nicht verfügbar." +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:365 -msgid "Upload File:" -msgstr "Datei hochladen:" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:366 -msgid "Select a profile:" -msgstr "Wähle ein Profil:" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Cover Foto hochladen" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Eingebettete HTML Inhalte von diesen Seiten blockieren" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -#: ../../Zotlabs/Module/Settings.php:985 -msgid "or" -msgstr "oder" +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." +msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "skip this step" -msgstr "diesen Schritt überspringen" +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" +msgstr "Standard" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:374 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" +msgstr "mobil" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:390 -msgid "Crop Image" -msgstr "Bild zuschneiden" +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" +msgstr "experimentell" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:391 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" +msgstr "nicht unterstützt" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:393 -msgid "Done Editing" -msgstr "Bearbeitung fertigstellen" +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" +msgstr "Nein" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "Element kann nicht bearbeitet werden." +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" +msgstr "Ja - mit Zustimmung" -#: ../../Zotlabs/Module/Editpost.php:106 ../../Zotlabs/Module/Rpost.php:135 -msgid "Edit post" -msgstr "Bearbeite Beitrag" +#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" +msgstr "Ja" -#: ../../Zotlabs/Module/Events.php:26 -msgid "Calendar entries imported." -msgstr "Kalendereinträge wurden importiert." +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" +msgstr "Mein Server ist kein öffentlicher Server" -#: ../../Zotlabs/Module/Events.php:28 -msgid "No calendar entries found." -msgstr "Keine Kalendereinträge gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" +msgstr "Meine Seite hat nur bezahlten Zugriff" -#: ../../Zotlabs/Module/Events.php:105 -msgid "Event can not end before it has started." -msgstr "Termin-Ende liegt vor dem Beginn." +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" +msgstr "Meine Seite hat nur freien Zugriff" -#: ../../Zotlabs/Module/Events.php:107 ../../Zotlabs/Module/Events.php:116 -#: ../../Zotlabs/Module/Events.php:136 -msgid "Unable to generate preview." -msgstr "Vorschau konnte nicht erzeugt werden." +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Events.php:114 -msgid "Event title and start time are required." -msgstr "Titel und Startzeit des Termins sind erforderlich." +#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 +msgid "Basic/Minimal Social Networking" +msgstr "Einfaches/minimales soziales Netzwerken" + +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 +msgid "Standard Configuration (default)" +msgstr "Standardkonfiguration (Standard)" + +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 +msgid "Professional" +msgstr "Professionell" + +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" +msgstr "Anfänger/Basis" + +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" +msgstr "Anfänger - unerfahren, aber bereit zu lernen" + +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "Fortgeschritten - relativ komfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "Fortgeschritten - sehr komfortabel" + +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" +msgstr "Experte - Ich kann Computercode schreiben" + +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" +msgstr "Zauberer - ich kann wahrscheinlich mehr als Du" + +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" +msgstr "Seite" -#: ../../Zotlabs/Module/Events.php:134 ../../Zotlabs/Module/Events.php:259 -msgid "Event not found." -msgstr "Termin nicht gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" +msgstr "Dateiupload" -#: ../../Zotlabs/Module/Events.php:254 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:949 -#: ../../include/text.php:1943 ../../include/conversation.php:123 -msgid "event" -msgstr "Termin" +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" +msgstr "Richtlinien" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Edit event title" -msgstr "Termintitel bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Fortgeschritten" -#: ../../Zotlabs/Module/Events.php:449 -msgid "Event title" -msgstr "Termintitel" +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" +msgstr "Seitenname" -#: ../../Zotlabs/Module/Events.php:449 ../../Zotlabs/Module/Events.php:454 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Benötigt" +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 +msgid "Server Configuration/Role" +msgstr "Serverkonfiguration/Rolle" -#: ../../Zotlabs/Module/Events.php:451 -msgid "Categories (comma-separated list)" -msgstr "Kategorien (Kommagetrennte Liste)" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" +msgstr "Standard-Qualifikationsstufe der Website" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit Category" -msgstr "Kategorie bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten." -#: ../../Zotlabs/Module/Events.php:452 -msgid "Category" -msgstr "Kategorie" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" +msgstr "Sperre die technische Qualifikationsstufe" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit start date and time" -msgstr "Startdatum und -zeit bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" +msgstr "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Start date and time" -msgstr "Startdatum und -zeit" +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Events.php:456 ../../Zotlabs/Module/Events.php:459 -msgid "Finish date and time are not known or not relevant" -msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" +msgstr "Administrator-Informationen" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit finish date and time" -msgstr "Enddatum und -zeit bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Finish date and time" -msgstr "Enddatum und -zeit" +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" +msgstr "System-Sprache" -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:461 -msgid "Adjust for viewer timezone" -msgstr "An die Zeitzone des Betrachters anpassen" +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" +msgstr "System-Theme" -#: ../../Zotlabs/Module/Events.php:460 +#: ../../Zotlabs/Module/Admin/Site.php:287 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" -#: ../../Zotlabs/Module/Events.php:462 -msgid "Edit Description" -msgstr "Beschreibung bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" +msgstr "Mobile System-Theme:" -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Appman.php:117 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Beschreibung" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" +msgstr "Theme für mobile Geräte" -#: ../../Zotlabs/Module/Events.php:464 -msgid "Edit Location" -msgstr "Ort bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" +msgstr "Feeds als Verbindungen erlauben" -#: ../../Zotlabs/Module/Events.php:464 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:477 ../../Zotlabs/Module/Profiles.php:698 -#: ../../Zotlabs/Module/Pubsites.php:41 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Ort" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" +msgstr "(führt zu hoher Systemlast)" -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:469 -msgid "Share this event" -msgstr "Den Termin teilen" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" +msgstr "Maximale Bildgröße" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Webpages.php:194 ../../Zotlabs/Lib/ThreadItem.php:719 -#: ../../include/conversation.php:1187 ../../include/page_widgets.php:40 -msgid "Preview" -msgstr "Vorschau" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../Zotlabs/Module/Events.php:471 ../../include/conversation.php:1232 -msgid "Permission settings" -msgstr "Berechtigungs-Einstellungen" +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" +msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../Zotlabs/Module/Events.php:476 -msgid "Advanced Options" -msgstr "Weitere Optionen" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" +msgstr "Nur mit Einladung" -#: ../../Zotlabs/Module/Events.php:610 -msgid "Edit event" -msgstr "Termin bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." -#: ../../Zotlabs/Module/Events.php:612 -msgid "Delete event" -msgstr "Termin löschen" +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../Zotlabs/Module/Events.php:646 -msgid "calendar" -msgstr "Kalender" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "Registrierungstext" -#: ../../Zotlabs/Module/Events.php:706 -msgid "Event removed" -msgstr "Termin gelöscht" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../Zotlabs/Module/Events.php:709 -msgid "Failed to remove event" -msgstr "Termin konnte nicht gelöscht werden" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:220 -#: ../../include/nav.php:92 ../../include/conversation.php:1632 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1406 ../../Zotlabs/Module/Settings.php:591 -#: ../../Zotlabs/Module/Settings.php:617 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1259 -msgid "Cancel" -msgstr "Abbrechen" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" +msgstr "Homepage-URL schützen" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Diese Webseite ist kein Verzeichnisserver" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" +msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Speichern in Ordner:" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "– auswählen –" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" +msgstr "Erlaubte Domains für Kontakte" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2033 -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:946 -#: ../../include/text.php:958 ../../include/widgets.php:201 -msgid "Save" -msgstr "Speichern" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/Dreport.php:27 -msgid "Invalid message" -msgstr "Ungültige Beitrags-ID (mid)" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" +msgstr "E-Mail-Adressen überprüfen" -#: ../../Zotlabs/Module/Dreport.php:59 -msgid "no results" -msgstr "keine Ergebnisse" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../Zotlabs/Module/Dreport.php:64 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Zustellungsbericht für %1$s" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" +msgstr "Veröffentlichung erzwingen" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "channel sync processed" -msgstr "Kanal-Sync verarbeitet" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../Zotlabs/Module/Dreport.php:82 -msgid "queued" -msgstr "zur Warteschlange hinzugefügt" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "Öffentliche Beiträge importieren" -#: ../../Zotlabs/Module/Dreport.php:86 -msgid "posted" -msgstr "zugestellt" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." -#: ../../Zotlabs/Module/Dreport.php:90 -msgid "accepted for delivery" -msgstr "für Zustellung akzeptiert" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" +msgstr "Log-in auf der Startseite" -#: ../../Zotlabs/Module/Dreport.php:94 -msgid "updated" -msgstr "aktualisiert" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "update ignored" -msgstr "Aktualisierung ignoriert" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" +msgstr "Kontext-Hilfe aktivieren" -#: ../../Zotlabs/Module/Dreport.php:100 -msgid "permission denied" -msgstr "Zugriff verweigert" +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." -#: ../../Zotlabs/Module/Dreport.php:104 -msgid "recipient not found" -msgstr "Empfänger nicht gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" +msgstr "Verzeichnisserver-URL" -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "mail recalled" -msgstr "Mail widerrufen" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" +msgstr "Standard-Verzeichnisserver" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "duplicate mail received" -msgstr "Doppelte Mail erhalten" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" +msgstr "Proxy Benutzer" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "mail delivered" -msgstr "Mail zugestellt" +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" +msgstr "Proxy URL" -#: ../../Zotlabs/Module/Editlayout.php:126 -#: ../../Zotlabs/Module/Layouts.php:127 ../../Zotlabs/Module/Layouts.php:186 -msgid "Layout Name" -msgstr "Layout-Name" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" +msgstr "Netzwerk-Timeout" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:130 -msgid "Layout Description (Optional)" -msgstr "Layout-Beschreibung (optional)" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../Zotlabs/Module/Editlayout.php:135 -msgid "Edit Layout" -msgstr "Layout bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" +msgstr "Auslieferung Intervall" -#: ../../Zotlabs/Module/Editwebpage.php:143 -msgid "Page link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Webseite bearbeiten" +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" +msgstr "Zustellungen pro Prozess" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Kanal hinzugefügt." +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." -#: ../../Zotlabs/Module/Acl.php:227 -msgid "network" -msgstr "Netzwerk" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" +msgstr "Abfrageintervall" -#: ../../Zotlabs/Module/Acl.php:237 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppe wurde erstellt." +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" +msgstr "Maximales Load Average" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Gruppe konnte nicht erstellt werden." +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3893 -msgid "Privacy group not found." -msgstr "Gruppe nicht gefunden." +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppe wurde aktualisiert." +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" +msgstr "0 = keine Löschung importierter Inhalte" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Erstelle eine Gruppe für Kanäle." +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." +msgstr "Theme-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Gruppenname:" +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." +msgstr "Keine Theme gefunden." -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "Mitglieder sind sichtbar für andere Kanäle" +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "Bildschirmfoto" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppe wurde entfernt." +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" +msgstr "Themes" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Gruppe konnte nicht entfernt werden." +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" +msgstr "[Experimentell]" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Gruppeneditor" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" +msgstr "[Nicht unterstützt]" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Mitglieder" - -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Alle verbundenen Kanäle" - -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." - -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Inhalte von Firefox nach $Projectname teilen" - -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Aktiviert den $Projectname-Provider für firefox" - -#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 -msgid "Authorize application connection" -msgstr "Zugriff für die Anwendung autorisieren" - -#: ../../Zotlabs/Module/Api.php:62 -msgid "Return to your app and insert this Securty Code:" -msgstr "Trage folgenden Sicherheitscode in der Anwendung ein:" - -#: ../../Zotlabs/Module/Api.php:72 -msgid "Please login to continue." -msgstr "Zum Weitermachen, bitte einloggen." - -#: ../../Zotlabs/Module/Api.php:87 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" - -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Suche in der Dokumentation" - -#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 -#: ../../Zotlabs/Module/Help.php:79 -msgid "Help:" -msgstr "Hilfe:" - -#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 -#: ../../Zotlabs/Module/Layouts.php:183 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/nav.php:159 -msgid "Help" -msgstr "Hilfe" - -#: ../../Zotlabs/Module/Help.php:120 -msgid "$Projectname Documentation" -msgstr "$Projectname-Dokumentation" - -#: ../../Zotlabs/Module/Filestorage.php:88 -msgid "Permission Denied." -msgstr "Zugriff verweigert." - -#: ../../Zotlabs/Module/Filestorage.php:104 -msgid "File not found." -msgstr "Datei nicht gefunden." - -#: ../../Zotlabs/Module/Filestorage.php:147 -msgid "Edit file permissions" -msgstr "Dateiberechtigungen bearbeiten" - -#: ../../Zotlabs/Module/Filestorage.php:156 -msgid "Set/edit permissions" -msgstr "Berechtigungen setzen/ändern" - -#: ../../Zotlabs/Module/Filestorage.php:157 -msgid "Include all files and sub folders" -msgstr "Alle Dateien und Unterverzeichnisse einbinden" - -#: ../../Zotlabs/Module/Filestorage.php:158 -msgid "Return to file list" -msgstr "Zurück zur Dateiliste" - -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Copy/paste this code to attach file to a post" -msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" - -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" - -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Share this file" -msgstr "Diese Datei freigeben" - -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Show URL to this file" -msgstr "URL zu dieser Datei anzeigen" - -#: ../../Zotlabs/Module/Filestorage.php:165 -msgid "Notify your contacts about this file" -msgstr "Meine Kontakte über diese Datei benachrichtigen" - -#: ../../Zotlabs/Module/Apps.php:47 ../../include/widgets.php:102 -#: ../../include/nav.php:163 -msgid "Apps" -msgstr "Apps" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Element nicht verfügbar." - -#: ../../Zotlabs/Module/Import.php:32 +#: ../../Zotlabs/Module/Import.php:33 #, php-format msgid "Your service plan only allows %d channels." msgstr "Dein Vertrag erlaubt nur %d Kanäle." -#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 msgid "Nothing to import." msgstr "Nichts zu importieren." -#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 msgid "Unable to download data from old server" msgstr "Daten können vom alten Server nicht heruntergeladen werden" -#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import.php:101 #: ../../Zotlabs/Module/Import_items.php:72 msgid "Imported file is empty." msgstr "Die importierte Datei ist leer." -#: ../../Zotlabs/Module/Import.php:122 -#: ../../Zotlabs/Module/Import_items.php:86 +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 #, php-format msgid "Warning: Database versions differ by %1$d updates." msgstr "Achtung: Datenbankversionen unterscheiden sich um %1$d Aktualisierungen." -#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:86 +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 msgid "Cloned channel not found. Import failed." msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Import.php:160 +#: ../../Zotlabs/Module/Import.php:163 msgid "No channel. Import failed." msgstr "Kein Kanal. Import fehlgeschlagen." -#: ../../Zotlabs/Module/Import.php:510 +#: ../../Zotlabs/Module/Import.php:520 #: ../../include/Import/import_diaspora.php:142 msgid "Import completed." msgstr "Import abgeschlossen." -#: ../../Zotlabs/Module/Import.php:532 +#: ../../Zotlabs/Module/Import.php:542 msgid "You must be logged in to use this feature." msgstr "Du musst angemeldet sein um diese Funktion zu nutzen." -#: ../../Zotlabs/Module/Import.php:537 +#: ../../Zotlabs/Module/Import.php:547 msgid "Import Channel" msgstr "Kanal importieren" -#: ../../Zotlabs/Module/Import.php:538 +#: ../../Zotlabs/Module/Import.php:548 msgid "" "Use this form to import an existing channel from a different server/hub. You" " may retrieve the channel identity from the old server/hub via the network " "or provide an export file." msgstr "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren." -#: ../../Zotlabs/Module/Import.php:539 -#: ../../Zotlabs/Module/Import_items.php:119 +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 msgid "File to Upload" msgstr "Hochzuladende Datei:" -#: ../../Zotlabs/Module/Import.php:540 +#: ../../Zotlabs/Module/Import.php:550 msgid "Or provide the old server/hub details" msgstr "Oder gib die Details Deines bisherigen $Projectname-Hubs ein" -#: ../../Zotlabs/Module/Import.php:541 +#: ../../Zotlabs/Module/Import.php:551 msgid "Your old identity address (xyz@example.com)" msgstr "Bisherige Kanal-Adresse (xyz@example.com)" -#: ../../Zotlabs/Module/Import.php:542 +#: ../../Zotlabs/Module/Import.php:552 msgid "Your old login email address" msgstr "Deine alte Login-E-Mail-Adresse" -#: ../../Zotlabs/Module/Import.php:543 +#: ../../Zotlabs/Module/Import.php:553 msgid "Your old login password" msgstr "Dein altes Passwort" -#: ../../Zotlabs/Module/Import.php:544 +#: ../../Zotlabs/Module/Import.php:554 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" @@ -1818,446 +1879,692 @@ msgid "" "primary location for files, photos, and media." msgstr "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige $Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein." -#: ../../Zotlabs/Module/Import.php:545 +#: ../../Zotlabs/Module/Import.php:555 msgid "Make this hub my primary location" msgstr "Dieser $Pojectname-Hub ist mein primärer Hub." -#: ../../Zotlabs/Module/Import.php:546 +#: ../../Zotlabs/Module/Import.php:556 msgid "" "Import existing posts if possible (experimental - limited by available " "memory" msgstr "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher" -#: ../../Zotlabs/Module/Import.php:547 +#: ../../Zotlabs/Module/Import.php:557 msgid "" "This process may take several minutes to complete. Please submit the form " "only once and leave this page open until finished." msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen." -#: ../../Zotlabs/Module/Item.php:178 -msgid "Unable to locate original post." -msgstr "Originalbeitrag nicht gefunden." - -#: ../../Zotlabs/Module/Item.php:427 -msgid "Empty post discarded." -msgstr "Leeren Beitrag verworfen." +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Photos.php:509 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Öffentlichen Zugriff verweigert." -#: ../../Zotlabs/Module/Item.php:467 -msgid "Executable content type not permitted to this channel." -msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d Bewertung" +msgstr[1] "%d Bewertungen" -#: ../../Zotlabs/Module/Item.php:847 -msgid "Duplicate post suppressed." -msgstr "Doppelter Beitrag unterdrückt." +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geschlecht:" -#: ../../Zotlabs/Module/Item.php:977 -msgid "System error. Post not saved." -msgstr "Systemfehler. Beitrag nicht gespeichert." +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status:" -#: ../../Zotlabs/Module/Item.php:1241 -msgid "Unable to obtain post information from database." -msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Webseite:" -#: ../../Zotlabs/Module/Item.php:1248 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Alter:" -#: ../../Zotlabs/Module/Item.php:1255 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 +msgid "Location:" +msgstr "Ort:" -#: ../../Zotlabs/Module/Layouts.php:181 ../../include/text.php:2267 -msgid "Layouts" -msgstr "Layouts" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Layouts.php:183 -msgid "Comanche page description language help" -msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Layouts.php:187 -msgid "Layout Description" -msgstr "Layout-Beschreibung" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Über:" -#: ../../Zotlabs/Module/Layouts.php:192 -msgid "Download PDL file" -msgstr "PDL-Datei herunterladen" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Verbinden" -#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Öffentliches Forum:" -#: ../../Zotlabs/Module/Home.php:79 -#, php-format -msgid "Welcome to %s" -msgstr "Willkommen auf %s" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Schlüsselwörter:" -#: ../../Zotlabs/Module/Id.php:13 -msgid "First Name" -msgstr "Vorname" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Nicht vorschlagen" -#: ../../Zotlabs/Module/Id.php:14 -msgid "Last Name" -msgstr "Nachname" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Gemeinsame Verbindungen:" -#: ../../Zotlabs/Module/Id.php:15 -msgid "Nickname" -msgstr "Spitzname" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Globales Verzeichnis" -#: ../../Zotlabs/Module/Id.php:16 -msgid "Full Name" -msgstr "Voller Name" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Lokales Verzeichnis" -#: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../Zotlabs/Module/Admin.php:1035 ../../Zotlabs/Module/Admin.php:1047 -#: ../../include/network.php:2151 ../../boot.php:1705 -msgid "Email" -msgstr "E-Mail" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Finde" -#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 -#: ../../Zotlabs/Module/Id.php:21 ../../Zotlabs/Lib/Apps.php:236 -msgid "Profile Photo" -msgstr "Profilfoto" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ergebnisse:" -#: ../../Zotlabs/Module/Id.php:22 -msgid "Profile Photo 16px" -msgstr "Profilfoto 16 px" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Kanal-Vorschläge" -#: ../../Zotlabs/Module/Id.php:23 -msgid "Profile Photo 32px" -msgstr "Profilfoto 32 px" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "nächste Seite" -#: ../../Zotlabs/Module/Id.php:24 -msgid "Profile Photo 48px" -msgstr "Profilfoto 48 px" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "vorherige Seite" -#: ../../Zotlabs/Module/Id.php:25 -msgid "Profile Photo 64px" -msgstr "Profilfoto 64 px" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Sortieroptionen" -#: ../../Zotlabs/Module/Id.php:26 -msgid "Profile Photo 80px" -msgstr "Profilfoto 80 px" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "alphabetisch" -#: ../../Zotlabs/Module/Id.php:27 -msgid "Profile Photo 128px" -msgstr "Profilfoto 128 px" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Entgegengesetzt alphabetisch" -#: ../../Zotlabs/Module/Id.php:28 -msgid "Timezone" -msgstr "Zeitzone" +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Neueste zuerst" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Homepage-URL" +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Älteste zuerst" -#: ../../Zotlabs/Module/Id.php:30 ../../Zotlabs/Lib/Apps.php:234 -msgid "Language" -msgstr "Sprache" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Keine Einträge gefunden (einige könnten versteckt sein)." -#: ../../Zotlabs/Module/Id.php:31 -msgid "Birth Year" -msgstr "Geburtsjahr" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Lesezeichen hinzugefügt" -#: ../../Zotlabs/Module/Id.php:32 -msgid "Birth Month" -msgstr "Geburtsmonat" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Meine Lesezeichen" -#: ../../Zotlabs/Module/Id.php:33 -msgid "Birth Day" -msgstr "Geburtstag" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Lesezeichen meiner Kontakte" -#: ../../Zotlabs/Module/Id.php:34 -msgid "Birthdate" -msgstr "Geburtsdatum" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Bearbeite Beitrag" -#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Geschlecht" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Keine Bewertungen" -#: ../../Zotlabs/Module/Id.php:108 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Male" -msgstr "Männlich" +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Bewertungen" -#: ../../Zotlabs/Module/Id.php:110 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 -msgid "Female" -msgstr "Weiblich" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Bewertung: " -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "Webseite" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Webseite: " -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "Block" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Beschreibung: " -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "Layout" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1671 +msgid "Photos" +msgstr "Fotos" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "Menü" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Ungültiges Element." -#: ../../Zotlabs/Module/Impel.php:196 -#, php-format -msgid "%s element installed" -msgstr "Element für %s installiert" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanal nicht gefunden." -#: ../../Zotlabs/Module/Impel.php:199 -#, php-format -msgid "%s element installation failed" -msgstr "Installation des Elements %s fehlgeschlagen" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mögen/Nicht mögen" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Speichern in Ordner:" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "– auswählen –" -#: ../../Zotlabs/Module/Like.php:25 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Blockiert" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Ungültige Anfrage." +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoriert" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "Kanal" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Versteckt" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Sache" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviert" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Kanal nicht vorhanden." +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1572 +msgid "New" +msgstr "Neu" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Die vorherige Aktion wurde rückgängig gemacht." +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Alle" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "Foto" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1946 ../../include/conversation.php:148 -msgid "status" -msgstr "Status" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Ausstehende (neue) Verbindungsanfragen anzeigen" -#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle Verbindungen" -#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s gefällt %2$ss %3$s nicht" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Alle Verbindungen anzeigen" -#: ../../Zotlabs/Module/Like.php:424 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s stimmt %2$ss %3$s zu" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Nur blockierte Verbindungen anzeigen" -#: ../../Zotlabs/Module/Like.php:426 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s lehnt %2$ss %3$s ab" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Nur ignorierte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Nur archivierte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Nur versteckte Verbindungen anzeigen" + +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Wartet auf Genehmigung" -#: ../../Zotlabs/Module/Like.php:428 +#: ../../Zotlabs/Module/Connections.php:254 #, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s enthält sich zu %2$ss %3$s" +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Like.php:430 +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Verbindung bearbeiten" + +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Verbindung löschen" + +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaladresse" + +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Netzwerk" + +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Status" + +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Verbunden" + +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Verbindung genehmigen" + +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Verbindung ignorieren" + +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignorieren" + +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Kürzliche Aktivitäten" + +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:191 ../../include/text.php:901 +msgid "Connections" +msgstr "Verbindungen" + +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 +#: ../../include/acl_selectors.php:174 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/widgets.php:315 +msgid "Search" +msgstr "Suche" + +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Verbindungen durchsuchen" + +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Verbindung suchen" + +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." + +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Cover Foto" + +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Bild-Anpassung fehlgeschlagen." + +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Kann Bild nicht verarbeiten" + +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Hochladen des Bilds fehlgeschlagen." + +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Kann Bild nicht verarbeiten." + +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" +msgstr "weiblich" + +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 #, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s teil" +msgid "%1$s updated her %2$s" +msgstr "%1$s hat ihr %2$s aktualisiert" + +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" +msgstr "männlich" -#: ../../Zotlabs/Module/Like.php:432 +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 #, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s nimmt an %2$ss %3$s nicht teil" +msgid "%1$s updated his %2$s" +msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Like.php:434 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 #, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" +msgid "%1$s updated their %2$s" +msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Like.php:537 -msgid "Action completed." -msgstr "Aktion durchgeführt." +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" +msgstr "Cover Foto" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Thank you." -msgstr "Vielen Dank." +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto nicht verfügbar." -#: ../../Zotlabs/Module/Import_items.php:102 -msgid "Import completed" -msgstr "Import abgeschlossen" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Datei hochladen:" -#: ../../Zotlabs/Module/Import_items.php:117 -msgid "Import Items" -msgstr "Beiträge importieren" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Wähle ein Profil:" -#: ../../Zotlabs/Module/Import_items.php:118 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Cover Foto hochladen" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Einladungslimit überschritten." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" +msgstr "oder" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Keine gültige Email Adresse." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "diesen Schritt überspringen" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Schließe Dich uns auf $Projectname an!" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "ein Foto aus meinen Fotoalben" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Bild zuschneiden" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Nachricht konnte nicht zugestellt werden." +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d Nachricht gesendet." -msgstr[1] "%d Nachrichten gesendet." +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Bearbeitung fertigstellen" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Du hast keine weiteren verfügbare Einladungen" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Element nicht gefunden" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Einladungen senden" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Block-Name" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Email-Adressen eintragen, eine pro Zeile:" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Link einfügen" -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:249 -msgid "Your message:" -msgstr "Deine Nachricht:" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 +msgid "Title (optional)" +msgstr "Titel (optional)" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Schließe Dich uns auf $Projectname an!" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Block bearbeiten" -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Layout-Name" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Layout-Beschreibung (optional)" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Layout bearbeiten" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oder besuche" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Klicke auf [Verbinden]" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Webseite bearbeiten" -#: ../../Zotlabs/Module/Lockview.php:61 -msgid "Remote privacy information not available." -msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Kann Menü nicht aktualisieren." -#: ../../Zotlabs/Module/Lockview.php:82 -msgid "Visible to:" -msgstr "Sichtbar für:" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Kann Menü nicht erstellen." + +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Name des Menüs" + +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" + +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menütitel" + +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" + +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Lesezeichen erlauben" + +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" + +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Absenden und fortfahren" + +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" +msgstr "Menüs" + +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Löschen" + +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Erstellt" + +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Geändert" + +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Lesezeichen erlaubt" + +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Lösche dieses Menü" + +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bearbeite Menü Inhalte" + +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dieses Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menü konnte nicht gelöscht werden." + +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menü nicht gefunden" + +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Menü Name" + +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Menü Titel" + +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Menü Titel wie er von anderen gesehen wird" + +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Erlaube Lesezeichen" + +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Nicht gefunden." + +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installiert." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Klon nicht gefunden." +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "Fehlerhafte App." -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Code einbetten" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "App bearbeiten" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Synchronisiere Klone" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "App erstellen" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Keine Klon-Adressen gefunden." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Name der App" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Klon-Adressen verwalten" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Benötigt" -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -#: ../../Zotlabs/Module/Admin.php:1224 -msgid "Address" -msgstr "Adresse" +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Ort (URL) der App" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primär" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Beschreibung" -#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 -msgid "Drop" -msgstr "Löschen" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL zum Icon" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Jetzt synchronisieren" +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 Pixel – optional" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "Versions-ID" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Preis der App" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Server nicht gefunden." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Ort (URL), um die App zu kaufen" #: ../../Zotlabs/Module/Mail.php:38 msgid "Unable to lookup recipient." @@ -2271,956 +2578,928 @@ msgstr "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen." msgid "Cannot verify requested channel." msgstr "Verifizierung des angeforderten Kanals fehlgeschlagen." -#: ../../Zotlabs/Module/Mail.php:78 +#: ../../Zotlabs/Module/Mail.php:70 msgid "Selected channel has private message restrictions. Send failed." msgstr "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen." -#: ../../Zotlabs/Module/Mail.php:143 +#: ../../Zotlabs/Module/Mail.php:135 msgid "Messages" msgstr "Nachrichten" -#: ../../Zotlabs/Module/Mail.php:178 +#: ../../Zotlabs/Module/Mail.php:170 msgid "Message recalled." msgstr "Nachricht widerrufen." -#: ../../Zotlabs/Module/Mail.php:191 +#: ../../Zotlabs/Module/Mail.php:183 msgid "Conversation removed." msgstr "Unterhaltung gelöscht." -#: ../../Zotlabs/Module/Mail.php:206 ../../Zotlabs/Module/Mail.php:315 +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Gib eine URL ein:" + +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 msgid "Expires YYYY-MM-DD HH:MM" msgstr "Verfällt YYYY-MM-DD HH;MM" -#: ../../Zotlabs/Module/Mail.php:234 +#: ../../Zotlabs/Module/Mail.php:226 msgid "Requested channel is not in this network" msgstr "Angeforderter Kanal ist nicht in diesem Netzwerk." -#: ../../Zotlabs/Module/Mail.php:242 +#: ../../Zotlabs/Module/Mail.php:234 msgid "Send Private Message" msgstr "Private Nachricht senden" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 msgid "To:" msgstr "An:" -#: ../../Zotlabs/Module/Mail.php:246 ../../Zotlabs/Module/Mail.php:370 +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 msgid "Subject:" msgstr "Betreff:" -#: ../../Zotlabs/Module/Mail.php:251 ../../Zotlabs/Module/Mail.php:376 -#: ../../include/conversation.php:1220 +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "Deine Nachricht:" + +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 msgid "Attach file" msgstr "Datei anhängen" -#: ../../Zotlabs/Module/Mail.php:253 +#: ../../Zotlabs/Module/Mail.php:245 msgid "Send" msgstr "Absenden" -#: ../../Zotlabs/Module/Mail.php:256 ../../Zotlabs/Module/Mail.php:381 -#: ../../include/conversation.php:1251 +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 msgid "Set expiration date" msgstr "Verfallsdatum" -#: ../../Zotlabs/Module/Mail.php:340 +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" +msgstr "Text verschlüsseln" + +#: ../../Zotlabs/Module/Mail.php:332 msgid "Delete message" msgstr "Nachricht löschen" -#: ../../Zotlabs/Module/Mail.php:341 +#: ../../Zotlabs/Module/Mail.php:333 msgid "Delivery report" msgstr "Zustellungsbericht" -#: ../../Zotlabs/Module/Mail.php:342 +#: ../../Zotlabs/Module/Mail.php:334 msgid "Recall message" msgstr "Nachricht widerrufen" -#: ../../Zotlabs/Module/Mail.php:344 +#: ../../Zotlabs/Module/Mail.php:336 msgid "Message has been recalled." msgstr "Die Nachricht wurde widerrufen." -#: ../../Zotlabs/Module/Mail.php:361 +#: ../../Zotlabs/Module/Mail.php:353 msgid "Delete Conversation" msgstr "Unterhaltung löschen" -#: ../../Zotlabs/Module/Mail.php:363 +#: ../../Zotlabs/Module/Mail.php:355 msgid "" "No secure communications available. You may be able to " "respond from the sender's profile page." msgstr "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten." -#: ../../Zotlabs/Module/Mail.php:367 +#: ../../Zotlabs/Module/Mail.php:359 msgid "Send Reply" msgstr "Antwort senden" -#: ../../Zotlabs/Module/Mail.php:372 +#: ../../Zotlabs/Module/Mail.php:364 #, php-format msgid "Your message for %s (%s):" msgstr "Deine Nachricht für %s (%s):" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." - -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Neuen Kanal anlegen" - -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:213 -#: ../../include/nav.php:206 -msgid "Channel Manager" -msgstr "Kanal-Manager" - -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Aktueller Kanal" - -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." - -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Standard Kanal" - -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Zum Standard machen" - -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d neue Nachrichten" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Element nicht verfügbar." -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d neue Vorstellungen" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Inhalte von Firefox nach $Projectname teilen" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Delegierte Kanäle" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Aktiviert den $Projectname-Provider für firefox" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Kein gültiges Konto gefunden." +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "Suche in der Dokumentation" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "$Projectname-Dokumentation" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Nutzer (%s)" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Lostpass.php:44 +#: ../../Zotlabs/Module/Home.php:92 #, php-format -msgid "Password reset requested at %s" -msgstr "Passwort-Rücksetzung auf %s angefordert" - -#: ../../Zotlabs/Module/Lostpass.php:67 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." - -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1711 -msgid "Password Reset" -msgstr "Zurücksetzen des Kennworts" +msgid "Welcome to %s" +msgstr "Willkommen auf %s" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "Dein Passwort wurde wie angefordert neu erstellt." +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar." -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "Dein neues Passwort lautet" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Sichtbar für:" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Speichere oder kopiere Dein neues Passwort – und dann" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Zugriff verweigert." -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "Klicke hier, um dich anzumelden" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "Datei nicht gefunden." -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Dateiberechtigungen bearbeiten" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "Auf %s wurde Dein Passwort geändert" +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 +#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 +#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 +#: ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Berechtigungen" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Kennwort vergessen?" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Berechtigungen setzen/ändern" -#: ../../Zotlabs/Module/Lostpass.php:128 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Alle Dateien und Unterverzeichnisse einbinden" -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "E-Mail Adresse" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Zurück zur Dateiliste" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Zurücksetzen" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Kann Menü nicht aktualisieren." +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Kann Menü nicht erstellen." +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Diese Datei freigeben" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Name des Menüs" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "URL zu dieser Datei anzeigen" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Eindeutiger Name (nicht sichtbar auf der Webseite) – erforderlich" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Meine Kontakte über diese Datei benachrichtigen" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Menütitel" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Server nicht gefunden." -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Sichtbar auf der Webseite – für keinen Titel leer lassen" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Fortfahren" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Lesezeichen erlauben" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Premium-Kanal-Einrichtung" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Einschränkungen für einen Premium-Kanal aktivieren" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Absenden und fortfahren" +#: ../../Zotlabs/Module/Connect.php:93 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc." -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2266 -msgid "Menus" -msgstr "Menüs" +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig." -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Lesezeichen erlaubt" +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Lösche dieses Menü" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite." -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Bearbeite Menü Inhalte" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Dieses Menü bearbeiten" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Eingeschränkter oder Premium-Kanal" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Menü konnte nicht gelöscht werden." +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppe wurde erstellt." -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menü nicht gefunden" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Gruppe konnte nicht erstellt werden." -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Menü bearbeiten" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." +msgstr "Gruppe nicht gefunden." -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Einträge zu diesem Menü hinzufügen oder entfernen" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppe wurde aktualisiert." -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Menü Name" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Erstelle eine Gruppe für Kanäle." -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Muss eindeutig sein, ist aber nur für Dich sichtbar" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Gruppenname:" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Menü Titel" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Mitglieder sind sichtbar für andere Kanäle" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Menü Titel wie er von anderen gesehen wird" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppe wurde entfernt." -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Erlaube Lesezeichen" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Gruppe konnte nicht entfernt werden." -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Nicht gefunden." +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Gruppeneditor" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s ist %2$s" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Mitglieder" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:225 -msgid "Mood" -msgstr "Laune" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Alle verbundenen Kanäle" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Wähle einen Kanal zum hinzufügen oder entfernen aus." -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profil-Übereinstimmungen" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" +msgstr "Webseitenelemente importieren" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" +msgstr "Import ausgewählt" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessiert sich für:" +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Webseitenelemente exportieren" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Keine Übereinstimmungen" +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Exportieren ausgewählt" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" -msgstr "Gruppe nicht gefunden" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" +msgstr "Webseiten" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" -msgstr "Kanal nicht gefunden" +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 +#: ../../include/conversation.php:1231 +msgid "Share" +msgstr "Teilen" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" -msgstr "Forum" +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Ansicht" -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" -msgstr "Suchergebnisse für:" +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" +msgstr "Vorschau" -#: ../../Zotlabs/Module/Network.php:217 -msgid "Privacy group is empty" -msgstr "Gruppe ist leer" +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Aktionen" -#: ../../Zotlabs/Module/Network.php:226 -msgid "Privacy group: " -msgstr "Gruppe:" +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Seiten-Link" -#: ../../Zotlabs/Module/Network.php:252 -msgid "Invalid connection." -msgstr "Ungültige Verbindung." +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Seitentitel" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Keine System-Benachrichtigungen mehr." +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Ungültiger Dateityp." -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "System-Benachrichtigungen" +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Fehler beim Öffnen der ZIP-Datei" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Element konnte nicht erstellt werden." +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "Ungültiger Ordnerpfad." -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Kann Menü-Element nicht aktualisieren." +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Keine Webseitenelemente erkannt." -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Kann Menü-Bestandteil nicht hinzufügen." +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Import abgeschlossen." -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 -msgid "Menu Item Permissions" -msgstr "Zugriffsrechte des Menü-Elements" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "Webseite" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "(click to open/close)" -msgstr "(zum öffnen/schließen anklicken)" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "Block" -#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 -msgid "Link Name" -msgstr "Name des Links" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "Layout" -#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 -msgid "Link or Submenu Target" -msgstr "Ziel des Links oder Untermenüs" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "Menü" -#: ../../Zotlabs/Module/Mitem.php:157 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "Element für %s installiert" -#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 -msgid "Use magic-auth if available" -msgstr "Magic-Auth verwenden, falls verfügbar" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Installation des Elements %s fehlgeschlagen" -#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 -msgid "Open link in new window" -msgstr "Öffne Link in neuem Fenster" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Import abgeschlossen" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Order in list" -msgstr "Reihenfolge in der Liste" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Beiträge importieren" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren." -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Submit and finish" -msgstr "Absenden und fertigstellen" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Einladungslimit überschritten." -#: ../../Zotlabs/Module/Mitem.php:162 -msgid "Submit and continue" -msgstr "Absenden und fortfahren" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Keine gültige Email Adresse." -#: ../../Zotlabs/Module/Mitem.php:170 -msgid "Menu:" -msgstr "Menü:" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../Zotlabs/Module/Mitem.php:173 -msgid "Link Target" -msgstr "Ziel des Links" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." -#: ../../Zotlabs/Module/Mitem.php:176 -msgid "Edit menu" -msgstr "Menü bearbeiten" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Nachricht konnte nicht zugestellt werden." -#: ../../Zotlabs/Module/Mitem.php:179 -msgid "Edit element" -msgstr "Bestandteil bearbeiten" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d Nachricht gesendet." +msgstr[1] "%d Nachrichten gesendet." -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Drop element" -msgstr "Bestandteil löschen" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Du hast keine weiteren verfügbare Einladungen" -#: ../../Zotlabs/Module/Mitem.php:181 -msgid "New element" -msgstr "Neues Bestandteil" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Einladungen senden" -#: ../../Zotlabs/Module/Mitem.php:182 -msgid "Edit this menu container" -msgstr "Diesen Menü-Container bearbeiten" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Email-Adressen eintragen, eine pro Zeile:" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Add menu element" -msgstr "Menüelement hinzufügen" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Schließe Dich uns auf $Projectname an!" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Delete this menu item" -msgstr "Lösche dieses Menü-Bestandteil" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Bitte verwende bei der Registrierung den folgenden Einladungscode:" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "Edit this menu item" -msgstr "Bearbeite dieses Menü-Bestandteil" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registriere Dich auf einem beliebigen $Projectname-Hub (sie sind alle miteinander verbunden)" -#: ../../Zotlabs/Module/Mitem.php:202 -msgid "Menu item not found." -msgstr "Menü-Bestandteil nicht gefunden." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Gib meine $Projectname-Adresse im Suchfeld ein." -#: ../../Zotlabs/Module/Mitem.php:215 -msgid "Menu item deleted." -msgstr "Menü-Bestandteil gelöscht." +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oder besuche" -#: ../../Zotlabs/Module/Mitem.php:217 -msgid "Menu item could not be deleted." -msgstr "Menü-Bestandteil kann nicht gelöscht werden." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klicke auf [Verbinden]" -#: ../../Zotlabs/Module/Mitem.php:224 -msgid "Edit Menu Element" -msgstr "Bearbeite Menü-Bestandteil" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Klon nicht gefunden." -#: ../../Zotlabs/Module/Mitem.php:230 -msgid "Link text" -msgstr "Link Text" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Nachschlagen des Kanal-Ortes fehlgeschlagen" -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Name or caption" -msgstr "Name oder Titel" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst." -#: ../../Zotlabs/Module/New_channel.php:128 -#: ../../Zotlabs/Module/Register.php:231 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ " +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Synchronisiere Klone" -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -msgid "Choose a short nickname" -msgstr "Wähle einen kurzen Spitznamen" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Keine Klon-Adressen gefunden." -#: ../../Zotlabs/Module/New_channel.php:130 -#: ../../Zotlabs/Module/Register.php:233 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Klon-Adressen verwalten" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Channel role and privacy" -msgstr "Kanaltyp und Privatspäre-Einstellungen" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ort" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Select a channel role with your privacy requirements." -msgstr "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre." +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primär" -#: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:235 -msgid "Read more about roles" -msgstr "Mehr Informationen über Rollen" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Jetzt synchronisieren" -#: ../../Zotlabs/Module/New_channel.php:135 -msgid "Create Channel" -msgstr "Einen neuen Kanal anlegen" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!" -#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Locs.php:124 msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst." -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "" -"or import an existing channel from another location." -msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt." -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "Ungültiger Anfrage-Identifikator." +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "Gruppe nicht gefunden" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Verwerfen" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "Kanal nicht gefunden" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "Forum" -#: ../../Zotlabs/Module/Photos.php:84 -msgid "Page owner information could not be retrieved." -msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Suchergebnisse für:" -#: ../../Zotlabs/Module/Photos.php:99 ../../Zotlabs/Module/Photos.php:743 -#: ../../Zotlabs/Module/Profile_photo.php:114 -#: ../../Zotlabs/Module/Profile_photo.php:206 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Profilfotos" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "Gruppe ist leer" -#: ../../Zotlabs/Module/Photos.php:105 ../../Zotlabs/Module/Photos.php:149 -msgid "Album not found." -msgstr "Album nicht gefunden." +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "Gruppe:" -#: ../../Zotlabs/Module/Photos.php:132 -msgid "Delete Album" -msgstr "Album löschen" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." +msgstr "Ungültige Verbindung." -#: ../../Zotlabs/Module/Photos.php:153 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mögen/Nicht mögen" -#: ../../Zotlabs/Module/Photos.php:210 ../../Zotlabs/Module/Photos.php:1053 -msgid "Delete Photo" -msgstr "Foto löschen" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../Zotlabs/Module/Photos.php:533 -msgid "No photos selected" -msgstr "Keine Fotos ausgewählt" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Um fortzufahren melde Dich bitte mit Deiner $Projectname-ID an oder registriere Dich als neues $Projectname-Mitglied." -#: ../../Zotlabs/Module/Photos.php:582 -msgid "Access to this item is restricted." -msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ungültige Anfrage." -#: ../../Zotlabs/Module/Photos.php:621 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "Kanal" -#: ../../Zotlabs/Module/Photos.php:624 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB Foto-Speicher belegt." +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Sache" -#: ../../Zotlabs/Module/Photos.php:660 -msgid "Upload Photos" -msgstr "Fotos hochladen" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanal nicht vorhanden." -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Enter an album name" -msgstr "Namen für ein neues Album eingeben" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Photos.php:665 -msgid "or select an existing album (doubleclick)" -msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1991 +msgid "photo" +msgstr "Foto" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Create a status post for this upload" -msgstr "Einen Statusbeitrag für diesen Upload erzeugen" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1997 +msgid "status" +msgstr "Status" -#: ../../Zotlabs/Module/Photos.php:667 -msgid "Caption (optional):" -msgstr "Beschriftung (optional):" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 +#: ../../include/conversation.php:123 ../../include/text.php:1994 +msgid "event" +msgstr "Termin" -#: ../../Zotlabs/Module/Photos.php:668 -msgid "Description (optional):" -msgstr "Beschreibung (optional):" +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Photos.php:695 -msgid "Album name could not be decoded" -msgstr "Albumname konnte nicht dekodiert werden" +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Photos.php:743 -msgid "Contact Photos" -msgstr "Kontakt-Bilder" +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Photos.php:766 -msgid "Show Newest First" -msgstr "Neueste zuerst anzeigen" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s lehnt %2$ss %3$s ab" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Oldest First" -msgstr "Älteste zuerst anzeigen" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s enthält sich zu %2$ss %3$s" -#: ../../Zotlabs/Module/Photos.php:792 ../../Zotlabs/Module/Photos.php:1331 -#: ../../include/widgets.php:1499 -msgid "View Photo" -msgstr "Foto ansehen" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Photos.php:823 ../../include/widgets.php:1516 -msgid "Edit Album" -msgstr "Album bearbeiten" +#: ../../Zotlabs/Module/Like.php:431 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s nimmt an %2$ss %3$s nicht teil" -#: ../../Zotlabs/Module/Photos.php:870 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s nimmt vielleicht an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Photo not available" -msgstr "Foto nicht verfügbar" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Photos.php:930 -msgid "Use as profile photo" -msgstr "Als Profilfoto verwenden" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Vielen Dank." -#: ../../Zotlabs/Module/Photos.php:931 -msgid "Use as cover photo" -msgstr "Als Titelbild verwenden" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet." -#: ../../Zotlabs/Module/Photos.php:938 -msgid "Private Photo" -msgstr "Privates Foto" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Neuen Kanal anlegen" -#: ../../Zotlabs/Module/Photos.php:953 -msgid "View Full Size" -msgstr "In voller Größe anzeigen" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Neu anlegen" -#: ../../Zotlabs/Module/Photos.php:998 ../../Zotlabs/Module/Admin.php:1437 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Entfernen" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Kanal-Manager" -#: ../../Zotlabs/Module/Photos.php:1032 -msgid "Edit photo" -msgstr "Foto bearbeiten" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Aktueller Kanal" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Rotate CW (right)" -msgstr "Drehen im UZS (rechts)" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst." -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CCW (left)" -msgstr "Drehen gegen UZS (links)" +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Standard Kanal" -#: ../../Zotlabs/Module/Photos.php:1038 -msgid "Enter a new album name" -msgstr "Gib einen Namen für ein neues Album ein" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Zum Standard machen" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "or select an existing one (doubleclick)" -msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d neue Nachrichten" -#: ../../Zotlabs/Module/Photos.php:1042 -msgid "Caption" -msgstr "Bildunterschrift" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d neue Vorstellungen" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Add a Tag" -msgstr "Schlagwort hinzufügen" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Delegierte Kanäle" -#: ../../Zotlabs/Module/Photos.php:1048 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Element konnte nicht erstellt werden." -#: ../../Zotlabs/Module/Photos.php:1051 -msgid "Flag as adult in album view" -msgstr "In der Albumansicht als nicht jugendfrei markieren" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Kann Menü-Element nicht aktualisieren." -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Lib/ThreadItem.php:261 -msgid "I like this (toggle)" -msgstr "Mir gefällt das (Umschalter)" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Kann Menü-Bestandteil nicht hinzufügen." -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:262 -msgid "I don't like this (toggle)" -msgstr "Mir gefällt das nicht (Umschalter)" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Zugriffsrechte des Menü-Elements" -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Lib/ThreadItem.php:397 -#: ../../include/conversation.php:740 -msgid "Please wait" -msgstr "Bitte warten" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" +msgstr "(zum öffnen/schließen anklicken)" -#: ../../Zotlabs/Module/Photos.php:1089 ../../Zotlabs/Module/Photos.php:1207 -#: ../../Zotlabs/Lib/ThreadItem.php:707 -msgid "This is you" -msgstr "Das bist Du" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Name des Links" -#: ../../Zotlabs/Module/Photos.php:1091 ../../Zotlabs/Module/Photos.php:1209 -#: ../../Zotlabs/Lib/ThreadItem.php:709 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Kommentar" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Ziel des Links oder Untermenüs" -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "URL des Links eingeben oder Menünamen wählen, um ein Untermenü anzulegen." -#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:574 -msgctxt "title" -msgid "Dislikes" -msgstr "Gefällt mir nicht" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Magic-Auth verwenden, falls verfügbar" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Agree" -msgstr "Zustimmungen" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Öffne Link in neuem Fenster" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Disagree" -msgstr "Ablehnungen" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Reihenfolge in der Liste" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:575 -msgctxt "title" -msgid "Abstain" -msgstr "Enthaltungen" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Größere Nummern werden weiter unten in der Auflistung einsortiert" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Attending" -msgstr "Zusagen" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Absenden und fertigstellen" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Not attending" -msgstr "Absagen" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Absenden und fortfahren" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:576 -msgctxt "title" -msgid "Might attend" -msgstr "Vielleicht" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menü:" -#: ../../Zotlabs/Module/Photos.php:1126 ../../Zotlabs/Module/Photos.php:1138 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1717 -msgid "View all" -msgstr "Alles anzeigen" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Ziel des Links" -#: ../../Zotlabs/Module/Photos.php:1130 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1741 -#: ../../include/channel.php:1158 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Gefällt mir" -msgstr[1] "Gefällt mir" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Menü bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1744 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Gefällt nicht" -msgstr[1] "Gefällt nicht" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Bestandteil bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1235 -msgid "Photo Tools" -msgstr "Fotowerkzeuge" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Bestandteil löschen" -#: ../../Zotlabs/Module/Photos.php:1244 -msgid "In This Photo:" -msgstr "Auf diesem Foto:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Neues Bestandteil" -#: ../../Zotlabs/Module/Photos.php:1249 -msgid "Map" -msgstr "Karte" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Diesen Menü-Container bearbeiten" -#: ../../Zotlabs/Module/Photos.php:1257 ../../Zotlabs/Lib/ThreadItem.php:386 -msgctxt "noun" -msgid "Likes" -msgstr "Gefällt mir" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Menüelement hinzufügen" -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:387 -msgctxt "noun" -msgid "Dislikes" -msgstr "Gefällt nicht" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Lösche dieses Menü-Bestandteil" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:392 -#: ../../include/acl_selectors.php:285 -msgid "Close" -msgstr "Schließen" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Bearbeite dieses Menü-Bestandteil" -#: ../../Zotlabs/Module/Photos.php:1337 -msgid "View Album" -msgstr "Album ansehen" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "Menü-Bestandteil nicht gefunden." -#: ../../Zotlabs/Module/Photos.php:1348 ../../Zotlabs/Module/Photos.php:1361 -#: ../../Zotlabs/Module/Photos.php:1362 -msgid "Recent Photos" -msgstr "Neueste Fotos" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "Menü-Bestandteil gelöscht." -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "hat Dir eine private Nachricht geschickt" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "Menü-Bestandteil kann nicht gelöscht werden." -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "hat deinen Kanal hinzugefügt" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Bearbeite Menü-Bestandteil" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "l, d. F, G:i \\U\\h\\r" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Link Text" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[Heute]" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Bewertung" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "hat einen Termin veröffentlicht" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Webseite:" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Konnte Deinen Server nicht finden." +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Veröffentlichung erfolgreich." +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Bewertung (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Openid.php:30 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID Protokollfehler. Keine ID zurückgegeben." +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" -#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 -msgid "Login failed." -msgstr "Login fehlgeschlagen." +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Kein gültiges Konto gefunden." -#: ../../Zotlabs/Module/Page.php:133 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails." -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Nutzer (%s)" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Konfigurationseditor" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Passwort-Rücksetzung auf %s angefordert" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Lostpass.php:67 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." - -#: ../../Zotlabs/Module/Pdledit.php:18 -msgid "Layout updated." -msgstr "Layout aktualisiert." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 -msgid "Edit System Page Description" -msgstr "Systemseitenbeschreibung bearbeiten" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" +msgstr "Zurücksetzen des Kennworts" -#: ../../Zotlabs/Module/Pdledit.php:56 -msgid "Layout not found." -msgstr "Layout nicht gefunden." +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Dein Passwort wurde wie angefordert neu erstellt." -#: ../../Zotlabs/Module/Pdledit.php:62 -msgid "Module Name:" -msgstr "Modulname:" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Dein neues Passwort lautet" -#: ../../Zotlabs/Module/Pdledit.php:63 -msgid "Layout Help" -msgstr "Layout-Hilfe" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Speichere oder kopiere Dein neues Passwort – und dann" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:226 -#: ../../include/conversation.php:960 -msgid "Poke" -msgstr "Anstupsen" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "Klicke hier, um dich anzumelden" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Jemanden anstupsen" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden." -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Anstupsen/Knuffen" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Auf %s wurde Dein Passwort geändert" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Jemanden anstupsen, knuffen oder sonstiges" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Kennwort vergessen?" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Empfänger" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail." -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-Mail Adresse" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Diesen Beitrag privat machen" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Zurücksetzen" -#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Abrufen der URL gab einen Fehler zurück: %1$s" +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s ist %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Laune" + +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden" #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 #: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 @@ -3279,6 +3558,10 @@ msgstr "Religion" msgid "Political Views" msgstr "Politische Ansichten" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Geschlecht" + #: ../../Zotlabs/Module/Profiles.php:458 msgid "Sexual Preference" msgstr "Sexuelle Orientierung" @@ -3308,7 +3591,7 @@ msgid "View this profile" msgstr "Dieses Profil ansehen" #: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:959 +#: ../../include/channel.php:981 msgid "Edit visibility" msgstr "Sichtbarkeit bearbeiten" @@ -3320,7 +3603,7 @@ msgstr "Profilwerkzeuge" msgid "Change cover photo" msgstr "Titelbild ändern" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:930 +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 msgid "Change profile photo" msgstr "Profilfoto ändern" @@ -3340,8 +3623,8 @@ msgstr "Dieses Profil löschen" msgid "Add profile things" msgstr "Sachen zum Profil hinzufügen" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/widgets.php:105 -#: ../../include/conversation.php:1526 +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 +#: ../../include/widgets.php:105 msgid "Personal" msgstr "Persönlich" @@ -3425,6 +3708,10 @@ msgstr "Seit (Datum)" msgid "Tell us about yourself" msgstr "Erzähle uns ein wenig von Dir" +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Homepage-URL" + #: ../../Zotlabs/Module/Profiles.php:732 msgid "Hometown" msgstr "Heimatort" @@ -3481,1404 +3768,1464 @@ msgstr "Kontaktinformation und soziale Netzwerke" msgid "My other channels" msgstr "Meine anderen Kanäle" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:955 +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 msgid "Profile Image" msgstr "Profilfoto:" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:88 -#: ../../include/channel.php:937 +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 +#: ../../include/channel.php:959 msgid "Edit Profiles" msgstr "Profile bearbeiten" -#: ../../Zotlabs/Module/Profile_photo.php:179 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." - -#: ../../Zotlabs/Module/Profile_photo.php:367 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" - -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Ungültiger Profil-Identifikator" +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Keine System-Benachrichtigungen mehr." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Profil-Sichtbarkeits-Editor" +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "System-Benachrichtigungen" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1249 -msgid "Profile" -msgstr "Profil" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profil-Übereinstimmungen" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu." -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Sichtbar für" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessiert sich für:" -#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1270 -msgid "Public Hubs" -msgstr "Öffentliche Hubs" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Keine Übereinstimmungen" -#: ../../Zotlabs/Module/Pubsites.php:25 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Hub URL" -msgstr "Hub-URL" +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode ein:" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Access Type" -msgstr "Zugriffstyp" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Registration Policy" -msgstr "Registrierungsrichtlinien" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?" -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Stats" -msgstr "Statistiken" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Kalendereinträge wurden importiert." -#: ../../Zotlabs/Module/Pubsites.php:31 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Keine Kalendereinträge gefunden." -#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 -#: ../../include/conversation.php:959 -msgid "Ratings" -msgstr "Bewertungen" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Termin-Ende liegt vor dem Beginn." -#: ../../Zotlabs/Module/Pubsites.php:38 -msgid "Rate" -msgstr "Bewerten" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Vorschau konnte nicht erzeugt werden." -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Website:" -msgstr "Webseite:" +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel und Startzeit des Termins sind erforderlich." -#: ../../Zotlabs/Module/Rate.php:163 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanal [%s] (auf diesem Server noch unbekannt)" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Termin nicht gefunden." -#: ../../Zotlabs/Module/Rate.php:164 -msgid "Rating (this information is public)" -msgstr "Bewertung (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Termintitel bearbeiten" -#: ../../Zotlabs/Module/Rate.php:165 -msgid "Optionally explain your rating (this information is public)" -msgstr "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Termintitel" -#: ../../Zotlabs/Module/Ratings.php:73 -msgid "No ratings" -msgstr "Keine Bewertungen" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Kategorien (Kommagetrennte Liste)" -#: ../../Zotlabs/Module/Ratings.php:104 -msgid "Rating: " -msgstr "Bewertung: " +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Kategorie bearbeiten" -#: ../../Zotlabs/Module/Ratings.php:105 -msgid "Website: " -msgstr "Webseite: " +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Kategorie" -#: ../../Zotlabs/Module/Ratings.php:107 -msgid "Description: " -msgstr "Beschreibung: " +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Startdatum und -zeit bearbeiten" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Theme-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Startdatum und -zeit" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "Anzahl der Konten" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "Enddatum und -zeit sind unbekannt oder irrelevant" -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "Anzahl der blockierten Konten" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Enddatum und -zeit bearbeiten" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "Anzahl der abgelaufenen Konten" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Enddatum und -zeit" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "Anzahl der ablaufenden Konten" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "An die Zeitzone des Betrachters anpassen" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "Anzahl der Kanäle" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien." -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "Anzahl der primären Kanäle" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Beschreibung bearbeiten" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "Anzahl der Klone" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Ort bearbeiten" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Nachrichten-Warteschlangen" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Den Termin teilen" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Die installierte Software sollte aktualisiert werden" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 +msgid "Permission settings" +msgstr "Berechtigungs-Einstellungen" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:490 -#: ../../Zotlabs/Module/Admin.php:711 ../../Zotlabs/Module/Admin.php:755 -#: ../../Zotlabs/Module/Admin.php:1030 ../../Zotlabs/Module/Admin.php:1209 -#: ../../Zotlabs/Module/Admin.php:1329 ../../Zotlabs/Module/Admin.php:1419 -#: ../../Zotlabs/Module/Admin.php:1612 ../../Zotlabs/Module/Admin.php:1646 -#: ../../Zotlabs/Module/Admin.php:1731 -msgid "Administration" -msgstr "Administration" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Weitere Optionen" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Zusammenfassung" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l, j. F" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Registrierte Konten" +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Termin bearbeiten" -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:715 -msgid "Pending registrations" -msgstr "Ausstehende Registrierungen" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Termin löschen" -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Registrierte Kanäle" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1762 +msgid "Link to Source" +msgstr "Link zur Quelle" -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:716 -msgid "Active plugins" -msgstr "Aktive Plug-Ins" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "Kalender" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Version" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Termin bearbeiten" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Repository-Version (master)" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Termin anlegen" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Repository-Version (dev)" +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:940 +msgid "Previous" +msgstr "Voriges" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Site-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 +msgid "Next" +msgstr "Nächste" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2841 -msgid "Default" -msgstr "Standard" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Exportieren" -#: ../../Zotlabs/Module/Admin.php:410 ../../Zotlabs/Module/Settings.php:798 -msgid "mobile" -msgstr "mobil" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Monat" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "experimentell" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Woche" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "nicht unterstützt" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Tag" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Ja - mit Zustimmung" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Heute" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Mein Server ist kein öffentlicher Server" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Termin gelöscht" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "Meine Seite hat nur bezahlten Zugriff" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Termin konnte nicht gelöscht werden" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "Meine Seite hat nur freien Zugriff" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Originalbeitrag nicht gefunden." -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Leeren Beitrag verworfen." -#: ../../Zotlabs/Module/Admin.php:491 ../../include/widgets.php:1382 -msgid "Site" -msgstr "Seite" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben." -#: ../../Zotlabs/Module/Admin.php:493 ../../Zotlabs/Module/Register.php:245 -msgid "Registration" -msgstr "Registrierung" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "Doppelter Beitrag unterdrückt." -#: ../../Zotlabs/Module/Admin.php:494 -msgid "File upload" -msgstr "Dateiupload" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Systemfehler. Beitrag nicht gespeichert." -#: ../../Zotlabs/Module/Admin.php:495 -msgid "Policies" -msgstr "Richtlinien" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../Zotlabs/Module/Admin.php:496 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Fortgeschritten" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../Zotlabs/Module/Admin.php:500 -msgid "Site name" -msgstr "Seitenname" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" +msgstr "Einen neuen Kanal anlegen" -#: ../../Zotlabs/Module/Admin.php:502 -msgid "Administrator Information" -msgstr "Administrator-Informationen" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen." -#: ../../Zotlabs/Module/Admin.php:502 +#: ../../Zotlabs/Module/New_channel.php:142 msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." +"or import an existing channel from another location." +msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." -#: ../../Zotlabs/Module/Admin.php:503 -msgid "System language" -msgstr "System-Sprache" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "hat Dir eine private Nachricht geschickt" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "System theme" -msgstr "System-Theme" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "hat deinen Kanal hinzugefügt" -#: ../../Zotlabs/Module/Admin.php:504 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "l, d. F, G:i \\U\\h\\r" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Mobile system theme" -msgstr "Mobile System-Theme:" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[Heute]" -#: ../../Zotlabs/Module/Admin.php:505 -msgid "Theme for mobile devices" -msgstr "Theme für mobile Geräte" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "hat einen Termin veröffentlicht" -#: ../../Zotlabs/Module/Admin.php:507 -msgid "Allow Feeds as Connections" -msgstr "Feeds als Verbindungen erlauben" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ungültiger Anfrage-Identifikator." -#: ../../Zotlabs/Module/Admin.php:507 -msgid "(Heavy system resource usage)" -msgstr "(führt zu hoher Systemlast)" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Verwerfen" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "Maximum image size" -msgstr "Maximale Bildgröße" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" +msgstr "Markiere alle System-Benachrichtigungen als gesehen" -#: ../../Zotlabs/Module/Admin.php:508 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Anstupsen" -#: ../../Zotlabs/Module/Admin.php:509 -msgid "Does this site allow new member registration?" -msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Jemanden anstupsen" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Invitation only" -msgstr "Nur mit Einladung" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Anstupsen/Knuffen" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Jemanden anstupsen, knuffen oder sonstiges" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Empfänger" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Register text" -msgstr "Registrierungstext" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" + +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Diesen Beitrag privat machen" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "Will be displayed prominently on the registration page." -msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Server-Einrichtung" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr "Kann nicht mit der Datenbank verbinden." -#: ../../Zotlabs/Module/Admin.php:513 +#: ../../Zotlabs/Module/Setup.php:192 msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." - -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Preserve site homepage URL" -msgstr "Homepage-URL schützen" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." -#: ../../Zotlabs/Module/Admin.php:514 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Konnte Tabelle nicht erstellen." -#: ../../Zotlabs/Module/Admin.php:515 -msgid "Accounts abandoned after x days" -msgstr "Konten gelten nach X Tagen als unbenutzt" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Die Datenbank Deines Hubs wurde installiert." -#: ../../Zotlabs/Module/Admin.php:515 +#: ../../Zotlabs/Module/Setup.php:208 msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allowed friend domains" -msgstr "Erlaubte Domains für Kontakte" +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Lies die Datei \"install/INSTALL.txt\"." -#: ../../Zotlabs/Module/Admin.php:516 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Systemprüfung" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Allowed email domains" -msgstr "Erlaubte Domains für E-Mails" +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Nochmal prüfen" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Datenbankverbindung" -#: ../../Zotlabs/Module/Admin.php:517 +#: ../../Zotlabs/Module/Setup.php:296 msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Not allowed email domains" -msgstr "Nicht erlaubte Domains für E-Mails" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." -#: ../../Zotlabs/Module/Admin.php:518 +#: ../../Zotlabs/Module/Setup.php:298 msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Verify Email Addresses" -msgstr "E-Mail-Adressen überprüfen" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Datenbankservername" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Standard ist 127.0.0.1" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Force publish" -msgstr "Veröffentlichung erzwingen" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Datenbankport" -#: ../../Zotlabs/Module/Admin.php:520 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Import Public Streams" -msgstr "Öffentliche Beiträge importieren" +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Datenbank-Benutzername" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Datenbank-Passwort" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Login on Homepage" -msgstr "Log-in auf der Startseite" +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Datenbankname" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Datenbanktyp" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Enable context help" -msgstr "Kontext-Hilfe aktivieren" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "E-Mail Adresse des Seiten-Administrators" -#: ../../Zotlabs/Module/Admin.php:523 +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Directory Server URL" -msgstr "Verzeichnisserver-URL" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "Webseiten-URL" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Default directory server" -msgstr "Standard-Verzeichnisserver" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Nutze wenn möglich eine SSL-URL (https)." -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Proxy user" -msgstr "Proxy Benutzer" +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Standard-Zeitzone für Deinen Server" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Proxy URL" -msgstr "Proxy URL" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Seiteneinstellungen" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Network timeout" -msgstr "Netzwerk-Timeout" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "PHP-Version 5.5 oder höher ist erforderlich." -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "PHP-Version" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Delivery interval" -msgstr "Auslieferung Intervall" +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." -#: ../../Zotlabs/Module/Admin.php:530 +#: ../../Zotlabs/Module/Setup.php:417 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." +"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 "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." -#: ../../Zotlabs/Module/Admin.php:531 -msgid "Deliveries per process" -msgstr "Zustellungen pro Prozess" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "PHP-Pfad zu ausführbarer Datei" -#: ../../Zotlabs/Module/Admin.php:531 +#: ../../Zotlabs/Module/Setup.php:421 msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Poll interval" -msgstr "Abfrageintervall" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP-Befehlszeile" -#: ../../Zotlabs/Module/Admin.php:532 +#: ../../Zotlabs/Module/Setup.php:435 msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." - -#: ../../Zotlabs/Module/Admin.php:533 -msgid "Maximum Load Average" -msgstr "Maximales Load Average" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." -#: ../../Zotlabs/Module/Admin.php:533 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "0 for no expiration of imported content" -msgstr "0 = keine Löschung importierter Inhalte" +#: ../../Zotlabs/Module/Setup.php:457 +#, 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 "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "Off" -msgstr "Aus" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." -#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:678 -#: ../../Zotlabs/Module/Settings.php:722 -msgid "On" -msgstr "An" +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "PHP-Hochladebeschränkungen" -#: ../../Zotlabs/Module/Admin.php:678 -#, php-format -msgid "Lock feature %s" -msgstr "Blockiere die Funktion %s" +#: ../../Zotlabs/Module/Setup.php:487 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." -#: ../../Zotlabs/Module/Admin.php:686 -msgid "Manage Additional Features" -msgstr "Zusätzliche Funktionen verwalten" +#: ../../Zotlabs/Module/Setup.php:488 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." -#: ../../Zotlabs/Module/Admin.php:703 -msgid "No server found" -msgstr "Kein Server gefunden" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Verschlüsselungsschlüssel erzeugen" -#: ../../Zotlabs/Module/Admin.php:710 ../../Zotlabs/Module/Admin.php:1046 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "libCurl-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "for channel" -msgstr "für Kanal" +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "GD-Grafik-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:710 -msgid "on server" -msgstr "auf Server" +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "OpenSSL-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:712 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "mysqli oder postgres PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:746 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher." +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "mb_string-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:749 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "xml-PHP-Modul" -#: ../../Zotlabs/Module/Admin.php:750 -msgid "" -"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/
    " +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "Apache-mod_rewrite-Modul" -#: ../../Zotlabs/Module/Admin.php:751 +#: ../../Zotlabs/Module/Setup.php:512 msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert." - -#: ../../Zotlabs/Module/Admin.php:756 ../../include/widgets.php:1385 -msgid "Security" -msgstr "Sicherheit" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:758 -msgid "Block public" -msgstr "Öffentlichen Zugriff blockieren" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Admin.php:758 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist." +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" -#: ../../Zotlabs/Module/Admin.php:759 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Setze den \"Transport Security\" HTTP Header" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:760 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Setze den \"Content Security Policy\" HTTP Header" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:761 -msgid "Allow communications only from these sites" -msgstr "Kommunikation nur von diesen Seiten erlauben" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:761 +#: ../../Zotlabs/Module/Setup.php:538 msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben." +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." -#: ../../Zotlabs/Module/Admin.php:762 -msgid "Block communications from these sites" -msgstr "Kommunikation von diesen Seiten blockieren" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:763 -msgid "Allow communications only from these channels" -msgstr "Kommunikation nur von diesen Kanälen erlauben" +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." -#: ../../Zotlabs/Module/Admin.php:763 +#: ../../Zotlabs/Module/Setup.php:564 msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. " - -#: ../../Zotlabs/Module/Admin.php:764 -msgid "Block communications from these channels" -msgstr "Kommunikation von folgenden Kanälen blockieren" +"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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." -#: ../../Zotlabs/Module/Admin.php:765 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links." +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." -#: ../../Zotlabs/Module/Admin.php:766 -msgid "One site per line. By default embedded content is filtered." -msgstr "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert." +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." -#: ../../Zotlabs/Module/Admin.php:767 -msgid "Block embedded HTML from these domains" -msgstr "Eingebettete HTML Inhalte von diesen Seiten blockieren" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php ist beschreibbar" -#: ../../Zotlabs/Module/Admin.php:785 -msgid "Update has been marked successful" -msgstr "Update wurde als erfolgreich markiert" +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." -#: ../../Zotlabs/Module/Admin.php:795 +#: ../../Zotlabs/Module/Setup.php:585 #, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." +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 "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." -#: ../../Zotlabs/Module/Admin.php:798 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s wurde erfolgreich ausgeführt." +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." -#: ../../Zotlabs/Module/Admin.php:802 +#: ../../Zotlabs/Module/Setup.php:587 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt." +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 "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." -#: ../../Zotlabs/Module/Admin.php:805 +#: ../../Zotlabs/Module/Setup.php:590 #, php-format -msgid "Update function %s could not be found." -msgstr "Update-Funktion %s konnte nicht gefunden werden." +msgid "%s is writable" +msgstr "%s ist beschreibbar" -#: ../../Zotlabs/Module/Admin.php:821 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses" -#: ../../Zotlabs/Module/Admin.php:825 -msgid "Failed Updates" -msgstr "Fehlgeschlagene Aktualisierungen" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "store ist schreibbar" -#: ../../Zotlabs/Module/Admin.php:827 -msgid "Mark success (if update was manually applied)" -msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." -#: ../../Zotlabs/Module/Admin.php:828 -msgid "Attempt to execute this update step automatically" -msgstr "Versuche, diesen Updateschritt automatisch auszuführen" +#: ../../Zotlabs/Module/Setup.php:644 +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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." -#: ../../Zotlabs/Module/Admin.php:859 -msgid "Queue Statistics" -msgstr "Warteschlangenstatistiken" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." -#: ../../Zotlabs/Module/Admin.php:860 -msgid "Total Entries" -msgstr "Einträge insgesamt" +#: ../../Zotlabs/Module/Setup.php:646 +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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." -#: ../../Zotlabs/Module/Admin.php:861 -msgid "Priority" -msgstr "Priorität" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." -#: ../../Zotlabs/Module/Admin.php:862 -msgid "Destination URL" -msgstr "Ziel-URL" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." -#: ../../Zotlabs/Module/Admin.php:863 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markieren" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern." -#: ../../Zotlabs/Module/Admin.php:864 -msgid "Empty queue for this hub" -msgstr "Warteschlange für diesen Hub leeren" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "SSL Zertifikatverifizierung" -#: ../../Zotlabs/Module/Admin.php:865 -msgid "Last known contact" -msgstr "Letzter Kontakt" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" -#: ../../Zotlabs/Module/Admin.php:901 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s Konto blockiert/freigegeben" -msgstr[1] "%s Konten blockiert/freigegeben" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite funktioniert" -#: ../../Zotlabs/Module/Admin.php:908 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s Konto gelöscht" -msgstr[1] "%s Konten gelöscht" +#: ../../Zotlabs/Module/Setup.php:671 +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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." -#: ../../Zotlabs/Module/Admin.php:944 -msgid "Account not found" -msgstr "Konto nicht gefunden" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." -#: ../../Zotlabs/Module/Admin.php:955 -#, php-format -msgid "Account '%s' deleted" -msgstr "Konto '%s' gelöscht" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    Was als Nächstes

    " -#: ../../Zotlabs/Module/Admin.php:963 -#, php-format -msgid "Account '%s' blocked" -msgstr "Konto '%s' blockiert" +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." -#: ../../Zotlabs/Module/Admin.php:971 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Konto '%s' freigegeben" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Konnte Deinen Server nicht finden." -#: ../../Zotlabs/Module/Admin.php:1031 ../../Zotlabs/Module/Admin.php:1044 -#: ../../include/widgets.php:1383 -msgid "Accounts" -msgstr "Konten" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Veröffentlichung erfolgreich." -#: ../../Zotlabs/Module/Admin.php:1033 ../../Zotlabs/Module/Admin.php:1212 -msgid "select all" -msgstr "Alle auswählen" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ungültiger Profil-Identifikator" -#: ../../Zotlabs/Module/Admin.php:1034 -msgid "Registrations waiting for confirm" -msgstr "Registrierungen warten auf Bestätigung" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Admin.php:1035 -msgid "Request date" -msgstr "Antragsdatum" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profil" -#: ../../Zotlabs/Module/Admin.php:1036 -msgid "No registrations." -msgstr "Keine Registrierungen." +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen." -#: ../../Zotlabs/Module/Admin.php:1038 -msgid "Deny" -msgstr "Verweigern" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Sichtbar für" -#: ../../Zotlabs/Module/Admin.php:1048 ../../include/group.php:267 -msgid "All Channels" -msgstr "Alle Kanäle" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert." -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "Register date" -msgstr "Registrierungs-Datum" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Konfigurationseditor" -#: ../../Zotlabs/Module/Admin.php:1050 -msgid "Last login" -msgstr "Letzte Anmeldung" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Expires" -msgstr "Verfällt" +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "Apps" -#: ../../Zotlabs/Module/Admin.php:1052 -msgid "Service Class" -msgstr "Service-Klasse" +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Version %s" + +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "Installierte Plugins/Addons/Apps" -#: ../../Zotlabs/Module/Admin.php:1054 +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Keine installierten Plugins/Addons/Apps" + +#: ../../Zotlabs/Module/Siteinfo.php:49 msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." -#: ../../Zotlabs/Module/Admin.php:1055 -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 "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?" +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Schlagwort: " -#: ../../Zotlabs/Module/Admin.php:1091 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s Kanal gesperrt/freigegeben" -msgstr[1] "%s Kanäle gesperrt/freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Letzter Hintergrundabruf:" -#: ../../Zotlabs/Module/Admin.php:1100 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Code für %s Kanal gesperrt/freigegeben" -msgstr[1] "Code für %s Kanäle gesperrt/freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Aktuelles Load Average:" -#: ../../Zotlabs/Module/Admin.php:1106 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s Kanal gelöscht" -msgstr[1] "%s Kanäle gelöscht" +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "Erreichbar unter der Web-Adresse" -#: ../../Zotlabs/Module/Admin.php:1126 -msgid "Channel not found" -msgstr "Kanal nicht gefunden" +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." -#: ../../Zotlabs/Module/Admin.php:1136 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanal '%s' gelöscht" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Probleme oder Fehler gefunden? Bitte besuche" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanal '%s' gesperrt" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "$projectname-Bugtracker" -#: ../../Zotlabs/Module/Admin.php:1148 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanal '%s' freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:63 +msgid "" +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Code für Kanal '%s' freigegeben" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Administratoren" -#: ../../Zotlabs/Module/Admin.php:1159 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Code für Kanal '%s' gesperrt" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 +msgid "Blocks" +msgstr "Blöcke" -#: ../../Zotlabs/Module/Admin.php:1210 ../../include/widgets.php:1384 -msgid "Channels" -msgstr "Kanäle" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titel des Blocks" -#: ../../Zotlabs/Module/Admin.php:1214 -msgid "Censor" -msgstr "Sperren" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 +msgid "Layouts" +msgstr "Layouts" -#: ../../Zotlabs/Module/Admin.php:1215 -msgid "Uncensor" -msgstr "Freigeben" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:164 ../../include/help.php:44 +#: ../../include/help.php:49 +msgid "Help" +msgstr "Hilfe" -#: ../../Zotlabs/Module/Admin.php:1216 -msgid "Allow Code" -msgstr "Code erlauben" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Hilfe zur Comanche-Seitenbeschreibungssprache" -#: ../../Zotlabs/Module/Admin.php:1217 -msgid "Disallow Code" -msgstr "Code sperren" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Layout-Beschreibung" -#: ../../Zotlabs/Module/Admin.php:1218 ../../include/conversation.php:1611 -msgid "Channel" -msgstr "Kanal" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "PDL-Datei herunterladen" -#: ../../Zotlabs/Module/Admin.php:1222 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Profilfotos" -#: ../../Zotlabs/Module/Admin.php:1226 +#: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Lade neues Profilfoto hoch" -#: ../../Zotlabs/Module/Admin.php:1284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plug-In %s deaktiviert." +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Module/Admin.php:1288 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plug-In %s aktiviert." +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" +msgstr "Import" -#: ../../Zotlabs/Module/Admin.php:1298 ../../Zotlabs/Module/Admin.php:1585 -msgid "Disable" -msgstr "Deaktivieren" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Kein Kanal." -#: ../../Zotlabs/Module/Admin.php:1301 ../../Zotlabs/Module/Admin.php:1587 -msgid "Enable" -msgstr "Aktivieren" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Gemeinsame Verbindungen" -#: ../../Zotlabs/Module/Admin.php:1330 ../../Zotlabs/Module/Admin.php:1420 -#: ../../include/widgets.php:1387 -msgid "Plugins" -msgstr "Plug-Ins" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Keine gemeinsamen Verbindungen." -#: ../../Zotlabs/Module/Admin.php:1331 ../../Zotlabs/Module/Admin.php:1614 -msgid "Toggle" -msgstr "Umschalten" +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "Netzwerk" -#: ../../Zotlabs/Module/Admin.php:1332 ../../Zotlabs/Module/Admin.php:1615 -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/widgets.php:638 -#: ../../include/nav.php:208 -msgid "Settings" -msgstr "Einstellungen" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" -#: ../../Zotlabs/Module/Admin.php:1339 ../../Zotlabs/Module/Admin.php:1624 -msgid "Author: " -msgstr "Autor: " +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" +msgstr "Öffentliche Hubs" -#: ../../Zotlabs/Module/Admin.php:1340 ../../Zotlabs/Module/Admin.php:1625 -msgid "Maintainer: " -msgstr "Betreuer:" +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im $Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen." -#: ../../Zotlabs/Module/Admin.php:1341 -msgid "Minimum project version: " -msgstr "Minimale Version des Projekts:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../Zotlabs/Module/Admin.php:1342 -msgid "Maximum project version: " -msgstr "Maximale Version des Projekts:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Zugriffstyp" -#: ../../Zotlabs/Module/Admin.php:1343 -msgid "Minimum PHP version: " -msgstr "Minimale PHP Version:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Registrierungsrichtlinien" -#: ../../Zotlabs/Module/Admin.php:1344 -msgid "Requires: " -msgstr "Benötigt:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiken" -#: ../../Zotlabs/Module/Admin.php:1345 ../../Zotlabs/Module/Admin.php:1425 -msgid "Disabled - version incompatibility" -msgstr "Abgeschaltet - Versionsinkompatibilität" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Admin.php:1394 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Gib die öffentliche Git-Repository-URL des Plugin-Repository an." +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "Bewerten" -#: ../../Zotlabs/Module/Admin.php:1395 -msgid "Plugin repo git URL" -msgstr "Plugin-Repository Git URL" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "Custom repo name" -msgstr "Benutzerdefinierter Repository-Name" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funktion deaktiviert." -#: ../../Zotlabs/Module/Admin.php:1396 -msgid "(optional)" -msgstr "(optional)" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Systemseitenbeschreibung bearbeiten" -#: ../../Zotlabs/Module/Admin.php:1397 -msgid "Download Plugin Repo" -msgstr "Plugin-Repository herunterladen" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Layout nicht gefunden." -#: ../../Zotlabs/Module/Admin.php:1404 -msgid "Install new repo" -msgstr "Neues Repository installieren" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Modulname:" -#: ../../Zotlabs/Module/Admin.php:1405 ../../Zotlabs/Lib/Apps.php:330 -msgid "Install" -msgstr "Installieren" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Layout-Hilfe" -#: ../../Zotlabs/Module/Admin.php:1427 -msgid "Manage Repos" -msgstr "Repositorien verwalten" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Konnte nicht auf den Kontakteintrag zugreifen." -#: ../../Zotlabs/Module/Admin.php:1428 -msgid "Installed Plugin Repositories" -msgstr "Installierte Plugin-Repositorien" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Gewähltes Profil nicht gefunden." -#: ../../Zotlabs/Module/Admin.php:1429 -msgid "Install a New Plugin Repository" -msgstr "Ein neues Plugin-Repository installieren" +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Verbindung aktualisiert." -#: ../../Zotlabs/Module/Admin.php:1435 ../../Zotlabs/Module/Settings.php:77 -#: ../../Zotlabs/Module/Settings.php:616 ../../Zotlabs/Lib/Apps.php:330 -msgid "Update" -msgstr "Aktualisieren" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Konnte den Verbindungseintrag nicht aktualisieren." -#: ../../Zotlabs/Module/Admin.php:1436 -msgid "Switch branch" -msgstr "Zweig/Branch wechseln" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ist jetzt verbunden mit" -#: ../../Zotlabs/Module/Admin.php:1550 -msgid "No themes found." -msgstr "Keine Theme gefunden." +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Konnte nicht auf den Adressbuch-Eintrag zugreifen." -#: ../../Zotlabs/Module/Admin.php:1606 -msgid "Screenshot" -msgstr "Bildschirmfoto" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar." -#: ../../Zotlabs/Module/Admin.php:1613 ../../Zotlabs/Module/Admin.php:1647 -#: ../../include/widgets.php:1388 -msgid "Themes" -msgstr "Themes" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Konnte die Adressbuch-Parameter nicht setzen." -#: ../../Zotlabs/Module/Admin.php:1652 -msgid "[Experimental]" -msgstr "[Experimentell]" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Admin.php:1653 -msgid "[Unsupported]" -msgstr "[Nicht unterstützt]" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:955 +msgid "View Profile" +msgstr "Profil ansehen" -#: ../../Zotlabs/Module/Admin.php:1677 -msgid "Log settings updated." -msgstr "Protokoll-Einstellungen aktualisiert." +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "%ss Profil ansehen" -#: ../../Zotlabs/Module/Admin.php:1732 ../../include/widgets.php:1409 -#: ../../include/widgets.php:1419 -msgid "Logs" -msgstr "Protokolle" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Zugriffsrechte neu laden" -#: ../../Zotlabs/Module/Admin.php:1734 -msgid "Clear" -msgstr "Leeren" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Aktualisierte Zugriffsrechte abfragen" -#: ../../Zotlabs/Module/Admin.php:1740 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "Log file" -msgstr "Protokolldatei" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Betrachte die neuesten Beiträge und Kommentare" -#: ../../Zotlabs/Module/Admin.php:1741 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis." +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen" -#: ../../Zotlabs/Module/Admin.php:1742 -msgid "Log level" -msgstr "Protokollstufe" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Die Verbindung ist geblockt!" -#: ../../Zotlabs/Module/Admin.php:2028 -msgid "New Profile Field" -msgstr "Neues Profilfeld" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Nicht ignorieren" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "Field nickname" -msgstr "Kurzname für das Feld" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen" -#: ../../Zotlabs/Module/Admin.php:2029 ../../Zotlabs/Module/Admin.php:2049 -msgid "System name of field" -msgstr "Systemname des Feldes" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Die Verbindung wird ignoriert!" -#: ../../Zotlabs/Module/Admin.php:2030 ../../Zotlabs/Module/Admin.php:2050 -msgid "Input type" -msgstr "Art des Inhalts" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Aus Archiv zurückholen" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Field Name" -msgstr "Feldname" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivieren" -#: ../../Zotlabs/Module/Admin.php:2031 ../../Zotlabs/Module/Admin.php:2051 -msgid "Label on profile pages" -msgstr "Bezeichnung auf Profilseiten" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Help text" -msgstr "Hilfetext" +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Die Verbindung ist archiviert!" -#: ../../Zotlabs/Module/Admin.php:2032 ../../Zotlabs/Module/Admin.php:2052 -msgid "Additional info (optional)" -msgstr "Zusätzliche Informationen (optional)" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Wieder sichtbar machen" -#: ../../Zotlabs/Module/Admin.php:2042 -msgid "Field definition not found" -msgstr "Feld-Definition nicht gefunden" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Verstecken" -#: ../../Zotlabs/Module/Admin.php:2048 -msgid "Edit Profile Field" -msgstr "Profilfeld bearbeiten" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Diese Verbindung vor anderen Verbindungen verstecken/zeigen" -#: ../../Zotlabs/Module/Admin.php:2106 ../../include/widgets.php:1390 -msgid "Profile Fields" -msgstr "Profil Felder" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Die Verbindung ist versteckt!" -#: ../../Zotlabs/Module/Admin.php:2107 -msgid "Basic Profile Fields" -msgstr "Notwendige Profil Felder" +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "Advanced Profile Fields" -msgstr "Erweiterte Profil Felder" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "Ich" -#: ../../Zotlabs/Module/Admin.php:2108 -msgid "(In addition to basic fields)" -msgstr "(zusätzlich zu notwendige Felder)" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "Familie" -#: ../../Zotlabs/Module/Admin.php:2110 -msgid "All available fields" -msgstr "Alle verfügbaren Felder" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Freunde" -#: ../../Zotlabs/Module/Admin.php:2111 -msgid "Custom Fields" -msgstr "Benutzerdefinierte Felder" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "Bekannte" -#: ../../Zotlabs/Module/Admin.php:2115 -msgid "Create Custom Field" -msgstr "Erstelle benutzerdefiniertes Feld" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installiert." +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "Fehlerhafte App." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Beziehung festlegen" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Code einbetten" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Profil festlegen" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "App bearbeiten" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "App erstellen" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "Keine" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Name der App" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Ort (URL) der App" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 +#, php-format +msgid "Connection: %s" +msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL zum Icon" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 Pixel – optional" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "Versions-ID" +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Verfügbare Klone:" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Preis der App" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Ort (URL), um die App zu kaufen" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Lesezeichenordner wählen" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Lesezeichen speichern" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL des Lesezeichens" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal." +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." - -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Passwörter stimmen nicht überein." +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet." +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "Deine Registrierung konnte nicht verarbeitet werden." +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Die Registrierung auf diesem Hub ist nicht möglich." +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "geerbt" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator." +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registriere Dich auf einem der anderen verbundenen Hubs." +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "Deren Einstellungen" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "Meine Einstellungen" -#: ../../Zotlabs/Module/Register.php:215 -msgid "Terms of Service" -msgstr "Nutzungsbedingungen" +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "Individuelle Zugriffsrechte" -#: ../../Zotlabs/Module/Register.php:221 -#, php-format -msgid "I accept the %s for this website" -msgstr "Ich akzeptiere die %s für diese Webseite" +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden." -#: ../../Zotlabs/Module/Register.php:223 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Register.php:227 -msgid "Your email address" -msgstr "Ihre E-Mail Adresse" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Register.php:228 -msgid "Choose a password" -msgstr "Passwort" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Lesezeichenordner wählen" -#: ../../Zotlabs/Module/Register.php:229 -msgid "Please re-enter your password" -msgstr "Bitte gib Dein Passwort noch einmal ein" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Lesezeichen speichern" -#: ../../Zotlabs/Module/Register.php:230 -msgid "Please enter your invitation code" -msgstr "Bitte trage Deinen Einladungs-Code ein" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL des Lesezeichens" -#: ../../Zotlabs/Module/Register.php:236 -msgid "no" -msgstr "nein" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Oder gib einen neuen Namen für den Lesezeichenordner ein" -#: ../../Zotlabs/Module/Register.php:236 -msgid "yes" -msgstr "ja" +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Diese Webseite ist kein Verzeichnisserver" -#: ../../Zotlabs/Module/Register.php:250 -msgid "Membership on this site is by invitation only." -msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Authentifizierung fehlgeschlagen." -#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 -#: ../../boot.php:1685 -msgid "Register" -msgstr "Registrieren" +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Entfernte Authentifizierung" + +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../Zotlabs/Module/Register.php:262 -msgid "Proceed to create your first channel" -msgstr "Fortfahren und Deinen ersten Kanal anlegen" +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Authentifizieren" #: ../../Zotlabs/Module/Regmod.php:15 msgid "Please login." msgstr "Bitte melde dich an." -#: ../../Zotlabs/Module/Removeaccount.php:34 +#: ../../Zotlabs/Module/Removeaccount.php:35 msgid "" "Account removals are not allowed within 48 hours of changing the account " "password." msgstr "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt." -#: ../../Zotlabs/Module/Removeaccount.php:56 +#: ../../Zotlabs/Module/Removeaccount.php:57 msgid "Remove This Account" msgstr "Dieses Konto löschen" -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "WARNING: " msgstr "WARNUNG: " -#: ../../Zotlabs/Module/Removeaccount.php:57 +#: ../../Zotlabs/Module/Removeaccount.php:58 msgid "" "This account and all its channels will be completely removed from the " "network. " msgstr "Dieses Konto mit all seinen Kanälen wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeaccount.php:57 -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This action is permanent and can not be undone!" msgstr "Dieser Schritt ist endgültig und kann nicht rückgängig gemacht werden!" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:60 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 msgid "Please enter your password for verification:" msgstr "Bitte gib zur Bestätigung Dein Passwort ein:" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "Remove this account, all its channels and all its channel clones from the " "network" msgstr "Dieses Konto, all seine Kanäle sowie alle Kanal-Klone aus dem Netzwerk löschen" -#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeaccount.php:60 msgid "" "By default only the instances of the channels located on this hub will be " "removed from the network" msgstr "Standardmäßig werden nur die Kanalklone auf diesem $Projectname-Hub aus dem Netzwerk entfernt" -#: ../../Zotlabs/Module/Removeaccount.php:60 -#: ../../Zotlabs/Module/Settings.php:705 +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 msgid "Remove Account" msgstr "Konto entfernen" -#: ../../Zotlabs/Module/Removeme.php:33 +#: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " "password." msgstr "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden." -#: ../../Zotlabs/Module/Removeme.php:58 +#: ../../Zotlabs/Module/Removeme.php:60 msgid "Remove This Channel" msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Removeme.php:59 +#: ../../Zotlabs/Module/Removeme.php:61 msgid "This channel will be completely removed from the network. " msgstr "Dieser Kanal wird vollständig aus dem Netzwerk gelöscht." -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "Remove this channel and all its clones from the network" msgstr "Lösche diesen Kanal und all seine Klone aus dem Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeme.php:63 msgid "" "By default only the instance of the channel located on this hub will be " "removed from the network" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" -#: ../../Zotlabs/Module/Removeme.php:62 ../../Zotlabs/Module/Settings.php:1124 +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "Remove Channel" msgstr "Kanal löschen" -#: ../../Zotlabs/Module/Rmagic.php:44 +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanal exportieren" + +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal." +"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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." -#: ../../Zotlabs/Module/Rmagic.php:44 -msgid "The error message was:" -msgstr "Die Fehlermeldung war:" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Kanal und Inhalte exportieren" -#: ../../Zotlabs/Module/Rmagic.php:48 -msgid "Authentication failed." -msgstr "Authentifizierung fehlgeschlagen." +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." -#: ../../Zotlabs/Module/Rmagic.php:88 -msgid "Remote Authentication" -msgstr "Entfernte Authentifizierung" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exportiert die Beiträge des angegebenen Jahres." -#: ../../Zotlabs/Module/Rmagic.php:89 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." -#: ../../Zotlabs/Module/Rmagic.php:90 -msgid "Authenticate" -msgstr "Authentifizieren" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." + +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." + +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Element kann nicht bearbeitet werden." #: ../../Zotlabs/Module/Search.php:216 #, php-format @@ -4890,1479 +5237,1390 @@ msgstr "Beiträge mit Schlagwort: %s" msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Keine Dienstklassenbeschränkungen gefunden." - -#: ../../Zotlabs/Module/Settings.php:69 -msgid "Name is required" -msgstr "Name ist erforderlich" - -#: ../../Zotlabs/Module/Settings.php:73 -msgid "Key and Secret are required" -msgstr "Schlüssel und Geheimnis werden benötigt" - -#: ../../Zotlabs/Module/Settings.php:225 -msgid "Not valid email." -msgstr "Keine gültige E-Mail Adresse." - -#: ../../Zotlabs/Module/Settings.php:228 -msgid "Protected email address. Cannot change to that email." -msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." - -#: ../../Zotlabs/Module/Settings.php:237 -msgid "System failure storing new email. Please try again." -msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." - -#: ../../Zotlabs/Module/Settings.php:254 -msgid "Password verification failed." -msgstr "Passwortüberprüfung fehlgeschlagen." - -#: ../../Zotlabs/Module/Settings.php:261 -msgid "Passwords do not match. Password unchanged." -msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." - -#: ../../Zotlabs/Module/Settings.php:265 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." - -#: ../../Zotlabs/Module/Settings.php:279 -msgid "Password changed." -msgstr "Kennwort geändert." - -#: ../../Zotlabs/Module/Settings.php:281 -msgid "Password update failed. Please try again." -msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." - -#: ../../Zotlabs/Module/Settings.php:525 -msgid "Settings updated." -msgstr "Einstellungen aktualisiert." - -#: ../../Zotlabs/Module/Settings.php:589 ../../Zotlabs/Module/Settings.php:615 -#: ../../Zotlabs/Module/Settings.php:651 -msgid "Add application" -msgstr "Anwendung hinzufügen" - -#: ../../Zotlabs/Module/Settings.php:592 -msgid "Name of application" -msgstr "Name der Anwendung" - -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." -#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:594 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Beiträge und Kommentare" -#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Nur Beiträge" -#: ../../Zotlabs/Module/Settings.php:595 ../../Zotlabs/Module/Settings.php:621 -msgid "Redirect" -msgstr "Umleitung" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet." -#: ../../Zotlabs/Module/Settings.php:595 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Keine Dienstklassenbeschränkungen gefunden." -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Settings.php:622 -msgid "Icon url" -msgstr "Symbol-URL" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Sache aktualisiert" -#: ../../Zotlabs/Module/Settings.php:596 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Optional" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Speichern des Objekts fehlgeschlagen" -#: ../../Zotlabs/Module/Settings.php:607 -msgid "Application not found." -msgstr "Die Anwendung wurde nicht gefunden." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Sache hinzugefügt" -#: ../../Zotlabs/Module/Settings.php:650 -msgid "Connected Apps" -msgstr "Verbundene Apps" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Settings.php:654 -msgid "Client key starts with" -msgstr "Client Key beginnt mit" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Sache anzeigen" -#: ../../Zotlabs/Module/Settings.php:655 -msgid "No name" -msgstr "Kein Name" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Eintrag nicht gefunden" -#: ../../Zotlabs/Module/Settings.php:656 -msgid "Remove authorization" -msgstr "Authorisierung aufheben" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Sache bearbeiten" -#: ../../Zotlabs/Module/Settings.php:669 -msgid "No feature settings configured" -msgstr "Keine Funktions-Einstellungen konfiguriert" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Wähle ein Profil" -#: ../../Zotlabs/Module/Settings.php:676 -msgid "Feature/Addon Settings" -msgstr "Funktions-/Addon-Einstellungen" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Aktivitätsnachricht senden" -#: ../../Zotlabs/Module/Settings.php:699 -msgid "Account Settings" -msgstr "Konto-Einstellungen" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Nur an Betrachter des ausgewählten Profils senden" -#: ../../Zotlabs/Module/Settings.php:700 -msgid "Current Password" -msgstr "Aktuelles Passwort" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Name der Sache, z. B. irgendwas" -#: ../../Zotlabs/Module/Settings.php:701 -msgid "Enter New Password" -msgstr "Gib ein neues Passwort ein" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "URL der Sache (optional)" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Confirm New Password" -msgstr "Bestätige das neue Passwort" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "URL eines Fotos der Sache (optional)" -#: ../../Zotlabs/Module/Settings.php:702 -msgid "Leave password fields blank unless changing" -msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Die Sache Deinem Profil hinzufügen" -#: ../../Zotlabs/Module/Settings.php:704 -#: ../../Zotlabs/Module/Settings.php:1041 -msgid "Email Address:" -msgstr "Email Adresse:" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../Zotlabs/Module/Settings.php:706 -msgid "Remove this account including all its channels" -msgstr "Dieses Konto inklusive all seiner Kanäle löschen" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Dateien, die mit mir geteilt wurden" -#: ../../Zotlabs/Module/Settings.php:729 -msgid "Additional Features" -msgstr "Zusätzliche Funktionen" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NEU" -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Connector Settings" -msgstr "Connector-Einstellungen" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Alle Dateien löschen" -#: ../../Zotlabs/Module/Settings.php:792 -msgid "No special theme for mobile devices" -msgstr "Keine spezielle Theme für mobile Geräte" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Diese Datei löschen" -#: ../../Zotlabs/Module/Settings.php:795 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s – (experimentell)" +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Nicht gefunden" -#: ../../Zotlabs/Module/Settings.php:837 -msgid "Display Settings" -msgstr "Anzeige-Einstellungen" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:111 ../../include/conversation.php:1734 +#: ../../include/conversation.php:1737 ../../include/features.php:57 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Settings.php:838 -msgid "Theme Settings" -msgstr "Theme-Einstellungen" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Settings.php:839 -msgid "Custom Theme Settings" -msgstr "Benutzerdefinierte Theme-Einstellungen" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\"" -#: ../../Zotlabs/Module/Settings.php:840 -msgid "Content Settings" -msgstr "Inhaltseinstellungen" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Revisionsvergleich" -#: ../../Zotlabs/Module/Settings.php:846 -msgid "Display Theme:" -msgstr "Anzeige-Theme:" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Rückgängig machen" -#: ../../Zotlabs/Module/Settings.php:847 -msgid "Mobile Theme:" -msgstr "Mobile Theme:" +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Gib einen Namen für Dein neues Wiki ein:" -#: ../../Zotlabs/Module/Settings.php:848 -msgid "Preload images before rendering the page" -msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Geben Sie den Namen der neuen Seite ein:" -#: ../../Zotlabs/Module/Settings.php:848 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Geben Sie den neuen Namen ein:" -#: ../../Zotlabs/Module/Settings.php:849 -msgid "Enable user zoom on mobile devices" -msgstr "Zoom auf Mobilgeräten aktivieren" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Bild aus Fotoalben einbetten" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Update browser every xx seconds" -msgstr "Browser alle xx Sekunden aktualisieren" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 +msgid "Embed an image from your albums" +msgstr "Betten Sie ein Bild aus Ihren Alben ein" -#: ../../Zotlabs/Module/Settings.php:850 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimum 10 Sekunden, kein Maximum" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 +#: ../../include/conversation.php:1295 +msgid "OK" +msgstr "Ok" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Wählen Sie Bilder zum Einbetten aus" -#: ../../Zotlabs/Module/Settings.php:851 -msgid "Maximum of 100 items" -msgstr "Maximum: 100 Beiträge" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Wählen Sie ein Album aus" -#: ../../Zotlabs/Module/Settings.php:852 -msgid "Show emoticons (smilies) as images" -msgstr "Emoticons (Smilies) als Bilder anzeigen" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Wählen Sie ein anderes Album aus..." -#: ../../Zotlabs/Module/Settings.php:853 -msgid "Link post titles to source" -msgstr "Beitragstitel zum Originalbeitrag verlinken" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Fehler beim Holen der Albenliste" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "System Page Layout Editor - (advanced)" -msgstr "System-Seitenlayout-Editor (für Experten)" +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Fehler beim Holen des Fotolinks" -#: ../../Zotlabs/Module/Settings.php:857 -msgid "Use blog/list mode on channel page" -msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Fehler beim Holen des Albums" -#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 -msgid "(comments displayed separately)" -msgstr "(Kommentare werden separat angezeigt)" +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." -#: ../../Zotlabs/Module/Settings.php:858 -msgid "Use blog/list mode on grid page" -msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Quelle erstellt." -#: ../../Zotlabs/Module/Settings.php:859 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Quelle aktualisiert." -#: ../../Zotlabs/Module/Settings.php:859 ../../Zotlabs/Module/Settings.php:860 -msgid "click to expand content exceeding this height" -msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Settings.php:860 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 +#: ../../include/features.php:70 +msgid "Channel Sources" +msgstr "Kanal-Quellen" -#: ../../Zotlabs/Module/Settings.php:894 -msgid "Nobody except yourself" -msgstr "Niemand außer Dir selbst" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." -#: ../../Zotlabs/Module/Settings.php:895 -msgid "Only those you specifically allow" -msgstr "Nur die, denen Du es explizit erlaubst" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Neue Quelle" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Approved connections" -msgstr "Angenommene Verbindungen" +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Any connections" -msgstr "Beliebige Verbindungen" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Anybody on this website" -msgstr "Jeder auf dieser Website" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" -#: ../../Zotlabs/Module/Settings.php:899 -msgid "Anybody in this network" -msgstr "Alle $Projectname-Mitglieder" +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Name des Kanals" -#: ../../Zotlabs/Module/Settings.php:900 -msgid "Anybody authenticated" -msgstr "Jeder authentifizierte" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "" +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" -#: ../../Zotlabs/Module/Settings.php:901 -msgid "Anybody on the internet" -msgstr "Jeder im Internet" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" +msgstr "Optional" -#: ../../Zotlabs/Module/Settings.php:976 -msgid "Publish your default profile in the network directory" -msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Quelle nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:981 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Quelle bearbeiten" -#: ../../Zotlabs/Module/Settings.php:990 -msgid "Your channel address is" -msgstr "Deine Kanal-Adresse lautet" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Quelle löschen" -#: ../../Zotlabs/Module/Settings.php:1032 -msgid "Channel Settings" -msgstr "Kanal-Einstellungen" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Quelle gelöscht" -#: ../../Zotlabs/Module/Settings.php:1039 -msgid "Basic Settings" -msgstr "Grundeinstellungen" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Konnte die Quelle nicht löschen." -#: ../../Zotlabs/Module/Settings.php:1040 ../../include/channel.php:1140 -msgid "Full Name:" -msgstr "Voller Name:" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s folgt nun %2$ss %3$s" -#: ../../Zotlabs/Module/Settings.php:1042 -msgid "Your Timezone:" -msgstr "Ihre Zeitzone:" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s folgt %2$ss %3$s nicht mehr" -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Default Post Location:" -msgstr "Standardstandort:" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." -#: ../../Zotlabs/Module/Settings.php:1043 -msgid "Geographical location to display on your posts" -msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorieren/Verstecken" -#: ../../Zotlabs/Module/Settings.php:1044 -msgid "Use Browser Location:" -msgstr "Standort des Browsers verwenden:" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "Beitrag" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "Adult Content" -msgstr "Nicht jugendfreie Inhalte" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1999 +msgid "comment" +msgstr "Kommentar" -#: ../../Zotlabs/Module/Settings.php:1046 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" -#: ../../Zotlabs/Module/Settings.php:1048 -msgid "Security and Privacy Settings" -msgstr "Sicherheits- und Datenschutz-Einstellungen" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Schlagwort entfernt" -#: ../../Zotlabs/Module/Settings.php:1051 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Schlagwort entfernen" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Hide my online presence" -msgstr "Meine Online-Präsenz verbergen" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Settings.php:1053 -msgid "Prevents displaying in your profile that you are online" -msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Informationen über den Besitzer der Seite konnten nicht gefunden werden." -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Simple Privacy Settings:" -msgstr "Einfache Privatsphäre-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." +msgstr "Album nicht gefunden." -#: ../../Zotlabs/Module/Settings.php:1056 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" +msgstr "Album löschen" -#: ../../Zotlabs/Module/Settings.php:1057 +#: ../../Zotlabs/Module/Photos.php:133 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Private - default private, never open or public" -msgstr "Privat – Standard privat, nie offen oder öffentlich" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Foto löschen" -#: ../../Zotlabs/Module/Settings.php:1059 -msgid "Blocked - default blocked to/from everybody" -msgstr "Blockiert – Alle standardmäßig blockiert" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" +msgstr "Keine Fotos ausgewählt" -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "Allow others to tag your posts" -msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." +msgstr "Der Zugriff auf dieses Foto ist eingeschränkt." -#: ../../Zotlabs/Module/Settings.php:1061 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" +#: ../../Zotlabs/Module/Photos.php:608 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB von %2$.2f MB Foto-Speicher belegt." -#: ../../Zotlabs/Module/Settings.php:1063 -msgid "Advanced Privacy Settings" -msgstr "Fortgeschrittene Privatsphäre-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB Foto-Speicher belegt." -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Expire other channel content after this many days" -msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" +msgstr "Fotos hochladen" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "0 or blank to use the website limit." -msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" +msgstr "Namen für ein neues Album eingeben" -#: ../../Zotlabs/Module/Settings.php:1065 -#, php-format -msgid "This website expires after %d days." -msgstr "Diese Webseite läuft nach %d Tagen ab." +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" +msgstr "oder ein bereits vorhandenes auswählen (Doppelklick)" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "This website does not expire imported content." -msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" +msgstr "Einen Statusbeitrag für diesen Upload erzeugen" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" +msgstr "Beschriftung (optional):" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximale Kontaktanfragen pro Tag:" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" +msgstr "Beschreibung (optional):" -#: ../../Zotlabs/Module/Settings.php:1066 -msgid "May reduce spam activity" -msgstr "Kann die Spam-Aktivität verringern" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" +msgstr "Albumname konnte nicht dekodiert werden" -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Default Post and Publish Permissions" -msgstr "Standard-Berechtigungen für Beiträge und andere Inhalte" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" +msgstr "Kontakt-Bilder" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Use my default audience setting for the type of object published" -msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" +msgstr "Neueste zuerst anzeigen" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Channel permissions category:" -msgstr "Zugriffsrechte-Kategorie des Kanals:" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" +msgstr "Älteste zuerst anzeigen" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" +msgstr "Foto ansehen" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Useful to reduce spamming" -msgstr "Nützlich, um Spam zu verringern" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" +msgstr "Album bearbeiten" -#: ../../Zotlabs/Module/Settings.php:1081 -msgid "Notification Settings" -msgstr "Benachrichtigungs-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden." -#: ../../Zotlabs/Module/Settings.php:1082 -msgid "By default post a status message when:" -msgstr "Sende standardmäßig Status-Nachrichten, wenn:" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" +msgstr "Foto nicht verfügbar" -#: ../../Zotlabs/Module/Settings.php:1083 -msgid "accepting a friend request" -msgstr "Du eine Verbindungsanfrage annimmst" +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" +msgstr "Als Profilfoto verwenden" -#: ../../Zotlabs/Module/Settings.php:1084 -msgid "joining a forum/community" -msgstr "Du einem Forum beitrittst" +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" +msgstr "Als Titelbild verwenden" -#: ../../Zotlabs/Module/Settings.php:1085 -msgid "making an interesting profile change" -msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" +msgstr "Privates Foto" -#: ../../Zotlabs/Module/Settings.php:1086 -msgid "Send a notification email when:" -msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" +msgstr "In voller Größe anzeigen" -#: ../../Zotlabs/Module/Settings.php:1087 -msgid "You receive a connection request" -msgstr "Du eine Verbindungsanfrage erhältst" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" +msgstr "Foto bearbeiten" -#: ../../Zotlabs/Module/Settings.php:1088 -msgid "Your connections are confirmed" -msgstr "Eine Verbindung bestätigt wurde" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "Drehen im UZS (rechts)" -#: ../../Zotlabs/Module/Settings.php:1089 -msgid "Someone writes on your profile wall" -msgstr "Jemand auf Deine Pinnwand schreibt" +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "Drehen gegen UZS (links)" -#: ../../Zotlabs/Module/Settings.php:1090 -msgid "Someone writes a followup comment" -msgstr "Jemand einen Beitrag kommentiert" +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" +msgstr "Foto in Album verschieben" -#: ../../Zotlabs/Module/Settings.php:1091 -msgid "You receive a private message" -msgstr "Du eine private Nachricht erhältst" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Gib einen Namen für ein neues Album ein" -#: ../../Zotlabs/Module/Settings.php:1092 -msgid "You receive a friend suggestion" -msgstr "Du einen Kontaktvorschlag erhältst" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "oder wähle ein bereits vorhandenes aus (Doppelklick)" -#: ../../Zotlabs/Module/Settings.php:1093 -msgid "You are tagged in a post" -msgstr "Du in einem Beitrag erwähnt wurdest" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Bildunterschrift" -#: ../../Zotlabs/Module/Settings.php:1094 -msgid "You are poked/prodded/etc. in a post" -msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Schlagwort hinzufügen" -#: ../../Zotlabs/Module/Settings.php:1097 -msgid "Show visual notifications including:" -msgstr "Visuelle Benachrichtigungen anzeigen für:" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Beispiele: @ben, @Karl_Prester, @lieschen@example.com" -#: ../../Zotlabs/Module/Settings.php:1099 -msgid "Unseen grid activity" -msgstr "Ungesehene Netzwerk-Aktivität" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "In der Albumansicht als nicht jugendfrei markieren" -#: ../../Zotlabs/Module/Settings.php:1100 -msgid "Unseen channel activity" -msgstr "Ungesehene Kanal-Aktivität" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" +msgstr "Mir gefällt das (Umschalter)" -#: ../../Zotlabs/Module/Settings.php:1101 -msgid "Unseen private messages" -msgstr "Ungelesene persönliche Nachrichten" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" +msgstr "Mir gefällt das nicht (Umschalter)" -#: ../../Zotlabs/Module/Settings.php:1101 -#: ../../Zotlabs/Module/Settings.php:1106 -#: ../../Zotlabs/Module/Settings.php:1107 -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "Recommended" -msgstr "Empfohlen" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Bitte warten" -#: ../../Zotlabs/Module/Settings.php:1102 -msgid "Upcoming events" -msgstr "Baldige Termine" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" +msgstr "Das bist Du" -#: ../../Zotlabs/Module/Settings.php:1103 -msgid "Events today" -msgstr "Heutige Termine" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Kommentar" -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Upcoming birthdays" -msgstr "Baldige Geburtstage" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../Zotlabs/Module/Settings.php:1104 -msgid "Not available in all themes" -msgstr "Nicht in allen Themes verfügbar" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Gefällt mir nicht" -#: ../../Zotlabs/Module/Settings.php:1105 -msgid "System (personal) notifications" -msgstr "System – (persönliche) Benachrichtigungen" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "Zustimmungen" -#: ../../Zotlabs/Module/Settings.php:1106 -msgid "System info messages" -msgstr "System – Info-Nachrichten" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Ablehnungen" -#: ../../Zotlabs/Module/Settings.php:1107 -msgid "System critical alerts" -msgstr "System – kritische Warnungen" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Enthaltungen" -#: ../../Zotlabs/Module/Settings.php:1108 -msgid "New connections" -msgstr "Neue Verbindungen" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Zusagen" -#: ../../Zotlabs/Module/Settings.php:1109 -msgid "System Registrations" -msgstr "System – Registrierungen" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Absagen" -#: ../../Zotlabs/Module/Settings.php:1110 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Vielleicht" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Notify me of events this many days in advance" -msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" +msgstr "Alles anzeigen" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Must be greater than 0" -msgstr "Muss größer als 0 sein" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1786 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Gefällt mir" +msgstr[1] "Gefällt mir" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Gefällt nicht" +msgstr[1] "Gefällt nicht" -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Fotowerkzeuge" -#: ../../Zotlabs/Module/Settings.php:1118 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!" +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "Auf diesem Foto:" -#: ../../Zotlabs/Module/Settings.php:1119 -msgid "Miscellaneous Settings" -msgstr "Sonstige Einstellungen" +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Karte" -#: ../../Zotlabs/Module/Settings.php:1120 -msgid "Default photo upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Fotos" +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" +msgstr "Gefällt mir" -#: ../../Zotlabs/Module/Settings.php:1120 -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "%Y - current year, %m - current month" -msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" +msgstr "Gefällt nicht" -#: ../../Zotlabs/Module/Settings.php:1121 -msgid "Default file upload folder" -msgstr "Voreingestellter Ordner für hochgeladene Dateien" +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Schließen" -#: ../../Zotlabs/Module/Settings.php:1123 -msgid "Personal menu to display in your channel pages" -msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Album ansehen" -#: ../../Zotlabs/Module/Settings.php:1125 -msgid "Remove this channel." -msgstr "Diesen Kanal löschen" +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Neueste Fotos" -#: ../../Zotlabs/Module/Settings.php:1126 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-Provider für Firefox Share" +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Kanal hinzugefügt." -#: ../../Zotlabs/Module/Settings.php:1127 -msgid "Start calendar week on monday" -msgstr "Montag als erster Tag der Kalenderwoche" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Setup.php:179 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Server-Einrichtung" +#: ../../Zotlabs/Module/Viewconnections.php:78 +#, php-format +msgid "Visit %s's profile [%s]" +msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Setup.php:183 -msgid "Could not connect to database." -msgstr "Kann nicht mit der Datenbank verbinden." +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Verbindungen anzeigen" -#: ../../Zotlabs/Module/Setup.php:187 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS." +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Quelle des Elements" -#: ../../Zotlabs/Module/Setup.php:194 -msgid "Could not create table." -msgstr "Kann Tabelle nicht erstellen." +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chatraum nicht gefunden" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Your site database has been installed." -msgstr "Die Datenbank Deines Hubs wurde installiert." +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Raum verlassen" -#: ../../Zotlabs/Module/Setup.php:203 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren." +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Raum löschen" -#: ../../Zotlabs/Module/Setup.php:204 ../../Zotlabs/Module/Setup.php:266 -#: ../../Zotlabs/Module/Setup.php:721 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Lies die Datei \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Ich bin gerade nicht da" -#: ../../Zotlabs/Module/Setup.php:263 -msgid "System check" -msgstr "Systemprüfung" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Ich bin online" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "Check again" -msgstr "Bitte nochmal prüfen" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Lesezeichen für diesen Raum setzen" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "Database connection" -msgstr "Datenbank Verbindung" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Neuer Chatraum" -#: ../../Zotlabs/Module/Setup.php:291 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Um $Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können." +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Chatraumname" -#: ../../Zotlabs/Module/Setup.php:292 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast." +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Verfall von Chats (Minuten)" -#: ../../Zotlabs/Module/Setup.php:293 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst." +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "%1$ss Chaträume" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Server Name" -msgstr "Datenbank-Servername" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Keine Chaträume verfügbar" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Default is 127.0.0.1" -msgstr "Standard ist 127.0.0.1" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Verfall" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Port" -msgstr "Datenbank-Port" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Communication port number - use 0 for default" -msgstr "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan-Suche" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Login Name" -msgstr "Datenbank-Benutzername" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" -#: ../../Zotlabs/Module/Setup.php:300 -msgid "Database Login Password" -msgstr "Datenbank-Kennwort" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "Anzahl der Konten" -#: ../../Zotlabs/Module/Setup.php:301 -msgid "Database Name" -msgstr "Datenbank-Name" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "Anzahl der blockierten Konten" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Type" -msgstr "Datenbanktyp" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "Anzahl der abgelaufenen Konten" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "Site administrator email address" -msgstr "E-Mail Adresse des Seiten-Administrators" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "Anzahl der ablaufenden Konten" -#: ../../Zotlabs/Module/Setup.php:304 ../../Zotlabs/Module/Setup.php:344 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "Anzahl der Kanäle" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Website URL" -msgstr "Server-URL" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "Anzahl der primären Kanäle" -#: ../../Zotlabs/Module/Setup.php:305 ../../Zotlabs/Module/Setup.php:346 -msgid "Please use SSL (https) URL if available." -msgstr "Nutze wenn möglich eine SSL-URL (https)." +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "Anzahl der Klone" -#: ../../Zotlabs/Module/Setup.php:306 ../../Zotlabs/Module/Setup.php:349 -msgid "Please select a default timezone for your website" -msgstr "Standard-Zeitzone für Deinen Server" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "Nachrichten-Warteschlangen" -#: ../../Zotlabs/Module/Setup.php:333 -msgid "Site settings" -msgstr "Seiteneinstellungen" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Die installierte Software sollte aktualisiert werden" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "Enable $Projectname advanced features?" -msgstr "Erweiterte Funktionen für $Projectname aktivieren?" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "Zusammenfassung" -#: ../../Zotlabs/Module/Setup.php:347 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Einige erweiterte Funktionen können ungeachtet ihrer Nützlichkeit eher für eine technisch versierte Zielgruppe geeignet sein." +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "Registrierte Konten" -#: ../../Zotlabs/Module/Setup.php:388 -msgid "PHP version 5.5 or greater is required." -msgstr "PHP Version 5.5 oder höher wird benötigt." +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "Ausstehende Registrierungen" -#: ../../Zotlabs/Module/Setup.php:389 -msgid "PHP version" -msgstr "PHP-Version" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "Registrierte Kanäle" -#: ../../Zotlabs/Module/Setup.php:404 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden." +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "Aktive Plug-Ins" -#: ../../Zotlabs/Module/Setup.php:405 -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 "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen." +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "Version" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "PHP executable path" -msgstr "PHP Pfad zu ausführbarer Datei" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "Repository-Version (master)" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren." +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "Repository-Version (dev)" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "Command line PHP" -msgstr "PHP Befehlszeile" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Keine gültige E-Mail Adresse." -#: ../../Zotlabs/Module/Setup.php:423 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert." +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "Geschützte E-Mail Adresse. Diese kann nicht verändert werden." -#: ../../Zotlabs/Module/Setup.php:424 -msgid "This is required for message delivery to work." -msgstr "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert." +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." +msgstr "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Setup.php:427 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Technische Qualifikationsstufe aktualisiert" -#: ../../Zotlabs/Module/Setup.php:445 -#, 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 "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden." +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Passwortüberprüfung fehlgeschlagen." -#: ../../Zotlabs/Module/Setup.php:450 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Du kannst diese Einstellungen in der php.ini des Servers ändern." +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Kennwörter stimmen nicht überein. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Setup.php:452 -msgid "PHP upload limits" -msgstr "PHP-Hochladebeschränkungen" +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert." -#: ../../Zotlabs/Module/Setup.php:475 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen." +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Kennwort geändert." -#: ../../Zotlabs/Module/Setup.php:476 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung." +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal." -#: ../../Zotlabs/Module/Setup.php:479 -msgid "Generate encryption keys" -msgstr "Verschlüsselungsschlüssel generieren" +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" +msgstr "Konto-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "libCurl PHP module" -msgstr "libCurl-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" +msgstr "Aktuelles Passwort" -#: ../../Zotlabs/Module/Setup.php:492 -msgid "GD graphics PHP module" -msgstr "GD-Grafik-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" +msgstr "Gib ein neues Passwort ein" -#: ../../Zotlabs/Module/Setup.php:493 -msgid "OpenSSL PHP module" -msgstr "OpenSSL-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" +msgstr "Bestätige das neue Passwort" -#: ../../Zotlabs/Module/Setup.php:494 -msgid "mysqli or postgres PHP module" -msgstr "mysqli oder postgres PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" +msgstr "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern" -#: ../../Zotlabs/Module/Setup.php:495 -msgid "mb_string PHP module" -msgstr "mb_string-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" +msgstr "Deine technische Qualifikationsstufe" -#: ../../Zotlabs/Module/Setup.php:496 -msgid "mcrypt PHP module" -msgstr "mcrypt-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Dies wird verwendet, um Dir eine Benutzererfahrung passend zu Deiner technischen Qualifikationsstufe zu bieten." -#: ../../Zotlabs/Module/Setup.php:497 -msgid "xml PHP module" -msgstr "xml-PHP-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" +msgstr "Email Adresse:" -#: ../../Zotlabs/Module/Setup.php:501 ../../Zotlabs/Module/Setup.php:503 -msgid "Apache mod_rewrite module" -msgstr "Apache-mod_rewrite-Modul" +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" +msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Setup.php:501 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." +msgstr "Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:510 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" +msgstr "Niemand außer Dir selbst" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert" +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" +msgstr "Nur die, denen Du es explizit erlaubst" -#: ../../Zotlabs/Module/Setup.php:515 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" +msgstr "Angenommene Verbindungen" -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" +msgstr "Beliebige Verbindungen" -#: ../../Zotlabs/Module/Setup.php:523 -msgid "Error: openssl PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" +msgstr "Jeder auf dieser Website" -#: ../../Zotlabs/Module/Setup.php:527 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" +msgstr "Alle $Projectname-Mitglieder" -#: ../../Zotlabs/Module/Setup.php:531 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" +msgstr "Jeder authentifizierte" -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" +msgstr "Jeder im Internet" -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert." +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" +msgstr "Standard-Profil im Netzwerk-Verzeichnis veröffentlichen" -#: ../../Zotlabs/Module/Setup.php:557 -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 "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht." +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Dürfen wir Dich neuen Mitgliedern als potentiellen Kontakt vorschlagen?" -#: ../../Zotlabs/Module/Setup.php:558 -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 "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst." +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" +msgstr "Deine Kanal-Adresse lautet" -#: ../../Zotlabs/Module/Setup.php:559 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst." +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" +msgstr "Kanal-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:560 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt." +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" +msgstr "Grundeinstellungen" -#: ../../Zotlabs/Module/Setup.php:563 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php ist beschreibbar" +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Voller Name:" -#: ../../Zotlabs/Module/Setup.php:577 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen." +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" +msgstr "Ihre Zeitzone:" -#: ../../Zotlabs/Module/Setup.php:578 -#, 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 "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" +msgstr "Standardstandort:" -#: ../../Zotlabs/Module/Setup.php:579 ../../Zotlabs/Module/Setup.php:600 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" +msgstr "Geografischer Ort, der bei Deinen Beiträgen angezeigt werden soll" -#: ../../Zotlabs/Module/Setup.php:580 -#, 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 "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält." +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" +msgstr "Standort des Browsers verwenden:" -#: ../../Zotlabs/Module/Setup.php:583 -#, php-format -msgid "%s is writable" -msgstr "%s ist beschreibbar" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" +msgstr "Nicht jugendfreie Inhalte" -#: ../../Zotlabs/Module/Setup.php:599 +#: ../../Zotlabs/Module/Settings/Channel.php:464 msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dieser Kanal veröffentlicht regelmäßig Inhalte, die für Minderjährige ungeeignet sind. (Bitte markiere solche Inhalte mit dem Schlagwort #NSFW)" -#: ../../Zotlabs/Module/Setup.php:603 -msgid "store is writable" -msgstr "store ist schreibbar" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" +msgstr "Sicherheits- und Datenschutz-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:636 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server." +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Deine Zugriffsrechte sind schon konfiguriert. Klicke hier, um sie zu betrachten oder zu ändern" -#: ../../Zotlabs/Module/Setup.php:637 -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 "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich." +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" +msgstr "Meine Online-Präsenz verbergen" -#: ../../Zotlabs/Module/Setup.php:638 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können." +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" +msgstr "Verhindert die Anzeige Deines Online-Status in deinem Profil" -#: ../../Zotlabs/Module/Setup.php:639 -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 "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer $Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)." +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" +msgstr "Einfache Privatsphäre-Einstellungen" -#: ../../Zotlabs/Module/Setup.php:640 +#: ../../Zotlabs/Module/Settings/Channel.php:474 msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen." +"Very Public - extremely permissive (should be used with caution)" +msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../Zotlabs/Module/Setup.php:641 +#: ../../Zotlabs/Module/Settings/Channel.php:475 msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Typisch – Standard öffentlich, Privatsphäre, wo sie erwünscht ist (ähnlich den Einstellungen in sozialen Netzwerken, aber mit besser geschützter Privatsphäre)" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "SSL certificate validation" -msgstr "SSL Zertifikatverifizierung" +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" +msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:" +#: ../../Zotlabs/Module/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" +msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Setup.php:652 -msgid "Url rewrite is working" -msgstr "Url rewrite funktioniert" +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "Allow others to tag your posts" +msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Settings/Channel.php:479 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 "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen." +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren" -#: ../../Zotlabs/Module/Setup.php:685 -msgid "Errors encountered creating database tables." -msgstr "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten." +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" +msgstr "Kanal-Berechtigungslimits" -#: ../../Zotlabs/Module/Setup.php:719 -msgid "

    What next

    " -msgstr "

    Was als Nächstes

    " +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" +msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Setup.php:720 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." +msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "Dateien, die mit mir geteilt wurden" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +#, php-format +msgid "This website expires after %d days." +msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NEU" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." +msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Alle Dateien löschen" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist." -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Diese Datei löschen" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Version %s" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" +msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Siteinfo.php:40 -msgid "Installed plugins/addons/apps:" -msgstr "Installierte Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" +msgstr "Standard-Zugriffsberechtigungsliste (ACL)" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "No installed plugins/addons/apps" -msgstr "Keine installierten Plugins/Addons/Apps" +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" +msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Siteinfo.php:66 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dieser Hub ist Teil von $Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen." +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" +msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Siteinfo.php:68 -msgid "Tag: " -msgstr "Schlagwort: " +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Siteinfo.php:70 -msgid "Last background fetch: " -msgstr "Letzter Hintergrundabruf:" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" +msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Siteinfo.php:72 -msgid "Current load average: " -msgstr "Aktuelles Load Average:" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" +msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Siteinfo.php:75 -msgid "Running at web location" -msgstr "Erreichbar unter der Web-Adresse" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" +msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Siteinfo.php:76 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bitte besuchen Sie hubzilla.org, um mehr über $Projectname zu erfahren." +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" +msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Siteinfo.php:77 -msgid "Bug reports and issues: please visit" -msgstr "Probleme oder Fehler gefunden? Bitte besuche" +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" +msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Siteinfo.php:79 -msgid "$projectname issues" -msgstr "$projectname-Bugtracker" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" +msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Siteinfo.php:80 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" +msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Siteinfo.php:82 -msgid "Site Administrators" -msgstr "Administratoren" +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" +msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt." +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" +msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Quelle erstellt." +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" +msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Quelle aktualisiert." +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" +msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" +msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:630 -#: ../../include/features.php:71 -msgid "Channel Sources" -msgstr "Kanal-Quellen" +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" +msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Externe Inhaltsquellen für Deinen Kanal verwalten." +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "You are tagged in a post" +msgstr "Du in einem Beitrag erwähnt wurdest" + +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" +msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Neue Quelle" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" +msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals." +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" +msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten" +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" +msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Leer lassen, um alle öffentlichen Beiträge zu importieren" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" +msgstr "Ungelesene persönliche Nachrichten" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Name des Kanals" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" +msgstr "Empfohlen" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" +msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Quelle nicht gefunden." +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" +msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Quelle bearbeiten" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" +msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Quelle löschen" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" +msgstr "Nicht in allen Themes verfügbar" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Quelle gelöscht" +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" +msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Konnte die Quelle nicht löschen." +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" +msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s folgt nun %2$ss %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" +msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s folgt %2$ss %3$s nicht mehr" +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" +msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Suggest.php:39 +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" +msgstr "System – Registrierungen" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal." +"Also show new wall posts, private messages and connections under Notices" +msgstr "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignorieren/Verstecken" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" +msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:256 -msgid "post" -msgstr "Beitrag" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" +msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "Kommentar" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" +msgstr "Erweiterte Account- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s hat %2$ss %3$s mit %4$s verschlagwortet" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" +msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Schlagwort entfernt" +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" +msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Schlagwort entfernen" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Fotos" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Schlagwort zum Entfernen auswählen:" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" +msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "Sache aktualisiert" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" +msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Speichern des Objekts fehlgeschlagen" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" +msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "Sache hinzugefügt" +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." +msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Sache anzeigen" +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" +msgstr "Montag als erster Tag der Kalenderwoche" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "Eintrag nicht gefunden" +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" +msgstr "Keine spezielle Theme für mobile Geräte" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Sache bearbeiten" +#: ../../Zotlabs/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 -msgid "Select a profile" -msgstr "Wähle ein Profil" +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" +msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Post an activity" -msgstr "Aktivitätsnachricht senden" +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" +msgstr "Theme-Einstellungen" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 -msgid "Only sends to viewers of the applicable profile" -msgstr "Nur an Betrachter des ausgewählten Profils senden" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Benutzerdefinierte Theme-Einstellungen" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 -msgid "Name of thing e.g. something" -msgstr "Name der Sache, z. B. irgendwas" +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 -msgid "URL of thing (optional)" -msgstr "URL der Sache (optional)" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" +msgstr "Anzeige-Theme:" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 -msgid "URL for photo of thing (optional)" -msgstr "URL eines Fotos der Sache (optional)" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" +msgstr "Schema wählen" -#: ../../Zotlabs/Module/Thing.php:349 -msgid "Add Thing to your Profile" -msgstr "Die Sache Deinem Profil hinzufügen" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Mobile Theme:" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Kanal exportieren" +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" +msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Uexport.php:57 +#: ../../Zotlabs/Module/Settings/Display.php:202 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 "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Kanal und Inhalte exportieren" +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" +msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet." +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" +msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Exportiert die Beiträge des angegebenen Jahres." +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne." +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2$s." +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2$s." +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" +msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst." +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" +msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Viewconnections.php:62 -msgid "No connections." -msgstr "Keine Verbindungen." +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" +msgstr "System-Seitenlayout-Editor (für Experten)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" +msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" +msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Viewconnections.php:75 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "%ss Profil [%s] besuchen" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" +msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Viewconnections.php:104 -msgid "View Connections" -msgstr "Verbindungen anzeigen" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Quelle des Elements" +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" +msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Webpages.php:184 ../../Zotlabs/Lib/Apps.php:217 -#: ../../include/nav.php:106 ../../include/conversation.php:1685 -msgid "Webpages" -msgstr "Webseiten" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" -#: ../../Zotlabs/Module/Webpages.php:195 ../../include/page_widgets.php:41 -msgid "Actions" -msgstr "Aktionen" +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Webpages.php:196 ../../include/page_widgets.php:42 -msgid "Page Link" -msgstr "Seiten-Link" +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" +msgstr "Funktions-/Addon-Einstellungen" -#: ../../Zotlabs/Module/Webpages.php:197 -msgid "Page Title" -msgstr "Seitentitel" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Zusätzliche Funktionen" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Xchan-Suche" +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "Name ist erforderlich" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:" +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" +msgstr "Schlüssel und Geheimnis werden benötigt" -#: ../../Zotlabs/Lib/Apps.php:204 -msgid "Site Admin" -msgstr "Hub-Administration" +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" +msgstr "Anwendung hinzufügen" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Bug Report" -msgstr "Fehler-Rückmeldung" +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "Name der Anwendung" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "View Bookmarks" -msgstr "Lesezeichen ansehen" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "My Chatrooms" -msgstr "Meine Chaträume" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" -#: ../../Zotlabs/Lib/Apps.php:209 -msgid "Firefox Share" -msgstr "Teilen-Knopf für Firefox" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Remote Diagnostics" -msgstr "Ferndiagnose" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "Umleitung" -#: ../../Zotlabs/Lib/Apps.php:211 ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanäle vorschlagen" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/nav.php:110 -#: ../../boot.php:1703 -msgid "Login" -msgstr "Anmelden" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" +msgstr "Symbol-URL" -#: ../../Zotlabs/Lib/Apps.php:214 ../../include/nav.php:179 -msgid "Grid" -msgstr "Grid" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." +msgstr "Die Anwendung wurde nicht gefunden." -#: ../../Zotlabs/Lib/Apps.php:218 ../../include/nav.php:182 -msgid "Channel Home" -msgstr "Mein Kanal" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" +msgstr "Verbundene Apps" -#: ../../Zotlabs/Lib/Apps.php:221 ../../include/nav.php:201 -#: ../../include/conversation.php:1649 ../../include/conversation.php:1652 -msgid "Events" -msgstr "Termine" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" +msgstr "Client Key beginnt mit" -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:167 -msgid "Directory" -msgstr "Verzeichnis" +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" +msgstr "Kein Name" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:193 -msgid "Mail" -msgstr "Mail" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" +msgstr "Authorisierung aufheben" -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Dieser Kanal ist auf %d Token begrenzt" -#: ../../Zotlabs/Lib/Apps.php:229 -msgid "Probe" -msgstr "Testen" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Name und Passwort sind erforderlich." -#: ../../Zotlabs/Lib/Apps.php:230 -msgid "Suggest" -msgstr "Empfehlen" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token gespeichert." -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Random Channel" -msgstr "Zufälliger Kanal" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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." +msgstr "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen." -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Invite" -msgstr "Einladen" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:" -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/widgets.php:1386 -msgid "Features" -msgstr "Funktionen" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Gastzugangstoken" -#: ../../Zotlabs/Lib/Apps.php:235 -msgid "Post" -msgstr "Beitrag schreiben" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Anmeldename" -#: ../../Zotlabs/Lib/Apps.php:335 -msgid "Purchase" -msgstr "Kaufen" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Anmeldepasswort" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Läuft ab (jjjj-mm-tt)" #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" @@ -6384,19 +6642,19 @@ msgstr "Chatraum konnte nicht gefunden werden." msgid "Room is full" msgstr "Der Chatraum ist voll" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1823 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1887 msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1824 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1888 msgid "$projectname" msgstr "$projectname" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1826 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1890 msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1828 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1892 #, php-format msgid "%s Administrator" msgstr "der Administrator von %s" @@ -6542,58 +6800,215 @@ msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erha msgid "You may visit their profile at %s" msgstr "Du kannst Dir das Profil unter %s ansehen" -#: ../../Zotlabs/Lib/Enotify.php:284 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." +#: ../../Zotlabs/Lib/Enotify.php:284 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bitte besuche %s , um die Verbindungsanfrage anzunehmen oder abzulehnen." + +#: ../../Zotlabs/Lib/Enotify.php:291 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Benachrichtigung] Freundschaftsvorschlag erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:292 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" + +#: ../../Zotlabs/Lib/Enotify.php:293 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." + +#: ../../Zotlabs/Lib/Enotify.php:299 +msgid "Name:" +msgstr "Name:" + +#: ../../Zotlabs/Lib/Enotify.php:300 +msgid "Photo:" +msgstr "Foto:" + +#: ../../Zotlabs/Lib/Enotify.php:303 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." + +#: ../../Zotlabs/Lib/Enotify.php:518 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Benachrichtigung]" + +#: ../../Zotlabs/Lib/Enotify.php:667 +msgid "created a new post" +msgstr "Neuer Beitrag wurde erzeugt" + +#: ../../Zotlabs/Lib/Enotify.php:668 +#, php-format +msgid "commented on %s's post" +msgstr "hat %s's Beitrag kommentiert" + +#: ../../Zotlabs/Lib/PermissionDescription.php:31 +#: ../../include/acl_selectors.php:124 +msgid "Visible to your default audience" +msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:106 +#: ../../include/acl_selectors.php:165 +msgid "Only me" +msgstr "Nur ich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +msgid "Public" +msgstr "Öffentlich" + +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Anybody in the $Projectname network" +msgstr "Jeder innerhalb des $Projectname Netzwerks" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +#, php-format +msgid "Any account on %s" +msgstr "Jedes Nutzerkonto auf %s" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +msgid "Any of my connections" +msgstr "Alle meine Verbindungen" + +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Only connections I specifically allow" +msgstr "Nur Verbindungen, denen ich es explizit erlaube" + +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" + +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Any connections including those who haven't yet been approved" +msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for who can view your connections" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." + +#: ../../Zotlabs/Lib/PermissionDescription.php:155 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." + +#: ../../Zotlabs/Lib/PermissionDescription.php:156 +msgid "This is your default setting for the audience of your webpages" +msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." + +#: ../../Zotlabs/Lib/Apps.php:205 +msgid "Site Admin" +msgstr "Hub-Administration" + +#: ../../Zotlabs/Lib/Apps.php:206 +msgid "Bug Report" +msgstr "Fehler-Rückmeldung" + +#: ../../Zotlabs/Lib/Apps.php:207 +msgid "View Bookmarks" +msgstr "Lesezeichen ansehen" + +#: ../../Zotlabs/Lib/Apps.php:208 +msgid "My Chatrooms" +msgstr "Meine Chaträume" + +#: ../../Zotlabs/Lib/Apps.php:210 +msgid "Firefox Share" +msgstr "Teilen-Knopf für Firefox" + +#: ../../Zotlabs/Lib/Apps.php:211 +msgid "Remote Diagnostics" +msgstr "Ferndiagnose" + +#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:88 +msgid "Suggest Channels" +msgstr "Kanäle vorschlagen" + +#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 +#: ../../boot.php:1739 +msgid "Login" +msgstr "Anmelden" + +#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 +msgid "Grid" +msgstr "Grid" + +#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 +msgid "Channel Home" +msgstr "Mein Kanal" + +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 +msgid "Events" +msgstr "Termine" + +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 +msgid "Directory" +msgstr "Verzeichnis" + +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 +msgid "Mail" +msgstr "Mail" + +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 +msgid "Chat" +msgstr "Chat" -#: ../../Zotlabs/Lib/Enotify.php:291 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Benachrichtigung] Freundschaftsvorschlag erhalten" +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Probe" +msgstr "Testen" -#: ../../Zotlabs/Lib/Enotify.php:292 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, Du hast einen Kontaktvorschlag von „%2$s“ auf %3$s erhalten" +#: ../../Zotlabs/Lib/Apps.php:232 +msgid "Suggest" +msgstr "Empfehlen" -#: ../../Zotlabs/Lib/Enotify.php:293 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, Du hast [zrl=%2$s]einen Kontaktvorschlag[/zrl] für %3$s von %4$s erhalten." +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "Random Channel" +msgstr "Zufälliger Kanal" -#: ../../Zotlabs/Lib/Enotify.php:299 -msgid "Name:" -msgstr "Name:" +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "Invite" +msgstr "Einladen" -#: ../../Zotlabs/Lib/Enotify.php:300 -msgid "Photo:" -msgstr "Foto:" +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 +msgid "Features" +msgstr "Funktionen" -#: ../../Zotlabs/Lib/Enotify.php:303 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bitte besuche %s um den Vorschlag zu akzeptieren oder abzulehnen." +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Language" +msgstr "Sprache" -#: ../../Zotlabs/Lib/Enotify.php:518 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Benachrichtigung]" +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Post" +msgstr "Beitrag schreiben" -#: ../../Zotlabs/Lib/Enotify.php:667 -msgid "created a new post" -msgstr "Neuer Beitrag wurde erzeugt" +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Profile Photo" +msgstr "Profilfoto" -#: ../../Zotlabs/Lib/Enotify.php:668 -#, php-format -msgid "commented on %s's post" -msgstr "hat %s's Beitrag kommentiert" +#: ../../Zotlabs/Lib/Apps.php:339 +msgid "Purchase" +msgstr "Kaufen" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:664 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 msgid "Private Message" msgstr "Private Nachricht" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:656 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 msgid "Select" msgstr "Auswählen" @@ -6641,11 +7056,11 @@ msgstr "Markierungsstatus (Stern) umschalten" msgid "starred" msgstr "markiert" -#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:234 ../../include/conversation.php:674 msgid "Message signature validated" msgstr "Signatur überprüft" -#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:672 +#: ../../Zotlabs/Lib/ThreadItem.php:235 ../../include/conversation.php:675 msgid "Message signature incorrect" msgstr "Signatur nicht korrekt" @@ -6653,114 +7068,115 @@ msgstr "Signatur nicht korrekt" msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/taxonomy.php:316 +#: ../../Zotlabs/Lib/ThreadItem.php:263 ../../include/taxonomy.php:316 msgid "like" msgstr "mag" -#: ../../Zotlabs/Lib/ThreadItem.php:262 ../../include/taxonomy.php:317 +#: ../../Zotlabs/Lib/ThreadItem.php:264 ../../include/taxonomy.php:317 msgid "dislike" msgstr "verurteile" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:268 msgid "Share This" msgstr "Teilen" -#: ../../Zotlabs/Lib/ThreadItem.php:266 +#: ../../Zotlabs/Lib/ThreadItem.php:268 msgid "share" msgstr "Teilen" -#: ../../Zotlabs/Lib/ThreadItem.php:275 +#: ../../Zotlabs/Lib/ThreadItem.php:277 msgid "Delivery Report" msgstr "Zustellungsbericht" -#: ../../Zotlabs/Lib/ThreadItem.php:293 +#: ../../Zotlabs/Lib/ThreadItem.php:295 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d Kommentar" msgstr[1] "%d Kommentare" -#: ../../Zotlabs/Lib/ThreadItem.php:322 ../../Zotlabs/Lib/ThreadItem.php:323 +#: ../../Zotlabs/Lib/ThreadItem.php:324 ../../Zotlabs/Lib/ThreadItem.php:325 #, php-format msgid "View %s's profile - %s" msgstr "Schaue Dir %ss Profil an – %s" -#: ../../Zotlabs/Lib/ThreadItem.php:326 +#: ../../Zotlabs/Lib/ThreadItem.php:328 msgid "to" msgstr "an" -#: ../../Zotlabs/Lib/ThreadItem.php:327 +#: ../../Zotlabs/Lib/ThreadItem.php:329 msgid "via" msgstr "via" -#: ../../Zotlabs/Lib/ThreadItem.php:328 +#: ../../Zotlabs/Lib/ThreadItem.php:330 msgid "Wall-to-Wall" msgstr "Wall-to-Wall" -#: ../../Zotlabs/Lib/ThreadItem.php:329 +#: ../../Zotlabs/Lib/ThreadItem.php:331 msgid "via Wall-To-Wall:" msgstr "via Wall-To-Wall:" -#: ../../Zotlabs/Lib/ThreadItem.php:341 ../../include/conversation.php:719 +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../include/conversation.php:722 #, php-format msgid "from %s" msgstr "via %s" -#: ../../Zotlabs/Lib/ThreadItem.php:344 ../../include/conversation.php:722 +#: ../../Zotlabs/Lib/ThreadItem.php:346 ../../include/conversation.php:725 #, php-format msgid "last edited: %s" msgstr "zuletzt bearbeitet: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:345 ../../include/conversation.php:723 +#: ../../Zotlabs/Lib/ThreadItem.php:347 ../../include/conversation.php:726 #, php-format msgid "Expires: %s" msgstr "Verfällt: %s" -#: ../../Zotlabs/Lib/ThreadItem.php:370 +#: ../../Zotlabs/Lib/ThreadItem.php:372 msgid "Save Bookmarks" msgstr "Favoriten speichern" -#: ../../Zotlabs/Lib/ThreadItem.php:371 +#: ../../Zotlabs/Lib/ThreadItem.php:373 msgid "Add to Calendar" msgstr "Zum Kalender hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:380 +#: ../../Zotlabs/Lib/ThreadItem.php:382 msgid "Mark all seen" msgstr "Alle als gelesen markieren" -#: ../../Zotlabs/Lib/ThreadItem.php:421 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] Alle anzeigen" +#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mehr anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/conversation.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/conversation.php:1216 +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1217 +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1218 +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1219 +#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 msgid "Code" msgstr "Code" -#: ../../Zotlabs/Lib/ThreadItem.php:716 +#: ../../Zotlabs/Lib/ThreadItem.php:718 msgid "Image" msgstr "Bild" -#: ../../Zotlabs/Lib/ThreadItem.php:717 +#: ../../Zotlabs/Lib/ThreadItem.php:719 msgid "Insert Link" msgstr "Link einfügen" -#: ../../Zotlabs/Lib/ThreadItem.php:718 +#: ../../Zotlabs/Lib/ThreadItem.php:720 msgid "Video" msgstr "Video" @@ -6768,3075 +7184,3003 @@ msgstr "Video" msgid "No username found in import file." msgstr "Kein Benutzername in der Importdatei gefunden." -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:50 +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 msgid "Unable to create a unique channel address. Import failed." msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen." -#: ../../include/dba/dba_driver.php:171 +#: ../../include/dba/dba_driver.php:173 #, php-format msgid "Cannot locate DNS info for database server '%s'" msgstr "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:429 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Kategorien" - -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Schlagwörter" - -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Schlüsselwörter" - -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "habe" - -#: ../../include/taxonomy.php:314 -msgid "has" -msgstr "hat" - -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "will" - -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "will" - -#: ../../include/taxonomy.php:316 -msgid "likes" -msgstr "gefällt" - -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "missfällt" - -#: ../../include/event.php:22 ../../include/event.php:69 -#: ../../include/bb2diaspora.php:485 -msgid "l F d, Y \\@ g:i A" -msgstr "l, d. F Y, H:i" - -#: ../../include/event.php:30 ../../include/event.php:73 -#: ../../include/bb2diaspora.php:491 -msgid "Starts:" -msgstr "Beginnt:" - -#: ../../include/event.php:40 ../../include/event.php:77 -#: ../../include/bb2diaspora.php:499 -msgid "Finishes:" -msgstr "Endet:" - -#: ../../include/event.php:812 -msgid "This event has been added to your calendar." -msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" - -#: ../../include/event.php:1012 -msgid "Not specified" -msgstr "Keine Angabe" - -#: ../../include/event.php:1013 -msgid "Needs Action" -msgstr "Aktion erforderlich" - -#: ../../include/event.php:1014 -msgid "Completed" -msgstr "Abgeschlossen" - -#: ../../include/event.php:1015 -msgid "In Process" -msgstr "In Bearbeitung" - -#: ../../include/event.php:1016 -msgid "Cancelled" -msgstr "gestrichen" +#: ../../include/network.php:704 +msgid "view full size" +msgstr "In Vollbildansicht anschauen" -#: ../../include/import.php:29 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." +#: ../../include/network.php:1935 ../../include/account.php:326 +#: ../../include/account.php:353 ../../include/account.php:413 +msgid "Administrator" +msgstr "Administrator" -#: ../../include/import.php:76 -msgid "Channel clone failed. Import failed." -msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Kein Betreff" -#: ../../include/items.php:892 ../../include/items.php:937 -msgid "(Unknown)" -msgstr "(Unbekannt)" +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" -#: ../../include/items.php:1136 -msgid "Visible to anybody on the internet." -msgstr "Für jeden im Internet sichtbar." +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" -#: ../../include/items.php:1138 -msgid "Visible to you only." -msgstr "Nur für Dich sichtbar." +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU-Social" -#: ../../include/items.php:1140 -msgid "Visible to anybody in this network." -msgstr "Für jedes $Projectname-Mitglied sichtbar." +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../include/items.php:1142 -msgid "Visible to anybody authenticated." -msgstr "Für jeden sichtbar, der angemeldet ist." +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../include/items.php:1144 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Für jeden auf %s sichtbar." +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" -#: ../../include/items.php:1146 -msgid "Visible to all connections." -msgstr "Für alle Verbindungen sichtbar." +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot!" -#: ../../include/items.php:1148 -msgid "Visible to approved connections." -msgstr "Nur für akzeptierte Verbindungen sichtbar." +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../include/items.php:1150 -msgid "Visible to specific connections." -msgstr "Sichtbar für bestimmte Verbindungen." +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../include/items.php:3909 -msgid "Privacy group is empty." -msgstr "Gruppe ist leer." +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" -#: ../../include/items.php:3916 +#: ../../include/photos.php:114 #, php-format -msgid "Privacy group: %s" -msgstr "Gruppe: %s" - -#: ../../include/items.php:3928 -msgid "Connection not found." -msgstr "Die Verbindung wurde nicht gefunden." - -#: ../../include/items.php:4277 -msgid "profile photo" -msgstr "Profilfoto" - -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Kein Empfänger angegeben" - -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[no subject]" - -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Kann Absender nicht bestimmen." - -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." - -#: ../../include/text.php:428 -msgid "prev" -msgstr "vorherige" - -#: ../../include/text.php:430 -msgid "first" -msgstr "erste" - -#: ../../include/text.php:459 -msgid "last" -msgstr "letzte" - -#: ../../include/text.php:462 -msgid "next" -msgstr "nächste" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" -#: ../../include/text.php:472 -msgid "older" -msgstr "älter" +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Bilddatei ist leer." -#: ../../include/text.php:474 -msgid "newer" -msgstr "neuer" +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Fotospeicherung fehlgeschlagen." -#: ../../include/text.php:863 -msgid "No connections" -msgstr "Keine Verbindungen" +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "ein neues Foto" -#: ../../include/text.php:888 +#: ../../include/photos.php:303 #, php-format -msgid "View all %s connections" -msgstr "Alle Verbindungen von %s anzeigen" - -#: ../../include/text.php:1033 ../../include/text.php:1038 -msgid "poke" -msgstr "anstupsen" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s hat %2$s auf %3$s veröffentlicht" -#: ../../include/text.php:1033 ../../include/text.php:1038 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "stupste" +#: ../../include/photos.php:506 ../../include/conversation.php:1674 +msgid "Photo Albums" +msgstr "Fotoalben" -#: ../../include/text.php:1039 -msgid "ping" -msgstr "anpingen" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Neue Fotos hochladen" -#: ../../include/text.php:1039 -msgid "pinged" -msgstr "pingte" +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "Abmelden" -#: ../../include/text.php:1040 -msgid "prod" -msgstr "knuffen" +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "Beende diese Sitzung" -#: ../../include/text.php:1040 -msgid "prodded" -msgstr "knuffte" +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "Home" -#: ../../include/text.php:1041 -msgid "slap" -msgstr "ohrfeigen" +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "Deine Beiträge und Unterhaltungen" -#: ../../include/text.php:1041 -msgid "slapped" -msgstr "ohrfeigte" +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "Deine Profilseite" -#: ../../include/text.php:1042 -msgid "finger" -msgstr "befummeln" +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "Profile verwalten" -#: ../../include/text.php:1042 -msgid "fingered" -msgstr "befummelte" +#: ../../include/nav.php:93 ../../include/channel.php:963 +msgid "Edit Profile" +msgstr "Profile bearbeiten" -#: ../../include/text.php:1043 -msgid "rebuff" -msgstr "eine Abfuhr erteilen" +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "Profil bearbeiten" -#: ../../include/text.php:1043 -msgid "rebuffed" -msgstr "zurückgewiesen" +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "Deine Bilder" -#: ../../include/text.php:1055 -msgid "happy" -msgstr "glücklich" +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "Deine Dateien" -#: ../../include/text.php:1056 -msgid "sad" -msgstr "traurig" +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "Deine Chaträume" -#: ../../include/text.php:1057 -msgid "mellow" -msgstr "sanft" +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" +msgstr "Lesezeichen" -#: ../../include/text.php:1058 -msgid "tired" -msgstr "müde" +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "Deine Lesezeichen" -#: ../../include/text.php:1059 -msgid "perky" -msgstr "frech" +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "Deine Webseiten" -#: ../../include/text.php:1060 -msgid "angry" -msgstr "sauer" +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "Dein Wiki" -#: ../../include/text.php:1061 -msgid "stupefied" -msgstr "verblüfft" +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "Anmelden" -#: ../../include/text.php:1062 -msgid "puzzled" -msgstr "verwirrt" +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" +msgstr "%s - Klick zum Abmelden" -#: ../../include/text.php:1063 -msgid "interested" -msgstr "interessiert" +#: ../../include/nav.php:135 +msgid "Remote authentication" +msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/text.php:1064 -msgid "bitter" -msgstr "verbittert" +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" +msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" -#: ../../include/text.php:1065 -msgid "cheerful" -msgstr "fröhlich" +#: ../../include/nav.php:149 +msgid "Home Page" +msgstr "Homepage" -#: ../../include/text.php:1066 -msgid "alive" -msgstr "lebendig" +#: ../../include/nav.php:152 +msgid "Create an account" +msgstr "Erzeuge ein Konto" -#: ../../include/text.php:1067 -msgid "annoyed" -msgstr "verärgert" +#: ../../include/nav.php:164 +msgid "Help and documentation" +msgstr "Hilfe und Dokumentation" -#: ../../include/text.php:1068 -msgid "anxious" -msgstr "unruhig" +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" +msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" -#: ../../include/text.php:1069 -msgid "cranky" -msgstr "schrullig" +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/text.php:1070 -msgid "disturbed" -msgstr "verstört" +#: ../../include/nav.php:172 +msgid "Channel Directory" +msgstr "Kanal-Verzeichnis" -#: ../../include/text.php:1071 -msgid "frustrated" -msgstr "frustriert" +#: ../../include/nav.php:184 +msgid "Your grid" +msgstr "Dein Grid" -#: ../../include/text.php:1072 -msgid "depressed" -msgstr "deprimiert" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" +msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" -#: ../../include/text.php:1073 -msgid "motivated" -msgstr "motiviert" +#: ../../include/nav.php:187 +msgid "Channel home" +msgstr "Mein Kanal" -#: ../../include/text.php:1074 -msgid "relaxed" -msgstr "entspannt" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" +msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" -#: ../../include/text.php:1075 -msgid "surprised" -msgstr "überrascht" +#: ../../include/nav.php:194 +msgid "Notices" +msgstr "Benachrichtigungen" -#: ../../include/text.php:1257 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "Montag" +#: ../../include/nav.php:194 +msgid "Notifications" +msgstr "Benachrichtigungen" -#: ../../include/text.php:1257 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "Dienstag" +#: ../../include/nav.php:195 +msgid "See all notifications" +msgstr "Alle Benachrichtigungen ansehen" -#: ../../include/text.php:1257 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "Mittwoch" +#: ../../include/nav.php:198 +msgid "Private mail" +msgstr "Persönliche Mail" -#: ../../include/text.php:1257 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "Donnerstag" +#: ../../include/nav.php:199 +msgid "See all private messages" +msgstr "Alle persönlichen Nachrichten ansehen" -#: ../../include/text.php:1257 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "Freitag" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" +msgstr "Markiere alle persönlichen Nachrichten als gesehen" -#: ../../include/text.php:1257 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "Samstag" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" +msgstr "Eingang" -#: ../../include/text.php:1257 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "Sonntag" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" +msgstr "Ausgang" -#: ../../include/text.php:1261 ../../include/js_strings.php:45 -msgid "January" -msgstr "Januar" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" +msgstr "Neue Nachricht" -#: ../../include/text.php:1261 ../../include/js_strings.php:46 -msgid "February" -msgstr "Februar" +#: ../../include/nav.php:206 +msgid "Event Calendar" +msgstr "Terminkalender" -#: ../../include/text.php:1261 ../../include/js_strings.php:47 -msgid "March" -msgstr "März" +#: ../../include/nav.php:207 +msgid "See all events" +msgstr "Alle Termine ansehen" -#: ../../include/text.php:1261 ../../include/js_strings.php:48 -msgid "April" -msgstr "April" +#: ../../include/nav.php:208 +msgid "Mark all events seen" +msgstr "Markiere alle Termine als gesehen" -#: ../../include/text.php:1261 -msgid "May" -msgstr "Mai" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" +msgstr "Verwalte Deine Kanäle" -#: ../../include/text.php:1261 ../../include/js_strings.php:50 -msgid "June" -msgstr "Juni" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" +msgstr "Konto-/Kanal-Einstellungen" -#: ../../include/text.php:1261 ../../include/js_strings.php:51 -msgid "July" -msgstr "Juli" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" +msgstr "Administration" -#: ../../include/text.php:1261 ../../include/js_strings.php:52 -msgid "August" -msgstr "August" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" +msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/text.php:1261 ../../include/js_strings.php:53 -msgid "September" -msgstr "September" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." +msgstr "Lädt ..." -#: ../../include/text.php:1261 ../../include/js_strings.php:54 -msgid "October" -msgstr "Oktober" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" +msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/text.php:1261 ../../include/js_strings.php:55 -msgid "November" -msgstr "November" +#: ../../include/nav.php:258 +msgid "Please wait..." +msgstr "Bitte warten..." -#: ../../include/text.php:1261 ../../include/js_strings.php:56 -msgid "December" -msgstr "Dezember" +#: ../../include/oembed.php:349 +msgid "Embedded content" +msgstr "Eingebetteter Inhalt" -#: ../../include/text.php:1338 ../../include/text.php:1342 -msgid "Unknown Attachment" -msgstr "Unbekannter Anhang" +#: ../../include/oembed.php:358 +msgid "Embedding disabled" +msgstr "Einbetten deaktiviert" -#: ../../include/text.php:1344 -msgid "unknown" -msgstr "unbekannt" +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" +msgstr "Kann meine normalen Beiträge sehen" -#: ../../include/text.php:1380 -msgid "remove category" -msgstr "Kategorie entfernen" +#: ../../include/permissions.php:39 +msgid "Can view my webpages" +msgstr "Kann meine Webseiten sehen" -#: ../../include/text.php:1457 -msgid "remove from file" -msgstr "aus der Datei entfernen" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" -#: ../../include/text.php:1753 ../../include/text.php:1824 -msgid "default" -msgstr "Standard" +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" +msgstr "Kann andere Elemente mögen/nicht mögen" -#: ../../include/text.php:1761 -msgid "Page layout" -msgstr "Seiten-Layout" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" +msgstr "Profile und alles außer Beiträge und Kommentare" -#: ../../include/text.php:1761 -msgid "You can create your own with the layouts tool" -msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" -#: ../../include/text.php:1803 -msgid "Page content type" -msgstr "Art des Seiteninhalts" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" +msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" -#: ../../include/text.php:1836 -msgid "Select an alternate language" -msgstr "Wähle eine alternative Sprache" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" +msgstr "Kann mit mir chatten (wenn verfügbar)" -#: ../../include/text.php:1953 -msgid "activity" -msgstr "Aktivität" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" +msgstr "Kann in meine Datei- und Bilderordner schreiben" -#: ../../include/text.php:2262 -msgid "Design Tools" -msgstr "Gestaltungswerkzeuge" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" +msgstr "Kann meine Webseiten bearbeiten" -#: ../../include/text.php:2268 -msgid "Pages" -msgstr "Seiten" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "System" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" +msgstr "Kann meine Kanäle administrieren" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Neue App" +#: ../../include/permissions.php:55 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Vorschläge" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen." -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Mehr anzeigen …" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen." -#: ../../include/widgets.php:175 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." +#: ../../include/import.php:1441 +msgid "Unable to import element \"" +msgstr "" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Neue Verbindung hinzufügen" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "(Unbekannt)" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Adresse des Kanals eingeben" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "Für jeden im Internet sichtbar." -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" +#: ../../include/items.php:1164 +msgid "Visible to you only." +msgstr "Nur für Dich sichtbar." -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notizen" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "Für jedes $Projectname-Mitglied sichtbar." -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eintrag löschen" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "Für jeden sichtbar, der angemeldet ist." -#: ../../include/widgets.php:281 ../../include/features.php:84 -msgid "Saved Searches" -msgstr "Gespeicherte Suchanfragen" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Für jeden auf %s sichtbar." -#: ../../include/widgets.php:282 ../../include/group.php:316 -msgid "add" -msgstr "hinzufügen" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Für alle Verbindungen sichtbar." -#: ../../include/widgets.php:310 ../../include/contact_widgets.php:53 -#: ../../include/features.php:98 -msgid "Saved Folders" -msgstr "Gespeicherte Ordner" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Nur für akzeptierte Verbindungen sichtbar." -#: ../../include/widgets.php:313 ../../include/widgets.php:432 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Alles" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archive" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." +msgstr "Gruppe ist leer." -#: ../../include/widgets.php:516 -msgid "Refresh" -msgstr "Aktualisieren" +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppe: %s" -#: ../../include/widgets.php:556 -msgid "Account settings" -msgstr "Konto-Einstellungen" +#: ../../include/items.php:3985 +msgid "Connection not found." +msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/widgets.php:562 -msgid "Channel settings" -msgstr "Kanal-Einstellungen" +#: ../../include/items.php:4338 +msgid "profile photo" +msgstr "Profilfoto" -#: ../../include/widgets.php:571 -msgid "Additional features" -msgstr "Zusätzliche Funktionen" +#: ../../include/datetime.php:135 +msgid "Birthday" +msgstr "Geburtstag" -#: ../../include/widgets.php:578 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" +#: ../../include/datetime.php:137 +msgid "Age: " +msgstr "Alter:" -#: ../../include/widgets.php:584 -msgid "Display settings" -msgstr "Anzeige-Einstellungen" +#: ../../include/datetime.php:139 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/widgets.php:591 -msgid "Manage locations" -msgstr "Klon-Adressen verwalten" +#: ../../include/datetime.php:272 ../../boot.php:2578 +msgid "never" +msgstr "Nie" -#: ../../include/widgets.php:600 -msgid "Export channel" -msgstr "Kanal exportieren" +#: ../../include/datetime.php:278 +msgid "less than a second ago" +msgstr "Vor weniger als einer Sekunde" -#: ../../include/widgets.php:607 -msgid "Connected apps" -msgstr "Verbundene Apps" +#: ../../include/datetime.php:296 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "vor %1$d %2$s" -#: ../../include/widgets.php:622 -msgid "Premium Channel Settings" -msgstr "Premium-Kanal-Einstellungen" +#: ../../include/datetime.php:307 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "Jahr" +msgstr[1] "Jahre" -#: ../../include/widgets.php:651 -msgid "Private Mail Menu" -msgstr "Private Nachrichten" +#: ../../include/datetime.php:310 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "Monat" +msgstr[1] "Monate" -#: ../../include/widgets.php:653 -msgid "Combined View" -msgstr "Kombinierte Anzeige" +#: ../../include/datetime.php:313 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "Woche" +msgstr[1] "Wochen" -#: ../../include/widgets.php:658 ../../include/nav.php:196 -msgid "Inbox" -msgstr "Eingang" +#: ../../include/datetime.php:316 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "Tag" +msgstr[1] "Tage" -#: ../../include/widgets.php:663 ../../include/nav.php:197 -msgid "Outbox" -msgstr "Ausgang" +#: ../../include/datetime.php:319 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "Stunde" +msgstr[1] "Stunden" -#: ../../include/widgets.php:668 ../../include/nav.php:198 -msgid "New Message" -msgstr "Neue Nachricht" +#: ../../include/datetime.php:322 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "Minute" +msgstr[1] "Minuten" -#: ../../include/widgets.php:685 ../../include/widgets.php:697 -msgid "Conversations" -msgstr "Konversationen" +#: ../../include/datetime.php:325 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "Sekunde" +msgstr[1] "Sekunden" -#: ../../include/widgets.php:689 -msgid "Received Messages" -msgstr "Erhaltene Nachrichten" +#: ../../include/datetime.php:562 +#, php-format +msgid "%1$s's birthday" +msgstr "%1$ss Geburtstag" -#: ../../include/widgets.php:693 -msgid "Sent Messages" -msgstr "Gesendete Nachrichten" +#: ../../include/datetime.php:563 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/widgets.php:707 -msgid "No messages." -msgstr "Keine Nachrichten." +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Ungültige E-Mail-Adresse" -#: ../../include/widgets.php:725 -msgid "Delete conversation" -msgstr "Unterhaltung löschen" +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" -#: ../../include/widgets.php:751 -msgid "Events Menu" -msgstr "Kalendermenü" +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." -#: ../../include/widgets.php:752 -msgid "Day View" -msgstr "Tagesansicht" +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "Eine Einladung wird benötigt." -#: ../../include/widgets.php:753 -msgid "Week View" -msgstr "Wochenansicht" +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "Die Einladung konnte nicht bestätigt werden." -#: ../../include/widgets.php:754 -msgid "Month View" -msgstr "Monatsansicht" +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "Bitte gib die benötigten Informationen ein." -#: ../../include/widgets.php:766 -msgid "Events Tools" -msgstr "Kalenderwerkzeuge" +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." -#: ../../include/widgets.php:767 -msgid "Export Calendar" -msgstr "Kalender exportieren" +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrierungsbestätigung für %s" -#: ../../include/widgets.php:768 -msgid "Import Calendar" -msgstr "Kalender importieren" +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "Registrierungsanfrage auf %s" -#: ../../include/widgets.php:842 ../../include/conversation.php:1662 -#: ../../include/conversation.php:1665 -msgid "Chatrooms" -msgstr "Chaträume" +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "Dein Registrierungspasswort" -#: ../../include/widgets.php:846 -msgid "Overview" -msgstr "Übersicht" +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" +msgstr "Registrierungsdetails für %s" -#: ../../include/widgets.php:853 -msgid "Chat Members" -msgstr "Chatmitglieder" +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "Nutzerkonto bestätigt." -#: ../../include/widgets.php:876 -msgid "Bookmarked Chatrooms" -msgstr "Gespeicherte Chatrooms" +#: ../../include/account.php:463 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrierung für %s wurde widerrufen" -#: ../../include/widgets.php:899 -msgid "Suggested Chatrooms" -msgstr "Chatraum-Vorschläge" +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/widgets.php:1044 ../../include/widgets.php:1156 -msgid "photo/image" -msgstr "Foto/Bild" +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/widgets.php:1099 -msgid "Click to show more" -msgstr "Klick, um mehr anzuzeigen" +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." +msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/widgets.php:1250 -msgid "Rating Tools" -msgstr "Bewertungswerkzeuge" +#: ../../include/selectors.php:30 +msgid "Frequently" +msgstr "Häufig" -#: ../../include/widgets.php:1254 ../../include/widgets.php:1256 -msgid "Rate Me" -msgstr "Bewerte mich" +#: ../../include/selectors.php:31 +msgid "Hourly" +msgstr "Stündlich" -#: ../../include/widgets.php:1259 -msgid "View Ratings" -msgstr "Bewertungen ansehen" +#: ../../include/selectors.php:32 +msgid "Twice daily" +msgstr "Zwei Mal am Tag" -#: ../../include/widgets.php:1316 -msgid "Forums" -msgstr "Foren" +#: ../../include/selectors.php:33 +msgid "Daily" +msgstr "Täglich" -#: ../../include/widgets.php:1345 -msgid "Tasks" -msgstr "Aufgaben" +#: ../../include/selectors.php:34 +msgid "Weekly" +msgstr "Wöchentlich" -#: ../../include/widgets.php:1354 -msgid "Documentation" -msgstr "Dokumentation" +#: ../../include/selectors.php:35 +msgid "Monthly" +msgstr "Monatlich" -#: ../../include/widgets.php:1356 -msgid "Project/Site Information" -msgstr "Informationen über das Projekt und diesen Hub" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Male" +msgstr "Männlich" -#: ../../include/widgets.php:1357 -msgid "For Members" -msgstr "Für Mitglieder" +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +msgid "Female" +msgstr "Weiblich" -#: ../../include/widgets.php:1358 -msgid "For Administrators" -msgstr "Für Administratoren" +#: ../../include/selectors.php:49 +msgid "Currently Male" +msgstr "Momentan männlich" -#: ../../include/widgets.php:1359 -msgid "For Developers" -msgstr "Für Entwickler" +#: ../../include/selectors.php:49 +msgid "Currently Female" +msgstr "Momentan weiblich" -#: ../../include/widgets.php:1383 ../../include/widgets.php:1421 -msgid "Member registrations waiting for confirmation" -msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" +#: ../../include/selectors.php:49 +msgid "Mostly Male" +msgstr "Größtenteils männlich" -#: ../../include/widgets.php:1389 -msgid "Inspect queue" -msgstr "Warteschlange kontrollieren" +#: ../../include/selectors.php:49 +msgid "Mostly Female" +msgstr "Größtenteils weiblich" -#: ../../include/widgets.php:1391 -msgid "DB updates" -msgstr "DB-Aktualisierungen" +#: ../../include/selectors.php:49 +msgid "Transgender" +msgstr "Transsexuell" -#: ../../include/widgets.php:1416 ../../include/nav.php:216 -msgid "Admin" -msgstr "Administration" +#: ../../include/selectors.php:49 +msgid "Intersex" +msgstr "Zwischengeschlechtlich" -#: ../../include/widgets.php:1417 -msgid "Plugin Features" -msgstr "Plug-In Funktionen" +#: ../../include/selectors.php:49 +msgid "Transsexual" +msgstr "Transsexuell" -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Der Kanal ist auf dieser Seite blockiert " +#: ../../include/selectors.php:49 +msgid "Hermaphrodite" +msgstr "Zwitter" -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Adresse des Kanals fehlt." +#: ../../include/selectors.php:49 +msgid "Neuter" +msgstr "Geschlechtslos" -#: ../../include/follow.php:81 -msgid "Response from remote channel was incomplete." -msgstr "Antwort des entfernten Kanals war unvollständig." +#: ../../include/selectors.php:49 +msgid "Non-specific" +msgstr "unklar" -#: ../../include/follow.php:98 -msgid "Channel was deleted and no longer exists." -msgstr "Kanal wurde gelöscht und existiert nicht mehr." +#: ../../include/selectors.php:49 +msgid "Undecided" +msgstr "Unentschieden" -#: ../../include/follow.php:154 ../../include/follow.php:190 -msgid "Protocol disabled." -msgstr "Protokoll deaktiviert." +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Males" +msgstr "Männer" -#: ../../include/follow.php:178 -msgid "Channel discovery failed." -msgstr "Kanalsuche fehlgeschlagen" +#: ../../include/selectors.php:85 ../../include/selectors.php:104 +msgid "Females" +msgstr "Frauen" -#: ../../include/follow.php:216 -msgid "Cannot connect to yourself." -msgstr "Du kannst Dich nicht mit Dir selbst verbinden." +#: ../../include/selectors.php:85 +msgid "Gay" +msgstr "Schwul" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "%1$ss Lesezeichen" +#: ../../include/selectors.php:85 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Öffentliche Zeitleiste" +#: ../../include/selectors.php:85 +msgid "No Preference" +msgstr "Keine Bevorzugung" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:844 -#: ../../include/bbcode.php:847 ../../include/bbcode.php:852 -#: ../../include/bbcode.php:855 ../../include/bbcode.php:858 -#: ../../include/bbcode.php:861 ../../include/bbcode.php:866 -#: ../../include/bbcode.php:869 ../../include/bbcode.php:874 -#: ../../include/bbcode.php:877 ../../include/bbcode.php:880 -#: ../../include/bbcode.php:883 -msgid "Image/photo" -msgstr "Bild/Foto" +#: ../../include/selectors.php:85 +msgid "Bisexual" +msgstr "Bisexuell" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:894 -msgid "Encrypted content" -msgstr "Verschlüsselter Inhalt" +#: ../../include/selectors.php:85 +msgid "Autosexual" +msgstr "Autosexuell" -#: ../../include/bbcode.php:178 -#, php-format -msgid "Install %s element: " -msgstr "Element %s installieren: " +#: ../../include/selectors.php:85 +msgid "Abstinent" +msgstr "Enthaltsam" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." +#: ../../include/selectors.php:85 +msgid "Virgin" +msgstr "Jungfräulich" -#: ../../include/bbcode.php:254 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schrieb den folgenden %2$s %3$s" +#: ../../include/selectors.php:85 +msgid "Deviant" +msgstr "Abweichend" -#: ../../include/bbcode.php:331 ../../include/bbcode.php:339 -msgid "Click to open/close" -msgstr "Klicke zum Öffnen/Schließen" +#: ../../include/selectors.php:85 +msgid "Fetish" +msgstr "Fetisch" -#: ../../include/bbcode.php:339 -msgid "spoiler" -msgstr "Spoiler" +#: ../../include/selectors.php:85 +msgid "Oodles" +msgstr "Unmengen" -#: ../../include/bbcode.php:585 -msgid "Different viewers will see this text differently" -msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" +#: ../../include/selectors.php:85 +msgid "Nonsexual" +msgstr "Sexlos" -#: ../../include/bbcode.php:832 -msgid "$1 wrote:" -msgstr "$1 schrieb:" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Single" +msgstr "Single" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Verzeichnisoptionen" +#: ../../include/selectors.php:123 +msgid "Lonely" +msgstr "Einsam" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Sicherer Modus" +#: ../../include/selectors.php:123 +msgid "Available" +msgstr "Verfügbar" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Nur öffentliche Foren" +#: ../../include/selectors.php:123 +msgid "Unavailable" +msgstr "Nicht verfügbar" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Nur dieser Hub" +#: ../../include/selectors.php:123 +msgid "Has crush" +msgstr "Verguckt" -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." +#: ../../include/selectors.php:123 +msgid "Infatuated" +msgstr "Verknallt" -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1702 -msgid "Logout" -msgstr "Abmelden" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Dating" +msgstr "Lerne gerade jemanden kennen" -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beende diese Sitzung" +#: ../../include/selectors.php:123 +msgid "Unfaithful" +msgstr "Treulos" -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" +#: ../../include/selectors.php:123 +msgid "Sex Addict" +msgstr "Sexabhängig" -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Deine Beiträge und Unterhaltungen" +#: ../../include/selectors.php:123 +msgid "Friends/Benefits" +msgstr "Freunde/Begünstigte" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Deine Profilseite" +#: ../../include/selectors.php:123 +msgid "Casual" +msgstr "Lose" -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Profile verwalten" +#: ../../include/selectors.php:123 +msgid "Engaged" +msgstr "Verlobt" -#: ../../include/nav.php:90 ../../include/channel.php:941 -msgid "Edit Profile" -msgstr "Profile bearbeiten" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Married" +msgstr "Verheiratet" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Profil bearbeiten" +#: ../../include/selectors.php:123 +msgid "Imaginarily married" +msgstr "Gewissermaßen verheiratet" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Deine Bilder" +#: ../../include/selectors.php:123 +msgid "Partners" +msgstr "Partner" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Deine Dateien" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Lebensgemeinschaft" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Deine Chaträume" +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Informelle Ehe" -#: ../../include/nav.php:102 ../../include/conversation.php:1675 -msgid "Bookmarks" -msgstr "Lesezeichen" +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Glücklich" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Deine Lesezeichen" +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Nicht Ausschau haltend" -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Deine Webseiten" +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Swinger" -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Anmelden" +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Betrogen" -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - Klick zum Abmelden" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Getrennt" -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Über Konto auf anderem Server einloggen" +#: ../../include/selectors.php:123 +msgid "Unstable" +msgstr "Labil" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Divorced" +msgstr "Geschieden" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" +#: ../../include/selectors.php:123 +msgid "Imaginarily divorced" +msgstr "Gewissermaßen geschieden" -#: ../../include/nav.php:147 -msgid "Create an account" -msgstr "Erzeuge ein Konto" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Widowed" +msgstr "Verwitwet" -#: ../../include/nav.php:159 -msgid "Help and documentation" -msgstr "Hilfe und Dokumentation" +#: ../../include/selectors.php:123 +msgid "Uncertain" +msgstr "Ungewiss" -#: ../../include/nav.php:163 -msgid "Applications, utilities, links, games" -msgstr "Anwendungen (Apps), Zubehör, Links, Spiele" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "It's complicated" +msgstr "Es ist kompliziert" -#: ../../include/nav.php:165 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" +#: ../../include/selectors.php:123 +msgid "Don't care" +msgstr "Interessiert mich nicht" -#: ../../include/nav.php:167 -msgid "Channel Directory" -msgstr "Kanal-Verzeichnis" +#: ../../include/selectors.php:123 +msgid "Ask me" +msgstr "Frag mich mal" -#: ../../include/nav.php:179 -msgid "Your grid" -msgstr "Dein Grid" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "Bild/Foto" -#: ../../include/nav.php:180 -msgid "Mark all grid notifications seen" -msgstr "Alle Grid-Benachrichtigungen als angesehen markieren" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "Verschlüsselter Inhalt" -#: ../../include/nav.php:182 -msgid "Channel home" -msgstr "Mein Kanal" +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Element %s installieren: " -#: ../../include/nav.php:183 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren." -#: ../../include/nav.php:189 -msgid "Notices" -msgstr "Benachrichtigungen" +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s schrieb den folgenden %2$s %3$s" -#: ../../include/nav.php:189 -msgid "Notifications" -msgstr "Benachrichtigungen" +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/nav.php:190 -msgid "See all notifications" -msgstr "Alle Benachrichtigungen ansehen" +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "Spoiler" -#: ../../include/nav.php:193 -msgid "Private mail" -msgstr "Persönliche Mail" +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" +msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" -#: ../../include/nav.php:194 -msgid "See all private messages" -msgstr "Alle persönlichen Nachrichten ansehen" +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "$1 schrieb:" -#: ../../include/nav.php:195 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l, d. F Y, H:i" -#: ../../include/nav.php:201 -msgid "Event Calendar" -msgstr "Terminkalender" +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Beginnt:" -#: ../../include/nav.php:202 -msgid "See all events" -msgstr "Alle Termine ansehen" +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Endet:" -#: ../../include/nav.php:203 -msgid "Mark all events seen" -msgstr "Markiere alle Termine als gesehen" +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/nav.php:206 -msgid "Manage Your Channels" -msgstr "Verwalte Deine Kanäle" +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Keine Angabe" -#: ../../include/nav.php:208 -msgid "Account/Channel Settings" -msgstr "Konto-/Kanal-Einstellungen" +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Aktion erforderlich" -#: ../../include/nav.php:216 -msgid "Site Setup and Configuration" -msgstr "Seiten-Einrichtung und -Konfiguration" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Abgeschlossen" -#: ../../include/nav.php:247 ../../include/conversation.php:851 -msgid "Loading..." -msgstr "Lädt ..." +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In Bearbeitung" -#: ../../include/nav.php:252 -msgid "@name, #tag, ?doc, content" -msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "gestrichen" -#: ../../include/nav.php:253 -msgid "Please wait..." -msgstr "Bitte warten..." +#: ../../include/security.php:109 +msgid "guest:" +msgstr "Gast:" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Neues Fenster" +#: ../../include/security.php:527 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde." -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" +#: ../../include/help.php:25 +msgid "Help:" +msgstr "Hilfe:" -#: ../../include/connections.php:214 +#: ../../include/bookmarks.php:35 #, php-format -msgid "User '%s' deleted" -msgstr "Benutzer '%s' gelöscht" +msgid "%1$s's bookmarks" +msgstr "%1$ss Lesezeichen" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d Einladung verfügbar" -msgstr[1] "%d Einladungen verfügbar" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Finde Kanäle" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Name oder Interessen eingeben" +#: ../../include/group.php:289 +msgid "edit" +msgstr "Bearbeiten" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Verbinden/Folgen" +#: ../../include/group.php:311 ../../include/features.php:83 +msgid "Privacy Groups" +msgstr "Gruppen" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Beispiele: Robert Morgenstein, Angeln" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Gruppe ändern" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Zufallsprofil" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Gruppe hinzufügen" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Lade Freunde ein" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanäle, die in keiner Gruppe sind" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" +#: ../../include/group.php:316 ../../include/widgets.php:284 +msgid "add" +msgstr "hinzufügen" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeinsame Verbindung" -msgstr[1] "%d gemeinsame Verbindungen" +#: ../../include/attach.php:248 ../../include/attach.php:334 +msgid "Item was not found." +msgstr "Beitrag wurde nicht gefunden." -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mehr zeigen" +#: ../../include/attach.php:500 +msgid "No source file." +msgstr "Keine Quelldatei." -#: ../../include/conversation.php:204 +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" +msgstr "Kann Datei zum Ersetzen nicht finden" + +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" +msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" + +#: ../../include/attach.php:675 #, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ist jetzt mit %2$s verbunden" +msgid "File exceeds size limit of %d" +msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/conversation.php:239 +#: ../../include/attach.php:689 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s stupste %2$s an" +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." + +#: ../../include/attach.php:847 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." + +#: ../../include/attach.php:860 +msgid "Stored file could not be verified. Upload failed." +msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" -msgstr "%ss Profil auf %s ansehen" +#: ../../include/attach.php:916 ../../include/attach.php:932 +msgid "Path not available." +msgstr "Pfad nicht verfügbar." -#: ../../include/conversation.php:710 -msgid "Categories:" -msgstr "Kategorien:" +#: ../../include/attach.php:978 ../../include/attach.php:1130 +msgid "Empty pathname" +msgstr "Leere Pfadangabe" -#: ../../include/conversation.php:711 -msgid "Filed under:" -msgstr "Gespeichert unter:" +#: ../../include/attach.php:1004 +msgid "duplicate filename or path" +msgstr "doppelter Dateiname oder Pfad" -#: ../../include/conversation.php:738 -msgid "View in context" -msgstr "Im Zusammenhang anschauen" +#: ../../include/attach.php:1026 +msgid "Path not found." +msgstr "Pfad nicht gefunden." -#: ../../include/conversation.php:847 -msgid "remove" -msgstr "lösche" +#: ../../include/attach.php:1084 +msgid "mkdir failed." +msgstr "mkdir fehlgeschlagen." -#: ../../include/conversation.php:852 -msgid "Delete Selected Items" -msgstr "Lösche die ausgewählten Elemente" +#: ../../include/attach.php:1088 +msgid "database storage failed." +msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/conversation.php:948 -msgid "View Source" -msgstr "Quelle anzeigen" +#: ../../include/attach.php:1136 +msgid "Empty path" +msgstr "Leere Pfadangabe" -#: ../../include/conversation.php:949 -msgid "Follow Thread" -msgstr "Unterhaltung folgen" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Neue Seite" -#: ../../include/conversation.php:950 -msgid "Unfollow Thread" -msgstr "Unterhaltung nicht mehr folgen" +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titel" -#: ../../include/conversation.php:955 -msgid "Activity/Posts" -msgstr "Aktivitäten/Beiträge" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Anhänge:" -#: ../../include/conversation.php:957 -msgid "Edit Connection" -msgstr "Verbindung bearbeiten" +#: ../../include/bb2diaspora.php:487 +msgid "$Projectname event notification:" +msgstr "$Projectname-Terminbenachrichtigung:" -#: ../../include/conversation.php:958 -msgid "Message" -msgstr "Nachricht" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dieses Element löschen?" -#: ../../include/conversation.php:1075 +#: ../../include/js_strings.php:8 #, php-format -msgid "%s likes this." -msgstr "%s gefällt das." +msgid "%s show less" +msgstr "%s weniger anzeigen" -#: ../../include/conversation.php:1075 +#: ../../include/js_strings.php:9 #, php-format -msgid "%s doesn't like this." -msgstr "%s gefällt das nicht." +msgid "%s expand" +msgstr "%s aufklappen" -#: ../../include/conversation.php:1079 +#: ../../include/js_strings.php:10 #, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d Person gefällt das." -msgstr[1] "%2$d Leuten gefällt das." +msgid "%s collapse" +msgstr "%s einklappen" -#: ../../include/conversation.php:1081 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d Person gefällt das nicht." -msgstr[1] "%2$d Leuten gefällt das nicht." +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Kennwort zu kurz" -#: ../../include/conversation.php:1087 -msgid "and" -msgstr "und" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Kennwörter stimmen nicht überein" -#: ../../include/conversation.php:1090 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] ", und %d andere" +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "alle" -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s like this." -msgstr "%s gefällt das." +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "geheime Passphrase" -#: ../../include/conversation.php:1091 -#, php-format -msgid "%s don't like this." -msgstr "%s gefällt das nicht." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Hinweis zur Passphrase" -#: ../../include/conversation.php:1130 -msgid "Set your location" -msgstr "Standort" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." -#: ../../include/conversation.php:1131 -msgid "Clear browser location" -msgstr "Browser-Standort löschen" +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alle schließen" -#: ../../include/conversation.php:1177 -msgid "Tag term:" -msgstr "Schlagwort:" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nichts Neues hier" -#: ../../include/conversation.php:1178 -msgid "Where are you right now?" -msgstr "Wo bist Du jetzt grade?" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" -#: ../../include/conversation.php:1210 -msgid "Page link name" -msgstr "Link zur Seite" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Beschreibung (optional)" -#: ../../include/conversation.php:1213 -msgid "Post as" -msgstr "Veröffentlichen als" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Gib eine URL ein:" -#: ../../include/conversation.php:1223 -msgid "Toggle voting" -msgstr "Umfragewerkzeug aktivieren" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" -#: ../../include/conversation.php:1231 -msgid "Categories (optional, comma-separated list)" -msgstr "Kategorien (optional, kommagetrennte Liste)" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../include/conversation.php:1254 -msgid "Set publish date" -msgstr "Veröffentlichungsdatum festlegen" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr " " -#: ../../include/conversation.php:1258 -msgid "OK" -msgstr "Ok" +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "her" -#: ../../include/conversation.php:1503 -msgid "Discover" -msgstr "Entdecken" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "von jetzt" -#: ../../include/conversation.php:1506 -msgid "Imported public streams" -msgstr "Importierte öffentliche Beiträge" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "weniger als eine Minute" -#: ../../include/conversation.php:1511 -msgid "Commented Order" -msgstr "Neueste Kommentare" +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "ungefähr eine Minute" -#: ../../include/conversation.php:1514 -msgid "Sort by Comment Date" -msgstr "Nach Kommentardatum sortiert" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d Minuten" -#: ../../include/conversation.php:1518 -msgid "Posted Order" -msgstr "Neueste Beiträge" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "ungefähr eine Stunde" -#: ../../include/conversation.php:1521 -msgid "Sort by Post Date" -msgstr "Nach Beitragsdatum sortiert" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "ungefähr %d Stunden" -#: ../../include/conversation.php:1529 -msgid "Posts that mention or involve you" -msgstr "Beiträge mit Beteiligung Deinerseits" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "ein Tag" -#: ../../include/conversation.php:1538 -msgid "Activity Stream - by date" -msgstr "Activity Stream – nach Datum sortiert" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d Tage" -#: ../../include/conversation.php:1544 -msgid "Starred" -msgstr "Markiert" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "ungefähr ein Monat" -#: ../../include/conversation.php:1547 -msgid "Favourite Posts" -msgstr "Markierte Beiträge" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d Monate" -#: ../../include/conversation.php:1554 -msgid "Spam" -msgstr "Spam" +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "ungefähr ein Jahr" -#: ../../include/conversation.php:1557 -msgid "Posts flagged as SPAM" -msgstr "Nachrichten, die als SPAM markiert wurden" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" +msgstr "%d Jahre" -#: ../../include/conversation.php:1614 -msgid "Status Messages and Posts" -msgstr "Statusnachrichten und Beiträge" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../include/conversation.php:1623 -msgid "About" -msgstr "Über" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../include/conversation.php:1626 -msgid "Profile Details" -msgstr "Profil-Details" +#: ../../include/js_strings.php:45 ../../include/text.php:1289 +msgid "January" +msgstr "Januar" + +#: ../../include/js_strings.php:46 ../../include/text.php:1289 +msgid "February" +msgstr "Februar" + +#: ../../include/js_strings.php:47 ../../include/text.php:1289 +msgid "March" +msgstr "März" + +#: ../../include/js_strings.php:48 ../../include/text.php:1289 +msgid "April" +msgstr "April" + +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "Mai" + +#: ../../include/js_strings.php:50 ../../include/text.php:1289 +msgid "June" +msgstr "Juni" + +#: ../../include/js_strings.php:51 ../../include/text.php:1289 +msgid "July" +msgstr "Juli" + +#: ../../include/js_strings.php:52 ../../include/text.php:1289 +msgid "August" +msgstr "August" -#: ../../include/conversation.php:1635 ../../include/photos.php:502 -msgid "Photo Albums" -msgstr "Fotoalben" +#: ../../include/js_strings.php:53 ../../include/text.php:1289 +msgid "September" +msgstr "September" -#: ../../include/conversation.php:1642 -msgid "Files and Storage" -msgstr "Dateien und Speicher" +#: ../../include/js_strings.php:54 ../../include/text.php:1289 +msgid "October" +msgstr "Oktober" -#: ../../include/conversation.php:1678 -msgid "Saved Bookmarks" -msgstr "Gespeicherte Lesezeichen" +#: ../../include/js_strings.php:55 ../../include/text.php:1289 +msgid "November" +msgstr "November" -#: ../../include/conversation.php:1688 -msgid "Manage Webpages" -msgstr "Webseiten verwalten" +#: ../../include/js_strings.php:56 ../../include/text.php:1289 +msgid "December" +msgstr "Dezember" -#: ../../include/conversation.php:1747 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Zusage" -msgstr[1] "Zusagen" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "Jan" -#: ../../include/conversation.php:1750 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Absage" -msgstr[1] "Absagen" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "Feb" -#: ../../include/conversation.php:1753 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] " Unentschlossen" -msgstr[1] "Unentschlossene" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "Mär" -#: ../../include/conversation.php:1756 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "Zustimmung" -msgstr[1] "Zustimmungen" +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "Apr" -#: ../../include/conversation.php:1759 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Ablehnung" -msgstr[1] "Ablehnungen" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "Mai" -#: ../../include/conversation.php:1762 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Enthaltung" -msgstr[1] "Enthaltungen" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "Jun" -#: ../../include/selectors.php:30 -msgid "Frequently" -msgstr "Häufig" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "Jul" -#: ../../include/selectors.php:31 -msgid "Hourly" -msgstr "Stündlich" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "Aug" -#: ../../include/selectors.php:32 -msgid "Twice daily" -msgstr "Zwei Mal am Tag" +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "Sep" -#: ../../include/selectors.php:33 -msgid "Daily" -msgstr "Täglich" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "Okt" -#: ../../include/selectors.php:34 -msgid "Weekly" -msgstr "Wöchentlich" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "Nov" -#: ../../include/selectors.php:35 -msgid "Monthly" -msgstr "Monatlich" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "Dez" -#: ../../include/selectors.php:49 -msgid "Currently Male" -msgstr "Momentan männlich" +#: ../../include/js_strings.php:69 ../../include/text.php:1285 +msgid "Sunday" +msgstr "Sonntag" -#: ../../include/selectors.php:49 -msgid "Currently Female" -msgstr "Momentan weiblich" +#: ../../include/js_strings.php:70 ../../include/text.php:1285 +msgid "Monday" +msgstr "Montag" -#: ../../include/selectors.php:49 -msgid "Mostly Male" -msgstr "Größtenteils männlich" +#: ../../include/js_strings.php:71 ../../include/text.php:1285 +msgid "Tuesday" +msgstr "Dienstag" -#: ../../include/selectors.php:49 -msgid "Mostly Female" -msgstr "Größtenteils weiblich" +#: ../../include/js_strings.php:72 ../../include/text.php:1285 +msgid "Wednesday" +msgstr "Mittwoch" -#: ../../include/selectors.php:49 -msgid "Transgender" -msgstr "Transsexuell" +#: ../../include/js_strings.php:73 ../../include/text.php:1285 +msgid "Thursday" +msgstr "Donnerstag" -#: ../../include/selectors.php:49 -msgid "Intersex" -msgstr "Zwischengeschlechtlich" +#: ../../include/js_strings.php:74 ../../include/text.php:1285 +msgid "Friday" +msgstr "Freitag" -#: ../../include/selectors.php:49 -msgid "Transsexual" -msgstr "Transsexuell" +#: ../../include/js_strings.php:75 ../../include/text.php:1285 +msgid "Saturday" +msgstr "Samstag" -#: ../../include/selectors.php:49 -msgid "Hermaphrodite" -msgstr "Zwitter" +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "So" -#: ../../include/selectors.php:49 -msgid "Neuter" -msgstr "Geschlechtslos" +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "Mo" -#: ../../include/selectors.php:49 -msgid "Non-specific" -msgstr "unklar" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "Di" -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 -#: ../../include/permissions.php:881 -msgid "Other" -msgstr "Andere" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "Mi" -#: ../../include/selectors.php:49 -msgid "Undecided" -msgstr "Unentschieden" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "Do" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Males" -msgstr "Männer" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "Fr" -#: ../../include/selectors.php:85 ../../include/selectors.php:104 -msgid "Females" -msgstr "Frauen" +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "Sa" -#: ../../include/selectors.php:85 -msgid "Gay" -msgstr "Schwul" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "heute" -#: ../../include/selectors.php:85 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "Monat" -#: ../../include/selectors.php:85 -msgid "No Preference" -msgstr "Keine Bevorzugung" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "Woche" -#: ../../include/selectors.php:85 -msgid "Bisexual" -msgstr "Bisexuell" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "Tag" -#: ../../include/selectors.php:85 -msgid "Autosexual" -msgstr "Autosexuell" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Ganztägig" -#: ../../include/selectors.php:85 -msgid "Abstinent" -msgstr "Enthaltsam" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Der Kanal ist auf dieser Seite blockiert " -#: ../../include/selectors.php:85 -msgid "Virgin" -msgstr "Jungfräulich" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Adresse des Kanals fehlt." -#: ../../include/selectors.php:85 -msgid "Deviant" -msgstr "Abweichend" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "Antwort des entfernten Kanals war unvollständig." -#: ../../include/selectors.php:85 -msgid "Fetish" -msgstr "Fetisch" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Kanal wurde gelöscht und existiert nicht mehr." -#: ../../include/selectors.php:85 -msgid "Oodles" -msgstr "Unmengen" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protokoll deaktiviert." -#: ../../include/selectors.php:85 -msgid "Nonsexual" -msgstr "Sexlos" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "Kanalsuche fehlgeschlagen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Single" -msgstr "Single" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Du kannst Dich nicht mit Dir selbst verbinden." -#: ../../include/selectors.php:123 -msgid "Lonely" -msgstr "Einsam" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Wer kann das sehen?" -#: ../../include/selectors.php:123 -msgid "Available" -msgstr "Verfügbar" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Benutzerdefinierte Auswahl" -#: ../../include/selectors.php:123 -msgid "Unavailable" -msgstr "Nicht verfügbar" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." -#: ../../include/selectors.php:123 -msgid "Has crush" -msgstr "Verguckt" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Anzeigen" -#: ../../include/selectors.php:123 -msgid "Infatuated" -msgstr "Verknallt" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Nicht anzeigen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Dating" -msgstr "Lerne gerade jemanden kennen" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." -#: ../../include/selectors.php:123 -msgid "Unfaithful" -msgstr "Treulos" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" -#: ../../include/selectors.php:123 -msgid "Sex Addict" -msgstr "Sexabhängig" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Namensfeld leer" -#: ../../include/selectors.php:123 -msgid "Friends/Benefits" -msgstr "Freunde/Begünstigte" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Name ist zu lang" -#: ../../include/selectors.php:123 -msgid "Casual" -msgstr "Lose" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Keine Account-Kennung" -#: ../../include/selectors.php:123 -msgid "Engaged" -msgstr "Verlobt" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Spitzname ist erforderlich." -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Married" -msgstr "Verheiratet" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Reservierter Kurzname. Bitte wähle einen anderen." -#: ../../include/selectors.php:123 -msgid "Imaginarily married" -msgstr "Gewissermaßen verheiratet" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "Partner" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Kann die erstellte Identität nicht empfangen" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Lebensgemeinschaft" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Standard-Profil" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Informelle Ehe" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Angeforderte Kanal nicht verfügbar." -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Glücklich" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Neues Profil erstellen" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Nicht Ausschau haltend" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Für jeden sichtbar" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Swinger" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Geschlecht:" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Betrogen" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Status:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Getrennt" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Homepage:" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Labil" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "gerade online" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Geschieden" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Dieser Kanal gefällt mir" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Gewissermaßen geschieden" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j. F Y" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Verwitwet" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j. F" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Ungewiss" +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Geburtstag:" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Es ist kompliziert" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "seit %1$d %2$s" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Interessiert mich nicht" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Sexuelle Orientierung:" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Frag mich mal" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Schlagworte:" -#: ../../include/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:232 -msgid "Visible to your default audience" -msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Politische Ansichten:" -#: ../../include/PermissionDescription.php:115 -#: ../../include/acl_selectors.php:268 -msgid "Only me" -msgstr "Nur ich" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religion:" -#: ../../include/PermissionDescription.php:116 -msgid "Public" -msgstr "Öffentlich" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Hobbys/Interessen:" -#: ../../include/PermissionDescription.php:117 -msgid "Anybody in the $Projectname network" -msgstr "Jeder innerhalb des $Projectname Netzwerks" +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Gefällt:" -#: ../../include/PermissionDescription.php:118 -#, php-format -msgid "Any account on %s" -msgstr "Jedes Nutzerkonto auf %s" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Gefällt nicht:" -#: ../../include/PermissionDescription.php:119 -msgid "Any of my connections" -msgstr "Alle meine Verbindungen" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/PermissionDescription.php:120 -msgid "Only connections I specifically allow" -msgstr "Nur Verbindungen, denen ich es explizit erlaube" +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "Meine anderen Kanäle:" -#: ../../include/PermissionDescription.php:121 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Musikalische Interessen:" -#: ../../include/PermissionDescription.php:122 -msgid "Any connections including those who haven't yet been approved" -msgstr "Alle Verbindungen einschließlich der noch nicht bestätigten" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Bücher, Literatur:" -#: ../../include/PermissionDescription.php:161 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)." +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Fernsehen:" -#: ../../include/PermissionDescription.php:162 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils." +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/PermissionDescription.php:163 -msgid "This is your default setting for who can view your connections" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen." +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Liebe/Romantik:" -#: ../../include/PermissionDescription.php:164 -msgid "" -"This is your default setting for who can view your file storage and photos" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos." +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Arbeit/Anstellung:" -#: ../../include/PermissionDescription.php:165 -msgid "This is your default setting for the audience of your webpages" -msgstr "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten." +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Schule/Ausbildung:" -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Ungültige E-Mail-Adresse" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Gefällt mir" -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Neues Fenster" -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert." +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab" -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Eine Einladung wird benötigt." +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Benutzer '%s' gelöscht" -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Die Einladung konnte nicht bestätigt werden." +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d Einladung verfügbar" +msgstr[1] "%d Einladungen verfügbar" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Bitte gib die benötigten Informationen ein." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Finde Kanäle" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Name oder Interessen eingeben" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrierungsbestätigung für %s" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Verbinden/Folgen" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registrierungsanfrage auf %s" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Beispiele: Robert Morgenstein, Angeln" -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1871 -msgid "Administrator" -msgstr "Administrator" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Zufallsprofil" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "Dein Registrierungspasswort" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Lade Freunde ein" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registrierungsdetails für %s" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Fortgeschrittenes Beispiel: name=fred and country=iceland" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Nutzerkonto bestätigt." +#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 +#: ../../include/features.php:97 +msgid "Saved Folders" +msgstr "Gespeicherte Ordner" -#: ../../include/account.php:454 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrierung für %s wurde widerrufen" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "Alles" -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Nutzerkonto wurde bestätigt. Bitte melde Dich an!" +#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "Kategorien" -#: ../../include/account.php:723 ../../include/account.php:725 -msgid "Click here to upgrade." -msgstr "Klicke hier, um das Upgrade durchzuführen." +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeinsame Verbindung" +msgstr[1] "%d gemeinsame Verbindungen" -#: ../../include/account.php:731 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mehr zeigen" -#: ../../include/account.php:736 -msgid "This action is not available under your subscription plan." -msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Ausgeloggt." -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Beitrag wurde nicht gefunden." +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "Authentifizierung fehlgeschlagen" -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Keine Quelldatei." +#: ../../include/auth.php:286 +msgid "Login failed." +msgstr "Login fehlgeschlagen." -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kann Datei zum Ersetzen nicht finden" +#: ../../include/activities.php:41 +msgid " and " +msgstr "und" -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "öffentliches Profil" -#: ../../include/attach.php:672 +#: ../../include/activities.php:58 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Datei überschreitet das Größen-Limit von %d" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s hat %2$s auf “%3$s” geändert" -#: ../../include/attach.php:686 +#: ../../include/activities.php:59 #, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht." - -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." - -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." - -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Pfad nicht verfügbar." +msgid "Visit %1$s's %2$s" +msgstr "Besuche %1$s's %2$s" -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Leere Pfadangabe" +#: ../../include/activities.php:62 +#, php-format +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "doppelter Dateiname oder Pfad" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ist jetzt mit %2$s verbunden" -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Pfad nicht gefunden." +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s stupste %2$s an" -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir fehlgeschlagen." +#: ../../include/conversation.php:243 ../../include/text.php:1059 +#: ../../include/text.php:1064 +msgid "poked" +msgstr "stupste" -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "Speichern in der Datenbank fehlgeschlagen." +#: ../../include/conversation.php:694 +#, php-format +msgid "View %s's profile @ %s" +msgstr "%ss Profil auf %s ansehen" -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Leere Pfadangabe" +#: ../../include/conversation.php:713 +msgid "Categories:" +msgstr "Kategorien:" -#: ../../include/channel.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Kann keine Identitäts-Informationen aus Datenbank beziehen" +#: ../../include/conversation.php:714 +msgid "Filed under:" +msgstr "Gespeichert unter:" -#: ../../include/channel.php:66 -msgid "Empty name" -msgstr "Namensfeld leer" +#: ../../include/conversation.php:741 +msgid "View in context" +msgstr "Im Zusammenhang anschauen" -#: ../../include/channel.php:69 -msgid "Name too long" -msgstr "Name ist zu lang" +#: ../../include/conversation.php:851 +msgid "remove" +msgstr "lösche" -#: ../../include/channel.php:180 -msgid "No account identifier" -msgstr "Keine Account-Kennung" +#: ../../include/conversation.php:856 +msgid "Delete Selected Items" +msgstr "Lösche die ausgewählten Elemente" -#: ../../include/channel.php:192 -msgid "Nickname is required." -msgstr "Spitzname ist erforderlich." +#: ../../include/conversation.php:949 +msgid "View Source" +msgstr "Quelle anzeigen" -#: ../../include/channel.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Reservierter Kurzname. Bitte wähle einen anderen." +#: ../../include/conversation.php:950 +msgid "Follow Thread" +msgstr "Unterhaltung folgen" -#: ../../include/channel.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt." +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Unterhaltung nicht mehr folgen" -#: ../../include/channel.php:287 -msgid "Unable to retrieve created identity" -msgstr "Kann die erstellte Identität nicht empfangen" +#: ../../include/conversation.php:956 +msgid "Activity/Posts" +msgstr "Aktivitäten/Beiträge" -#: ../../include/channel.php:345 -msgid "Default Profile" -msgstr "Standard-Profil" +#: ../../include/conversation.php:958 +msgid "Edit Connection" +msgstr "Verbindung bearbeiten" -#: ../../include/channel.php:791 -msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +#: ../../include/conversation.php:959 +msgid "Message" +msgstr "Nachricht" -#: ../../include/channel.php:938 -msgid "Create New Profile" -msgstr "Neues Profil erstellen" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s likes this." +msgstr "%s gefällt das." -#: ../../include/channel.php:958 -msgid "Visible to everybody" -msgstr "Für jeden sichtbar" +#: ../../include/conversation.php:1076 +#, php-format +msgid "%s doesn't like this." +msgstr "%s gefällt das nicht." -#: ../../include/channel.php:1031 ../../include/channel.php:1142 -msgid "Gender:" -msgstr "Geschlecht:" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d Person gefällt das." +msgstr[1] "%2$d Leuten gefällt das." -#: ../../include/channel.php:1032 ../../include/channel.php:1186 -msgid "Status:" -msgstr "Status:" +#: ../../include/conversation.php:1082 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d Person gefällt das nicht." +msgstr[1] "%2$d Leuten gefällt das nicht." -#: ../../include/channel.php:1033 ../../include/channel.php:1197 -msgid "Homepage:" -msgstr "Homepage:" +#: ../../include/conversation.php:1088 +msgid "and" +msgstr "und" -#: ../../include/channel.php:1034 -msgid "Online Now" -msgstr "gerade online" +#: ../../include/conversation.php:1091 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] ", und %d andere" -#: ../../include/channel.php:1147 -msgid "Like this channel" -msgstr "Dieser Kanal gefällt mir" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s like this." +msgstr "%s gefällt das." -#: ../../include/channel.php:1171 -msgid "j F, Y" -msgstr "j. F Y" +#: ../../include/conversation.php:1092 +#, php-format +msgid "%s don't like this." +msgstr "%s gefällt das nicht." -#: ../../include/channel.php:1172 -msgid "j F" -msgstr "j. F" +#: ../../include/conversation.php:1135 +msgid "Set your location" +msgstr "Standort" -#: ../../include/channel.php:1179 -msgid "Birthday:" -msgstr "Geburtstag:" +#: ../../include/conversation.php:1136 +msgid "Clear browser location" +msgstr "Browser-Standort löschen" -#: ../../include/channel.php:1192 -#, php-format -msgid "for %1$d %2$s" -msgstr "seit %1$d %2$s" +#: ../../include/conversation.php:1184 +msgid "Tag term:" +msgstr "Schlagwort:" -#: ../../include/channel.php:1195 -msgid "Sexual Preference:" -msgstr "Sexuelle Orientierung:" +#: ../../include/conversation.php:1185 +msgid "Where are you right now?" +msgstr "Wo bist Du jetzt grade?" -#: ../../include/channel.php:1201 -msgid "Tags:" -msgstr "Schlagworte:" +#: ../../include/conversation.php:1194 +msgid "Comments enabled" +msgstr "Kommentare aktiviert" -#: ../../include/channel.php:1203 -msgid "Political Views:" -msgstr "Politische Ansichten:" +#: ../../include/conversation.php:1195 +msgid "Comments disabled" +msgstr "Kommentare deaktiviert" -#: ../../include/channel.php:1205 -msgid "Religion:" -msgstr "Religion:" +#: ../../include/conversation.php:1233 +msgid "Page link name" +msgstr "Link zur Seite" -#: ../../include/channel.php:1209 -msgid "Hobbies/Interests:" -msgstr "Hobbys/Interessen:" +#: ../../include/conversation.php:1236 +msgid "Post as" +msgstr "Veröffentlichen als" -#: ../../include/channel.php:1211 -msgid "Likes:" -msgstr "Gefällt:" +#: ../../include/conversation.php:1250 +msgid "Toggle voting" +msgstr "Umfragewerkzeug aktivieren" -#: ../../include/channel.php:1213 -msgid "Dislikes:" -msgstr "Gefällt nicht:" +#: ../../include/conversation.php:1253 +msgid "Disable comments" +msgstr "Kommentare deaktivieren" -#: ../../include/channel.php:1215 -msgid "Contact information and Social Networks:" -msgstr "Kontaktinformation und soziale Netzwerke:" +#: ../../include/conversation.php:1254 +msgid "Toggle comments" +msgstr "Kommentare umschalten" -#: ../../include/channel.php:1217 -msgid "My other channels:" -msgstr "Meine anderen Kanäle:" +#: ../../include/conversation.php:1262 +msgid "Categories (optional, comma-separated list)" +msgstr "Kategorien (optional, kommagetrennte Liste)" -#: ../../include/channel.php:1219 -msgid "Musical interests:" -msgstr "Musikalische Interessen:" +#: ../../include/conversation.php:1285 +msgid "Other networks and post services" +msgstr "Andere Netzwerke und Platformen" -#: ../../include/channel.php:1221 -msgid "Books, literature:" -msgstr "Bücher, Literatur:" +#: ../../include/conversation.php:1291 +msgid "Set publish date" +msgstr "Veröffentlichungsdatum festlegen" -#: ../../include/channel.php:1223 -msgid "Television:" -msgstr "Fernsehen:" +#: ../../include/conversation.php:1540 +msgid "Discover" +msgstr "Entdecken" -#: ../../include/channel.php:1225 -msgid "Film/dance/culture/entertainment:" -msgstr "Film/Tanz/Kultur/Unterhaltung:" +#: ../../include/conversation.php:1543 +msgid "Imported public streams" +msgstr "Importierte öffentliche Beiträge" -#: ../../include/channel.php:1227 -msgid "Love/Romance:" -msgstr "Liebe/Romantik:" +#: ../../include/conversation.php:1548 +msgid "Commented Order" +msgstr "Neueste Kommentare" -#: ../../include/channel.php:1229 -msgid "Work/employment:" -msgstr "Arbeit/Anstellung:" +#: ../../include/conversation.php:1551 +msgid "Sort by Comment Date" +msgstr "Nach Kommentardatum sortiert" -#: ../../include/channel.php:1231 -msgid "School/education:" -msgstr "Schule/Ausbildung:" +#: ../../include/conversation.php:1555 +msgid "Posted Order" +msgstr "Neueste Beiträge" -#: ../../include/channel.php:1251 -msgid "Like this thing" -msgstr "Gefällt mir" +#: ../../include/conversation.php:1558 +msgid "Sort by Post Date" +msgstr "Nach Beitragsdatum sortiert" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Allgemeine Funktionen" +#: ../../include/conversation.php:1566 +msgid "Posts that mention or involve you" +msgstr "Beiträge mit Beteiligung Deinerseits" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Verfall von Inhalten" +#: ../../include/conversation.php:1575 +msgid "Activity Stream - by date" +msgstr "Activity Stream – nach Datum sortiert" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." +#: ../../include/conversation.php:1581 +msgid "Starred" +msgstr "Markiert" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" +#: ../../include/conversation.php:1584 +msgid "Favourite Posts" +msgstr "Markierte Beiträge" -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" +#: ../../include/conversation.php:1591 +msgid "Spam" +msgstr "Spam" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Erweiterte Profile" +#: ../../include/conversation.php:1594 +msgid "Posts flagged as SPAM" +msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" +#: ../../include/conversation.php:1653 +msgid "Status Messages and Posts" +msgstr "Statusnachrichten und Beiträge" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profil-Import/Export" +#: ../../include/conversation.php:1662 +msgid "About" +msgstr "Über" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" +#: ../../include/conversation.php:1665 +msgid "Profile Details" +msgstr "Profil-Details" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Webseiten" +#: ../../include/conversation.php:1681 +msgid "Files and Storage" +msgstr "Dateien und Speicher" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" +#: ../../include/conversation.php:1701 ../../include/conversation.php:1704 +#: ../../include/widgets.php:883 +msgid "Chatrooms" +msgstr "Chaträume" -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Bewertung verbergen" +#: ../../include/conversation.php:1717 +msgid "Saved Bookmarks" +msgstr "Gespeicherte Lesezeichen" -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten." +#: ../../include/conversation.php:1727 +msgid "Manage Webpages" +msgstr "Webseiten verwalten" -#: ../../include/features.php:56 -msgid "Private Notes" -msgstr "Private Notizen" +#: ../../include/conversation.php:1792 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Zusage" +msgstr[1] "Zusagen" -#: ../../include/features.php:56 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" +#: ../../include/conversation.php:1795 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Absage" +msgstr[1] "Absagen" -#: ../../include/features.php:57 -msgid "Navigation Channel Select" -msgstr "Kanal-Auswahl in der Navigationsleiste" +#: ../../include/conversation.php:1798 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] " Unentschlossen" +msgstr[1] "Unentschlossene" -#: ../../include/features.php:57 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" +#: ../../include/conversation.php:1801 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "Zustimmung" +msgstr[1] "Zustimmungen" -#: ../../include/features.php:58 -msgid "Photo Location" -msgstr "Aufnahmeort" +#: ../../include/conversation.php:1804 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Ablehnung" +msgstr[1] "Ablehnungen" -#: ../../include/features.php:58 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" +#: ../../include/conversation.php:1807 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Enthaltung" +msgstr[1] "Enthaltungen" -#: ../../include/features.php:59 -msgid "Access Controlled Chatrooms" -msgstr "Zugriffskontrollierte Chaträume" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" +msgstr "Schlagwörter" -#: ../../include/features.php:59 -msgid "Provide chatrooms and chat services with access control." -msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." +#: ../../include/taxonomy.php:293 +msgid "Keywords" +msgstr "Schlüsselwörter" -#: ../../include/features.php:60 -msgid "Smart Birthdays" -msgstr "Smarte Geburtstage" +#: ../../include/taxonomy.php:314 +msgid "have" +msgstr "habe" -#: ../../include/features.php:60 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." +#: ../../include/taxonomy.php:314 +msgid "has" +msgstr "hat" -#: ../../include/features.php:61 -msgid "Expert Mode" -msgstr "Expertenmodus" +#: ../../include/taxonomy.php:315 +msgid "want" +msgstr "will" -#: ../../include/features.php:61 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt" +#: ../../include/taxonomy.php:315 +msgid "wants" +msgstr "will" -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Premium-Kanal" +#: ../../include/taxonomy.php:316 +msgid "likes" +msgstr "gefällt" -#: ../../include/features.php:62 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" +#: ../../include/taxonomy.php:317 +msgid "dislikes" +msgstr "missfällt" -#: ../../include/features.php:67 -msgid "Post Composition Features" -msgstr "Nachbearbeitungsfunktionen" +#: ../../include/text.php:450 +msgid "prev" +msgstr "vorherige" -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Große Fotos" +#: ../../include/text.php:452 +msgid "first" +msgstr "erste" -#: ../../include/features.php:70 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." +#: ../../include/text.php:481 +msgid "last" +msgstr "letzte" -#: ../../include/features.php:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" +#: ../../include/text.php:484 +msgid "next" +msgstr "nächste" -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "Noch mehr Verschlüsselung" +#: ../../include/text.php:494 +msgid "older" +msgstr "älter" -#: ../../include/features.php:72 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" +#: ../../include/text.php:496 +msgid "newer" +msgstr "neuer" -#: ../../include/features.php:73 -msgid "Enable Voting Tools" -msgstr "Umfragewerkzeuge aktivieren" +#: ../../include/text.php:889 +msgid "No connections" +msgstr "Keine Verbindungen" -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" +#: ../../include/text.php:914 +#, php-format +msgid "View all %s connections" +msgstr "Alle Verbindungen von %s anzeigen" -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Verzögertes Senden" +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" +msgstr "anstupsen" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" +#: ../../include/text.php:1065 +msgid "ping" +msgstr "anpingen" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Doppelte Beiträge unterdrücken" +#: ../../include/text.php:1065 +msgid "pinged" +msgstr "pingte" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." +#: ../../include/text.php:1066 +msgid "prod" +msgstr "knuffen" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Netzwerk- und Stream-Filter" +#: ../../include/text.php:1066 +msgid "prodded" +msgstr "knuffte" -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Suche nach Datum" +#: ../../include/text.php:1067 +msgid "slap" +msgstr "ohrfeigen" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" +#: ../../include/text.php:1067 +msgid "slapped" +msgstr "ohrfeigte" -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Gruppen" +#: ../../include/text.php:1068 +msgid "finger" +msgstr "befummeln" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" +#: ../../include/text.php:1068 +msgid "fingered" +msgstr "befummelte" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" +#: ../../include/text.php:1069 +msgid "rebuff" +msgstr "eine Abfuhr erteilen" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Persönlicher Netzwerkreiter" +#: ../../include/text.php:1069 +msgid "rebuffed" +msgstr "zurückgewiesen" -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" +#: ../../include/text.php:1081 +msgid "happy" +msgstr "glücklich" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Netzwerkreiter Neu" +#: ../../include/text.php:1082 +msgid "sad" +msgstr "traurig" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" +#: ../../include/text.php:1083 +msgid "mellow" +msgstr "sanft" -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Beziehungs-Tool" +#: ../../include/text.php:1084 +msgid "tired" +msgstr "müde" -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" +#: ../../include/text.php:1085 +msgid "perky" +msgstr "frech" -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Filter für Verbindungen" +#: ../../include/text.php:1086 +msgid "angry" +msgstr "sauer" -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" +#: ../../include/text.php:1087 +msgid "stupefied" +msgstr "verblüfft" -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "Kanalvorschläge anzeigen" +#: ../../include/text.php:1088 +msgid "puzzled" +msgstr "verwirrt" -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Beitrag-/Kommentar-Tools" +#: ../../include/text.php:1089 +msgid "interested" +msgstr "interessiert" -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Gemeinschaftliches Verschlagworten" +#: ../../include/text.php:1090 +msgid "bitter" +msgstr "verbittert" -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Ermöglicht das Verschlagworten existierender Beiträge" +#: ../../include/text.php:1091 +msgid "cheerful" +msgstr "fröhlich" -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Beitrags-Kategorien" +#: ../../include/text.php:1092 +msgid "alive" +msgstr "lebendig" -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Aktiviert Kategorien für Beiträge" +#: ../../include/text.php:1093 +msgid "annoyed" +msgstr "verärgert" -#: ../../include/features.php:97 -msgid "Emoji Reactions" -msgstr "Emoji Reaktionen" +#: ../../include/text.php:1094 +msgid "anxious" +msgstr "unruhig" -#: ../../include/features.php:97 -msgid "Add emoji reaction ability to posts" -msgstr "Aktiviert Emoji-Reaktionen für Beiträge" +#: ../../include/text.php:1095 +msgid "cranky" +msgstr "schrullig" -#: ../../include/features.php:98 -msgid "Ability to file posts under folders" -msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" +#: ../../include/text.php:1096 +msgid "disturbed" +msgstr "verstört" -#: ../../include/features.php:99 -msgid "Dislike Posts" -msgstr "Gefällt-mir-nicht-Beiträge" +#: ../../include/text.php:1097 +msgid "frustrated" +msgstr "frustriert" -#: ../../include/features.php:99 -msgid "Ability to dislike posts/comments" -msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" +#: ../../include/text.php:1098 +msgid "depressed" +msgstr "deprimiert" -#: ../../include/features.php:100 -msgid "Star Posts" -msgstr "Beiträge mit Sternchen versehen" +#: ../../include/text.php:1099 +msgid "motivated" +msgstr "motiviert" -#: ../../include/features.php:100 -msgid "Ability to mark special posts with a star indicator" -msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" +#: ../../include/text.php:1100 +msgid "relaxed" +msgstr "entspannt" -#: ../../include/features.php:101 -msgid "Tag Cloud" -msgstr "Schlagwort-Wolke" +#: ../../include/text.php:1101 +msgid "surprised" +msgstr "überrascht" -#: ../../include/features.php:101 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" +#: ../../include/text.php:1289 +msgid "May" +msgstr "Mai" -#: ../../include/oembed.php:324 -msgid "Embedded content" -msgstr "Eingebetteter Inhalt" +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" +msgstr "Unbekannter Anhang" -#: ../../include/oembed.php:333 -msgid "Embedding disabled" -msgstr "Einbetten ausgeschaltet" +#: ../../include/text.php:1372 +msgid "unknown" +msgstr "unbekannt" -#: ../../include/acl_selectors.php:271 -msgid "Who can see this?" -msgstr "Wer kann das sehen?" +#: ../../include/text.php:1408 +msgid "remove category" +msgstr "Kategorie entfernen" -#: ../../include/acl_selectors.php:272 -msgid "Custom selection" -msgstr "Benutzerdefinierte Auswahl" +#: ../../include/text.php:1485 +msgid "remove from file" +msgstr "aus der Datei entfernen" -#: ../../include/acl_selectors.php:273 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen." +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" +msgstr "Standard" -#: ../../include/acl_selectors.php:274 -msgid "Show" -msgstr "Anzeigen" +#: ../../include/text.php:1792 +msgid "Page layout" +msgstr "Seiten-Layout" -#: ../../include/acl_selectors.php:275 -msgid "Don't show" -msgstr "Nicht anzeigen" +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" +msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" -#: ../../include/acl_selectors.php:281 -msgid "Other networks and post services" -msgstr "Andere Netzwerke und Platformen" +#: ../../include/text.php:1834 +msgid "Page content type" +msgstr "Art des Seiteninhalts" -#: ../../include/acl_selectors.php:311 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann." +#: ../../include/text.php:1867 +msgid "Select an alternate language" +msgstr "Wähle eine alternative Sprache" -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Ausgeloggt." +#: ../../include/text.php:2004 +msgid "activity" +msgstr "Aktivität" -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Authentifizierung fehlgeschlagen" +#: ../../include/text.php:2305 +msgid "Design Tools" +msgstr "Gestaltungswerkzeuge" -#: ../../include/datetime.php:135 -msgid "Birthday" -msgstr "Geburtstag" +#: ../../include/text.php:2311 +msgid "Pages" +msgstr "Seiten" -#: ../../include/datetime.php:137 -msgid "Age: " -msgstr "Alter:" +#: ../../include/text.php:2333 +msgid "Import website..." +msgstr "Webseite importieren..." -#: ../../include/datetime.php:139 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-TT oder MM-TT" +#: ../../include/text.php:2334 +msgid "Select folder to import" +msgstr "Ordner zum Importieren auswählen" -#: ../../include/datetime.php:272 ../../boot.php:2470 -msgid "never" -msgstr "Nie" +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" +msgstr "Aus einem gezippten Ordner importieren:" -#: ../../include/datetime.php:278 -msgid "less than a second ago" -msgstr "Vor weniger als einer Sekunde" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "Aus Cloud-Dateien importieren:" -#: ../../include/datetime.php:296 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "vor %1$d %2$s" +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "/Cloud/Kanal/Pfad/zum/Ordner" -#: ../../include/datetime.php:307 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "Pfad zu Webseitendateien eingeben" -#: ../../include/datetime.php:310 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "Ordner auswählen" -#: ../../include/datetime.php:313 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "Webseite exportieren..." -#: ../../include/datetime.php:316 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "In eine ZIP-Datei exportieren" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "website.zip" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "Geben Sie einen für die ZIP-Datei ein." -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "Sekunde" -msgstr[1] "Sekunden" +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "In Cloud-Dateien exportieren" -#: ../../include/datetime.php:562 -#, php-format -msgid "%1$s's birthday" -msgstr "%1$ss Geburtstag" +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "/Pfad/zum/exportierenden/Ordner" -#: ../../include/datetime.php:563 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Alles Gute zum Geburtstag, %1$s" +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein." -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen." +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "Ordner angeben" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Neue Verbindung zu dieser Gruppe hinzufügen" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Öffentliche Zeitleiste" -#: ../../include/group.php:289 -msgid "edit" -msgstr "Bearbeiten" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Verzeichnisoptionen" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Gruppe ändern" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Sicherer Modus" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Gruppe hinzufügen" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Nur öffentliche Foren" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanäle, die in keiner Gruppe sind" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Nur dieser Hub" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dieses Element löschen?" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Kein Empfänger angegeben" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] Weniger anzeigen" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[no subject]" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] aufklappen" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Kann Absender nicht bestimmen." -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] einklappen" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Gespeicherter Beitrag konnten nicht überprüft werden." -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Kennwort zu kurz" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "System" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Kennwörter stimmen nicht überein" +#: ../../include/widgets.php:106 +msgid "New App" +msgstr "Neue App" -#: ../../include/js_strings.php:13 -msgid "everybody" -msgstr "alle" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Vorschläge" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "geheime Passphrase" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Mehr anzeigen …" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Hinweis zur Passphrase" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen." -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert." +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Neue Verbindung hinzufügen" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alle schließen" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Adresse des Kanals eingeben" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nichts Neues hier" +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Beispiele: bob@beispiel.com, http://beispiel.com/barbara" -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Diesen Kanal bewerten (öffentlich sichtbar)" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notizen" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Beschreibung (optional)" +#: ../../include/widgets.php:275 +msgid "Remove term" +msgstr "Eintrag löschen" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Gib eine URL ein:" +#: ../../include/widgets.php:283 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Gespeicherte Suchanfragen" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?" +#: ../../include/widgets.php:390 +msgid "Archives" +msgstr "Archive" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../include/widgets.php:552 +msgid "Refresh" +msgstr "Aktualisieren" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr " " +#: ../../include/widgets.php:592 +msgid "Account settings" +msgstr "Konto-Einstellungen" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "her" +#: ../../include/widgets.php:598 +msgid "Channel settings" +msgstr "Kanal-Einstellungen" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "von jetzt" +#: ../../include/widgets.php:607 +msgid "Additional features" +msgstr "Zusätzliche Funktionen" -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "weniger als eine Minute" +#: ../../include/widgets.php:614 +msgid "Feature/Addon settings" +msgstr "Plugin-Einstellungen" -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "ungefähr eine Minute" +#: ../../include/widgets.php:620 +msgid "Display settings" +msgstr "Anzeige-Einstellungen" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d Minuten" +#: ../../include/widgets.php:627 +msgid "Manage locations" +msgstr "Klon-Adressen verwalten" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "ungefähr eine Stunde" +#: ../../include/widgets.php:634 +msgid "Export channel" +msgstr "Kanal exportieren" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "ungefähr %d Stunden" +#: ../../include/widgets.php:640 +msgid "Connected apps" +msgstr "Verbundene Apps" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "ein Tag" +#: ../../include/widgets.php:664 +msgid "Premium Channel Settings" +msgstr "Premium-Kanal-Einstellungen" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d Tage" +#: ../../include/widgets.php:693 +msgid "Private Mail Menu" +msgstr "Private Nachrichten" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "ungefähr ein Monat" +#: ../../include/widgets.php:695 +msgid "Combined View" +msgstr "Kombinierte Anzeige" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d Monate" +#: ../../include/widgets.php:727 ../../include/widgets.php:739 +msgid "Conversations" +msgstr "Konversationen" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "ungefähr ein Jahr" +#: ../../include/widgets.php:731 +msgid "Received Messages" +msgstr "Erhaltene Nachrichten" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d Jahre" +#: ../../include/widgets.php:735 +msgid "Sent Messages" +msgstr "Gesendete Nachrichten" -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " +#: ../../include/widgets.php:749 +msgid "No messages." +msgstr "Keine Nachrichten." -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../include/widgets.php:767 +msgid "Delete conversation" +msgstr "Unterhaltung löschen" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "Mai" +#: ../../include/widgets.php:793 +msgid "Events Tools" +msgstr "Kalenderwerkzeuge" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "Jan" +#: ../../include/widgets.php:794 +msgid "Export Calendar" +msgstr "Kalender exportieren" + +#: ../../include/widgets.php:795 +msgid "Import Calendar" +msgstr "Kalender importieren" + +#: ../../include/widgets.php:887 +msgid "Overview" +msgstr "Übersicht" + +#: ../../include/widgets.php:894 +msgid "Chat Members" +msgstr "Chatmitglieder" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "Feb" +#: ../../include/widgets.php:916 +msgid "Wiki List" +msgstr "Wikiliste" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "Mär" +#: ../../include/widgets.php:954 +msgid "Wiki Pages" +msgstr "Wikiseiten" -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "Apr" +#: ../../include/widgets.php:989 +msgid "Bookmarked Chatrooms" +msgstr "Gespeicherte Chatrooms" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "Mai" +#: ../../include/widgets.php:1020 +msgid "Suggested Chatrooms" +msgstr "Chatraum-Vorschläge" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "Jun" +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 +msgid "photo/image" +msgstr "Foto/Bild" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "Jul" +#: ../../include/widgets.php:1221 +msgid "Click to show more" +msgstr "Klick, um mehr anzuzeigen" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "Aug" +#: ../../include/widgets.php:1372 +msgid "Rating Tools" +msgstr "Bewertungswerkzeuge" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "Sep" +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 +msgid "Rate Me" +msgstr "Bewerte mich" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "Okt" +#: ../../include/widgets.php:1381 +msgid "View Ratings" +msgstr "Bewertungen ansehen" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "Nov" +#: ../../include/widgets.php:1465 +msgid "Forums" +msgstr "Foren" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "Dez" +#: ../../include/widgets.php:1494 +msgid "Tasks" +msgstr "Aufgaben" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "So" +#: ../../include/widgets.php:1505 +msgid "Documentation" +msgstr "Dokumentation" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "Mo" +#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 +msgid "Member registrations waiting for confirmation" +msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "Di" +#: ../../include/widgets.php:1563 +msgid "Inspect queue" +msgstr "Warteschlange kontrollieren" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "Mi" +#: ../../include/widgets.php:1565 +msgid "DB updates" +msgstr "DB-Aktualisierungen" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "Do" +#: ../../include/widgets.php:1591 +msgid "Plugin Features" +msgstr "Plug-In Funktionen" -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "Fr" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Ungültiges Datenpaket" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "Sa" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "heute" +#: ../../include/zot.php:2329 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Kann die Signatur der Seite von %s nicht verifizieren" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "Monat" +#: ../../include/zot.php:3711 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "Woche" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Allgemeine Funktionen" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "Tag" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Verfall von Inhalten" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Ganztägig" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." -#: ../../include/network.php:657 -msgid "view full size" -msgstr "In Vollbildansicht anschauen" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" -#: ../../include/network.php:1885 -msgid "No Subject" -msgstr "Kein Betreff" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" -#: ../../include/network.php:2146 ../../include/network.php:2147 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Erweiterte Profile" -#: ../../include/network.php:2148 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../include/network.php:2149 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Profil-Import/Export" -#: ../../include/network.php:2150 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren" -#: ../../include/network.php:2152 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Webseiten" -#: ../../include/network.php:2153 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" -#: ../../include/network.php:2154 -msgid "Zot" -msgstr "Zot!" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" -#: ../../include/network.php:2155 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/features.php:59 +msgid "Private Notes" +msgstr "Private Notizen" -#: ../../include/network.php:2156 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/network.php:2157 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/photos.php:110 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "Bild überschreitet das Webseitenlimit von %lu Bytes" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/photos.php:117 -msgid "Image file is empty." -msgstr "Bilddatei ist leer." +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Aufnahmeort" -#: ../../include/photos.php:255 -msgid "Photo storage failed." -msgstr "Fotospeicherung fehlgeschlagen." +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/photos.php:295 -msgid "a new photo" -msgstr "ein neues Foto" +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/photos.php:299 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s hat %2$s auf %3$s veröffentlicht" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/photos.php:506 -msgid "Upload New Photos" -msgstr "Neue Fotos hochladen" +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Smarte Geburtstage" -#: ../../include/zot.php:699 -msgid "Invalid data packet" -msgstr "Ungültiges Datenpaket" +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/zot.php:715 -msgid "Unable to verify channel signature" -msgstr "Konnte die Signatur des Kanals nicht verifizieren" +#: ../../include/features.php:68 +msgid "Post Composition Features" +msgstr "Nachbearbeitungsfunktionen" -#: ../../include/zot.php:2363 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +#: ../../include/features.php:69 +msgid "Large Photos" +msgstr "Große Fotos" -#: ../../include/zot.php:3712 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" +#: ../../include/features.php:69 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Neue Seite" +#: ../../include/features.php:70 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../include/features.php:71 +msgid "Even More Encryption" +msgstr "Noch mehr Verschlüsselung" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kann meine normalen Beiträge sehen" +#: ../../include/features.php:71 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kann mein Standardprofil sehen" +#: ../../include/features.php:72 +msgid "Enable Voting Tools" +msgstr "Umfragewerkzeuge aktivieren" + +#: ../../include/features.php:72 +msgid "Provide a class of post which others can vote on" +msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kann meine Verbindungen sehen" +#: ../../include/features.php:73 +msgid "Disable Comments" +msgstr "Kommentare deaktivieren" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kann meine Datei- und Bilderordner sehen" +#: ../../include/features.php:73 +msgid "Provide the option to disable comments for a post" +msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kann meine Webseiten sehen" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Verzögertes Senden" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kann mir die Beiträge aus seinem/ihrem Kanal schicken" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Darf meine Beiträge kommentieren und mögen/nicht mögen" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kann mir private Nachrichten schicken" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Netzwerk- und Stream-Filter" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kann andere Elemente mögen/nicht mögen" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Suche nach Datum" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profile und alles außer Beiträge und Kommentare" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kann mit mir chatten (wenn verfügbar)" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Persönlicher Netzwerkreiter" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kann in meine Datei- und Bilderordner schreiben" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kann meine Webseiten bearbeiten" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Netzwerkreiter Neu" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Beziehungs-Tool" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kann meine Kanäle administrieren" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust" +#: ../../include/features.php:88 +msgid "Show friend and connection suggestions" +msgstr "Freund- und Verbindungsvorschläge anzeigen" -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Soziales Netzwerk" +#: ../../include/features.php:93 +msgid "Post/Comment Tools" +msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Soziales Netzwerk - Weitgehend öffentlich" +#: ../../include/features.php:94 +msgid "Community Tagging" +msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Soziales Netzwerk - Beschränkt" +#: ../../include/features.php:94 +msgid "Ability to tag existing posts" +msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Soziales Netzwerk - Privat" +#: ../../include/features.php:95 +msgid "Post Categories" +msgstr "Beitrags-Kategorien" -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Forum" +#: ../../include/features.php:95 +msgid "Add categories to your posts" +msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Weitgehend öffentlich" +#: ../../include/features.php:96 +msgid "Emoji Reactions" +msgstr "Emoji Reaktionen" -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beschränkt" +#: ../../include/features.php:96 +msgid "Add emoji reaction ability to posts" +msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Privat" +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Teilen von Feeds" +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feeds - Weitgehend öffentlich" +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feeds - Beschränkt" +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Beiträge mit Sternchen versehen" -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Für besondere Zwecke" +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speziell - Mitteilungs-Kanal (keine Kommentare)" +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Schlagwort-Wolke" -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speziell - Gruppenarchiv" +#: ../../include/features.php:100 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Benutzerdefiniert/Expertenmodus" +#: ../../include/features.php:109 +msgid "Connection Filtering" +msgstr "Filter für Verbindungen" -#: ../../include/activities.php:41 -msgid " and " -msgstr "und" +#: ../../include/features.php:110 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "öffentliches Profil" +#: ../../include/features.php:120 +msgid "Premium Channel" +msgstr "Premium-Kanal" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s hat %2$s auf “%3$s” geändert" +#: ../../include/features.php:121 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen" -#: ../../include/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Besuche %1$s's %2$s" +#: ../../include/features.php:128 +msgid "Advanced Directory Search" +msgstr "Erweiterte Verzeichnissuche" -#: ../../include/activities.php:62 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." +#: ../../include/features.php:129 +msgid "Allows creation of complex directory search queries" +msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Anhänge:" +#: ../../include/features.php:135 +msgid "Advanced Theme and Layout Settings" +msgstr "Erweiterte Design- und Layout-Einstellungen" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "$Projectname-Terminbenachrichtigung:" +#: ../../include/features.php:136 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" -#: ../../view/theme/redbasic/php/config.php:82 +#: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" msgstr "Focus (Voreinstellung für Hubzilla)" -#: ../../view/theme/redbasic/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:110 msgid "Theme settings" msgstr "Theme-Einstellungen" -#: ../../view/theme/redbasic/php/config.php:104 -msgid "Select scheme" -msgstr "Schema wählen" - -#: ../../view/theme/redbasic/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:111 msgid "Narrow navbar" msgstr "Schmale Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:112 msgid "Navigation bar background color" msgstr "Hintergrundfarbe der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:113 msgid "Navigation bar gradient top color" msgstr "Farbverlauf der Navigationsleiste: Farbe oben" -#: ../../view/theme/redbasic/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:114 msgid "Navigation bar gradient bottom color" msgstr "Farbverlauf der Navigationsleiste: Farbe unten" -#: ../../view/theme/redbasic/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:115 msgid "Navigation active button gradient top color" msgstr "Navigations-Button aktiv: Farbe für Farbverlauf oben" -#: ../../view/theme/redbasic/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:116 msgid "Navigation active button gradient bottom color" msgstr "Navigations-Button aktiv: Farbe für Farbverlauf unten" -#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:117 msgid "Navigation bar border color " msgstr "Farbe für den Rand der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:118 msgid "Navigation bar icon color " msgstr "Farbe für die Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:119 msgid "Navigation bar active icon color " msgstr "Farbe für aktive Icons der Navigationsleiste" -#: ../../view/theme/redbasic/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:120 msgid "link color" msgstr "Farbe für Links" -#: ../../view/theme/redbasic/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:121 msgid "Set font-color for banner" msgstr "Farbe der Schrift des Banners" -#: ../../view/theme/redbasic/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:122 msgid "Set the background color" msgstr "Hintergrundfarbe" -#: ../../view/theme/redbasic/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:123 msgid "Set the background image" msgstr "Hintergrundbild" -#: ../../view/theme/redbasic/php/config.php:118 +#: ../../view/theme/redbasic/php/config.php:124 msgid "Set the background color of items" msgstr "Hintergrundfarbe für Beiträge" -#: ../../view/theme/redbasic/php/config.php:119 +#: ../../view/theme/redbasic/php/config.php:125 msgid "Set the background color of comments" msgstr "Hintergrundfarbe für Kommentare" -#: ../../view/theme/redbasic/php/config.php:120 +#: ../../view/theme/redbasic/php/config.php:126 msgid "Set the border color of comments" msgstr "Farbe des Randes von Kommentaren" -#: ../../view/theme/redbasic/php/config.php:121 +#: ../../view/theme/redbasic/php/config.php:127 msgid "Set the indent for comments" msgstr "Einzugsbreite für Kommentare" -#: ../../view/theme/redbasic/php/config.php:122 +#: ../../view/theme/redbasic/php/config.php:128 msgid "Set the basic color for item icons" msgstr "Grundfarbe für Beitrags-Icons" -#: ../../view/theme/redbasic/php/config.php:123 +#: ../../view/theme/redbasic/php/config.php:129 msgid "Set the hover color for item icons" msgstr "Farbe für Beitrags-Icons unter dem Mauszeiger" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Set font-size for the entire application" msgstr "Schriftgröße für die gesamte Anwendung" -#: ../../view/theme/redbasic/php/config.php:124 +#: ../../view/theme/redbasic/php/config.php:130 msgid "Example: 14px" msgstr "Beispiel: 14px" -#: ../../view/theme/redbasic/php/config.php:125 +#: ../../view/theme/redbasic/php/config.php:131 msgid "Set font-size for posts and comments" msgstr "Schriftgröße für Beiträge und Kommentare" -#: ../../view/theme/redbasic/php/config.php:126 +#: ../../view/theme/redbasic/php/config.php:132 msgid "Set font-color for posts and comments" msgstr "Schriftfarbe für Beiträge und Kommentare" -#: ../../view/theme/redbasic/php/config.php:127 +#: ../../view/theme/redbasic/php/config.php:133 msgid "Set radius of corners" msgstr "Ecken-Radius" -#: ../../view/theme/redbasic/php/config.php:128 +#: ../../view/theme/redbasic/php/config.php:134 msgid "Set shadow depth of photos" msgstr "Schattentiefe von Fotos" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Set maximum width of content region in pixel" msgstr "Maximalbreite des Inhaltsbereichs in Pixel festlegen" -#: ../../view/theme/redbasic/php/config.php:129 +#: ../../view/theme/redbasic/php/config.php:135 msgid "Leave empty for default width" msgstr "Leer lassen für Standardbreite" -#: ../../view/theme/redbasic/php/config.php:130 +#: ../../view/theme/redbasic/php/config.php:136 msgid "Left align page content" msgstr "Seiteninhalt linksbündig anzeigen" -#: ../../view/theme/redbasic/php/config.php:131 +#: ../../view/theme/redbasic/php/config.php:137 msgid "Set minimum opacity of nav bar - to hide it" msgstr "Mindest-Deckkraft der Navigationsleiste ( - versteckt sie)" -#: ../../view/theme/redbasic/php/config.php:132 +#: ../../view/theme/redbasic/php/config.php:138 msgid "Set size of conversation author photo" msgstr "Größe der Avatare von Themenstartern" -#: ../../view/theme/redbasic/php/config.php:133 +#: ../../view/theme/redbasic/php/config.php:139 msgid "Set size of followup author photos" msgstr "Größe der Avatare von Kommentatoren" -#: ../../boot.php:1162 +#: ../../boot.php:1195 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Suche %1$s (%2$s)" -#: ../../boot.php:1162 +#: ../../boot.php:1195 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1480 +#: ../../boot.php:1513 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." -#: ../../boot.php:1483 +#: ../../boot.php:1516 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../boot.php:1684 +#: ../../boot.php:1720 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können." -#: ../../boot.php:1706 +#: ../../boot.php:1741 +msgid "Login/Email" +msgstr "Anmelden/E-Mail" + +#: ../../boot.php:1742 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1707 +#: ../../boot.php:1743 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1710 +#: ../../boot.php:1746 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2276 +#: ../../boot.php:2315 msgid "toggle mobile" msgstr "auf/von mobile Ansicht wechseln" -#: ../../boot.php:2425 +#: ../../boot.php:2470 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2428 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Website-SSL-Fehler für %s" -#: ../../boot.php:2469 +#: ../../boot.php:2577 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2473 +#: ../../boot.php:2581 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron-Aufgaben für %s laufen nicht" diff --git a/view/de/hstrings.php b/view/de/hstrings.php index eea433fac..5b37c256d 100644 --- a/view/de/hstrings.php +++ b/view/de/hstrings.php @@ -4,7 +4,39 @@ if(! function_exists("string_plural_select_de")) { function string_plural_select_de($n){ return ($n != 1);; }} -; +App::$rtl = 0; +App::$strings["Social Networking"] = "Soziales Netzwerk"; +App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; +App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; +App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; +App::$strings["Community Forum"] = "Forum"; +App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; +App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; +App::$strings["Forum - Private"] = "Forum - Privat"; +App::$strings["Feed Republish"] = "Teilen von Feeds"; +App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; +App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; +App::$strings["Special Purpose"] = "Für besondere Zwecke"; +App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; +App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; +App::$strings["Other"] = "Andere"; +App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; +App::$strings["Can view my channel stream and posts"] = "Kann meinen Kanal-Stream und meine Beiträge sehen"; +App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; +App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; +App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; +App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; +App::$strings["Can upload/modify my file storage and photos"] = "Kann in meine Datei- und Bilderordner hochladen/ändern"; +App::$strings["Can view my channel webpages"] = "Kann die Webseiten meines Kanals sehen"; +App::$strings["Can create/edit my channel webpages"] = "Kann Webseiten in meinem Kanal erstellen/ändern"; +App::$strings["Can post on my channel (wall) page"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; +App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; +App::$strings["Can like/dislike profiles and profile things"] = "Kann Profile und Profilsachen mögen/nicht mögen"; +App::$strings["Can forward to all my channel connections via @+ mentions in posts"] = "Kann an alle meine Verbindungen via @-Erwähnungen Nachrichten weiterleiten"; +App::$strings["Can chat with me"] = "Kann mit mir chatten"; +App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; +App::$strings["Can administer my channel"] = "Kann meinen Kanal administrieren"; App::$strings["parent"] = "Übergeordnetes Verzeichnis"; App::$strings["Collection"] = "Sammlung"; App::$strings["Principal"] = "Prinzipal"; @@ -29,500 +61,439 @@ App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%) App::$strings["WARNING:"] = "WARNUNG:"; App::$strings["Create new folder"] = "Neuen Ordner anlegen"; App::$strings["Upload file"] = "Datei hochladen"; -App::$strings["Permission denied"] = "Keine Berechtigung"; +App::$strings["Drop files here to immediately upload"] = "Dateien zum sofortigen Hochladen hier fallen lassen"; App::$strings["Permission denied."] = "Berechtigung verweigert."; App::$strings["Not Found"] = "Nicht gefunden"; App::$strings["Page not found."] = "Seite nicht gefunden."; +App::$strings["Permission denied"] = "Keine Berechtigung"; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angemeldet. Bitte melde Dich ab und versuche es erneut."; App::$strings["Welcome %s. Remote authentication successful."] = "Willkommen %s. Entfernte Authentifizierung erfolgreich."; -App::$strings["Requested profile is not available."] = "Erwünschte Profil ist nicht verfügbar."; +App::$strings["Requested profile is not available."] = "Das angefragte Profil ist nicht verfügbar."; App::$strings["Some blurb about what to do when you're new here"] = "Ein Hinweis, was man tun kann, wenn man neu hier ist"; -App::$strings["Block Name"] = "Block-Name"; -App::$strings["Blocks"] = "Blöcke"; -App::$strings["Block Title"] = "Titel des Blocks"; -App::$strings["Created"] = "Erstellt"; -App::$strings["Edited"] = "Geändert"; -App::$strings["Share"] = "Teilen"; -App::$strings["View"] = "Ansicht"; -App::$strings["Channel not found."] = "Kanal nicht gefunden."; -App::$strings["Permissions denied."] = "Berechtigung verweigert."; -App::$strings["l, F j"] = "l, j. F"; -App::$strings["Link to Source"] = "Link zur Quelle"; -App::$strings["Edit Event"] = "Termin bearbeiten"; -App::$strings["Create Event"] = "Termin anlegen"; -App::$strings["Previous"] = "Voriges"; -App::$strings["Next"] = "Nächste"; -App::$strings["Export"] = "Exportieren"; -App::$strings["Import"] = "Import"; -App::$strings["Submit"] = "Bestätigen"; -App::$strings["Today"] = "Heute"; -App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; -App::$strings["Posts and comments"] = "Beiträge und Kommentare"; -App::$strings["Only posts"] = "Nur Beiträge"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; -App::$strings["Room not found"] = "Chatraum nicht gefunden"; -App::$strings["Leave Room"] = "Raum verlassen"; -App::$strings["Delete Room"] = "Raum löschen"; -App::$strings["I am away right now"] = "Ich bin gerade nicht da"; -App::$strings["I am online"] = "Ich bin online"; -App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; -App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; -App::$strings["Encrypt text"] = "Text verschlüsseln"; -App::$strings["Insert web link"] = "Link einfügen"; -App::$strings["Feature disabled."] = "Funktion deaktiviert."; -App::$strings["New Chatroom"] = "Neuer Chatraum"; -App::$strings["Chatroom name"] = "Chatraumname"; -App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; -App::$strings["Permissions"] = "Berechtigungen"; -App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; -App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; -App::$strings["Create New"] = "Neu anlegen"; -App::$strings["Expiration"] = "Verfall"; -App::$strings["min"] = "min"; App::$strings["Away"] = "Abwesend"; App::$strings["Online"] = "Online"; -App::$strings["Invalid item."] = "Ungültiges Element."; -App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; -App::$strings["My Bookmarks"] = "Meine Lesezeichen"; -App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; -App::$strings["Continue"] = "Fortfahren"; -App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; -App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; -App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; -App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; -App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; -App::$strings["Connection updated."] = "Verbindung aktualisiert."; -App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; -App::$strings["is now connected to"] = "ist jetzt verbunden mit"; -App::$strings["No"] = "Nein"; -App::$strings["Yes"] = "Ja"; -App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; -App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; -App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht."; -App::$strings["View Profile"] = "Profil ansehen"; -App::$strings["View %s's profile"] = "%ss Profil ansehen"; -App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; -App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; -App::$strings["Recent Activity"] = "Kürzliche Aktivitäten"; -App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; -App::$strings["Unblock"] = "Freigeben"; +App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; +App::$strings["no results"] = "keine Ergebnisse"; +App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; +App::$strings["queued"] = "zur Warteschlange hinzugefügt"; +App::$strings["posted"] = "zugestellt"; +App::$strings["accepted for delivery"] = "für Zustellung akzeptiert"; +App::$strings["updated"] = "aktualisiert"; +App::$strings["update ignored"] = "Aktualisierung ignoriert"; +App::$strings["permission denied"] = "Zugriff verweigert"; +App::$strings["recipient not found"] = "Empfänger nicht gefunden."; +App::$strings["mail recalled"] = "Mail widerrufen"; +App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; +App::$strings["mail delivered"] = "Mail zugestellt"; +App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; +App::$strings["Options"] = "Optionen"; +App::$strings["Redeliver"] = "Erneut zustellen"; +App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; +App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; +App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; +App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; +App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; +App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich."; +App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator."; +App::$strings["Register at another affiliated hub."] = "Registriere Dich auf einem der anderen verbundenen Hubs."; +App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; +App::$strings["Terms of Service"] = "Nutzungsbedingungen"; +App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; +App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; +App::$strings["Your email address"] = "Ihre E-Mail Adresse"; +App::$strings["Choose a password"] = "Passwort"; +App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; +App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; +App::$strings["Name or caption"] = "Name oder Titel"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; +App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; +App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; +App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; +App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; +App::$strings["no"] = "nein"; +App::$strings["yes"] = "ja"; +App::$strings["Registration"] = "Registrierung"; +App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; +App::$strings["Register"] = "Registrieren"; +App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Ansenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte auf neue Mail mit entsprechenden Hinweisen."; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s Konto blockiert/freigegeben", + 1 => "%s Konten blockiert/freigegeben", +); +App::$strings["%s account deleted"] = array( + 0 => "%s Konto gelöscht", + 1 => "%s Konten gelöscht", +); +App::$strings["Account not found"] = "Konto nicht gefunden"; +App::$strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; +App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert"; +App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; +App::$strings["Administration"] = "Administration"; +App::$strings["Accounts"] = "Konten"; +App::$strings["Submit"] = "Absenden"; +App::$strings["select all"] = "Alle auswählen"; +App::$strings["Registrations waiting for confirm"] = "Registrierungen warten auf Bestätigung"; +App::$strings["Request date"] = "Antragsdatum"; +App::$strings["Email"] = "E-Mail"; +App::$strings["No registrations."] = "Keine Registrierungen."; +App::$strings["Approve"] = "Genehmigen"; +App::$strings["Deny"] = "Verweigern"; App::$strings["Block"] = "Blockieren"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; -App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; -App::$strings["Unignore"] = "Nicht ignorieren"; -App::$strings["Ignore"] = "Ignorieren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; -App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; -App::$strings["Unarchive"] = "Aus Archiv zurückholen"; -App::$strings["Archive"] = "Archivieren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; -App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; -App::$strings["Unhide"] = "Wieder sichtbar machen"; -App::$strings["Hide"] = "Verstecken"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; -App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; -App::$strings["Delete this connection"] = "Verbindung löschen"; -App::$strings["Me"] = "Ich"; -App::$strings["Family"] = "Familie"; -App::$strings["Friends"] = "Freunde"; -App::$strings["Acquaintances"] = "Bekannte"; -App::$strings["All"] = "Alle"; -App::$strings["Approve this connection"] = "Verbindung genehmigen"; -App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; -App::$strings["Set Affinity"] = "Beziehung festlegen"; -App::$strings["Set Profile"] = "Profil festlegen"; -App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; -App::$strings["none"] = "Keine"; -App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; -App::$strings["Connection: %s"] = "Verbindung: %s"; -App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; -App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."; -App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; -App::$strings["Available locations:"] = "Verfügbare Klone:"; -App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; -App::$strings["Connection Tools"] = "Verbindungswerkzeuge"; -App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; -App::$strings["Rating"] = "Bewertung"; -App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; -App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; -App::$strings["Custom Filter"] = "Benutzerdefinierter Filter"; -App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren."; -App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; -App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; -App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; -App::$strings["inherited"] = "geerbt"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; -App::$strings["Their Settings"] = "Deren Einstellungen"; -App::$strings["My Settings"] = "Meine Einstellungen"; -App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; -App::$strings["Last update:"] = "Letzte Aktualisierung:"; -App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; -App::$strings["%d rating"] = array( - 0 => "%d Bewertung", - 1 => "%d Bewertungen", +App::$strings["Unblock"] = "Freigeben"; +App::$strings["ID"] = "ID"; +App::$strings["All Channels"] = "Alle Kanäle"; +App::$strings["Register date"] = "Registrierungs-Datum"; +App::$strings["Last login"] = "Letzte Anmeldung"; +App::$strings["Expires"] = "Verfällt"; +App::$strings["Service Class"] = "Service-Klasse"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; +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?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s Kanal gesperrt/freigegeben", + 1 => "%s Kanäle gesperrt/freigegeben", ); -App::$strings["Gender: "] = "Geschlecht:"; -App::$strings["Status: "] = "Status:"; -App::$strings["Homepage: "] = "Webseite:"; -App::$strings["Age:"] = "Alter:"; -App::$strings["Location:"] = "Ort:"; -App::$strings["Description:"] = "Beschreibung:"; -App::$strings["Hometown:"] = "Heimatstadt:"; -App::$strings["About:"] = "Über:"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Public Forum:"] = "Öffentliches Forum:"; -App::$strings["Keywords: "] = "Schlüsselwörter:"; -App::$strings["Don't suggest"] = "Nicht vorschlagen"; -App::$strings["Common connections:"] = "Gemeinsame Verbindungen:"; -App::$strings["Global Directory"] = "Globales Verzeichnis"; -App::$strings["Local Directory"] = "Lokales Verzeichnis"; -App::$strings["Find"] = "Finde"; -App::$strings["Finding:"] = "Ergebnisse:"; -App::$strings["Channel Suggestions"] = "Kanal-Vorschläge"; -App::$strings["next page"] = "nächste Seite"; -App::$strings["previous page"] = "vorherige Seite"; -App::$strings["Sort options"] = "Sortieroptionen"; -App::$strings["Alphabetic"] = "alphabetisch"; -App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; -App::$strings["Newest to Oldest"] = "Neueste zuerst"; -App::$strings["Oldest to Newest"] = "Älteste zuerst"; -App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Code für %s Kanal gesperrt/freigegeben", + 1 => "Code für %s Kanäle gesperrt/freigegeben", +); +App::$strings["%s channel deleted"] = array( + 0 => "%s Kanal gelöscht", + 1 => "%s Kanäle gelöscht", +); +App::$strings["Channel not found"] = "Kanal nicht gefunden"; +App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; +App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; +App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; +App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; +App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; +App::$strings["Channels"] = "Kanäle"; +App::$strings["Censor"] = "Sperren"; +App::$strings["Uncensor"] = "Freigeben"; +App::$strings["Allow Code"] = "Code erlauben"; +App::$strings["Disallow Code"] = "Code sperren"; +App::$strings["Channel"] = "Kanal"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Adresse"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; +App::$strings["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?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; +App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; +App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; +App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; +App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; +App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; +App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; +App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; +App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; +App::$strings["Off"] = "Aus"; +App::$strings["On"] = "An"; +App::$strings["Lock feature %s"] = "Blockiere die Funktion %s"; +App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten"; +App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; +App::$strings["Logs"] = "Protokolle"; +App::$strings["Clear"] = "Leeren"; +App::$strings["Debugging"] = "Debugging"; +App::$strings["Log file"] = "Protokolldatei"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis."; +App::$strings["Log level"] = "Protokollstufe"; App::$strings["Item not found."] = "Element nicht gefunden."; -App::$strings["Item not found"] = "Element nicht gefunden"; -App::$strings["Title (optional)"] = "Titel (optional)"; -App::$strings["Edit Block"] = "Block bearbeiten"; -App::$strings["No channel."] = "Kein Kanal."; -App::$strings["Common connections"] = "Gemeinsame Verbindungen"; -App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; -App::$strings["Blocked"] = "Blockiert"; -App::$strings["Ignored"] = "Ignoriert"; -App::$strings["Hidden"] = "Versteckt"; -App::$strings["Archived"] = "Archiviert"; -App::$strings["New"] = "Neu"; -App::$strings["New Connections"] = "Neue Verbindungen"; -App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; -App::$strings["All Connections"] = "Alle Verbindungen"; -App::$strings["Show all connections"] = "Alle Verbindungen anzeigen"; -App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; -App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; -App::$strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; -App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; -App::$strings["Pending approval"] = "Wartet auf Genehmigung"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Verbindung bearbeiten"; -App::$strings["Delete connection"] = "Verbindung löschen"; -App::$strings["Channel address"] = "Kanaladresse"; -App::$strings["Network"] = "Netzwerk"; -App::$strings["Status"] = "Status"; -App::$strings["Connected"] = "Verbunden"; -App::$strings["Approve connection"] = "Verbindung genehmigen"; -App::$strings["Approve"] = "Genehmigen"; -App::$strings["Ignore connection"] = "Verbindung ignorieren"; -App::$strings["Recent activity"] = "Kürzliche Aktivitäten"; -App::$strings["Connections"] = "Verbindungen"; -App::$strings["Search"] = "Suche"; -App::$strings["Search your connections"] = "Verbindungen durchsuchen"; -App::$strings["Connections search"] = "Verbindung suchen"; -App::$strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; -App::$strings["Cover Photos"] = "Cover Foto"; -App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; -App::$strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; -App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; -App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; -App::$strings["female"] = "weiblich"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; -App::$strings["male"] = "männlich"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; -App::$strings["cover photo"] = "Cover Foto"; -App::$strings["Photo not available."] = "Foto nicht verfügbar."; -App::$strings["Upload File:"] = "Datei hochladen:"; -App::$strings["Select a profile:"] = "Wähle ein Profil:"; -App::$strings["Upload Cover Photo"] = "Cover Foto hochladen"; -App::$strings["or"] = "oder"; -App::$strings["skip this step"] = "diesen Schritt überspringen"; -App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; -App::$strings["Crop Image"] = "Bild zuschneiden"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; -App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; -App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; -App::$strings["Edit post"] = "Bearbeite Beitrag"; -App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; -App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; -App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; -App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; -App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; -App::$strings["Event not found."] = "Termin nicht gefunden."; -App::$strings["event"] = "Termin"; -App::$strings["Edit event title"] = "Termintitel bearbeiten"; -App::$strings["Event title"] = "Termintitel"; -App::$strings["Required"] = "Benötigt"; -App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; -App::$strings["Edit Category"] = "Kategorie bearbeiten"; -App::$strings["Category"] = "Kategorie"; -App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; -App::$strings["Start date and time"] = "Startdatum und -zeit"; -App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; -App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; -App::$strings["Finish date and time"] = "Enddatum und -zeit"; -App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; -App::$strings["Edit Description"] = "Beschreibung bearbeiten"; -App::$strings["Description"] = "Beschreibung"; -App::$strings["Edit Location"] = "Ort bearbeiten"; -App::$strings["Location"] = "Ort"; -App::$strings["Share this event"] = "Den Termin teilen"; -App::$strings["Preview"] = "Vorschau"; -App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; -App::$strings["Advanced Options"] = "Weitere Optionen"; -App::$strings["Edit event"] = "Termin bearbeiten"; -App::$strings["Delete event"] = "Termin löschen"; -App::$strings["calendar"] = "Kalender"; -App::$strings["Event removed"] = "Termin gelöscht"; -App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; -App::$strings["Photos"] = "Fotos"; +App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; +App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; +App::$strings["Disable"] = "Deaktivieren"; +App::$strings["Enable"] = "Aktivieren"; +App::$strings["Plugins"] = "Plug-Ins"; +App::$strings["Toggle"] = "Umschalten"; +App::$strings["Settings"] = "Einstellungen"; +App::$strings["Author: "] = "Autor: "; +App::$strings["Maintainer: "] = "Betreuer:"; +App::$strings["Minimum project version: "] = "Minimale Version des Projekts:"; +App::$strings["Maximum project version: "] = "Maximale Version des Projekts:"; +App::$strings["Minimum PHP version: "] = "Minimale PHP Version:"; +App::$strings["Compatible Server Roles: "] = "Kompatible Serverrollen: "; +App::$strings["Requires: "] = "Benötigt:"; +App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität"; +App::$strings["Enter the public git repository URL of the plugin repo."] = "Gib die öffentliche Git-Repository-URL des Plugin-Repository an."; +App::$strings["Plugin repo git URL"] = "Plugin-Repository Git URL"; +App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name"; +App::$strings["(optional)"] = "(optional)"; +App::$strings["Download Plugin Repo"] = "Plugin-Repository herunterladen"; +App::$strings["Install new repo"] = "Neues Repository installieren"; +App::$strings["Install"] = "Installieren"; App::$strings["Cancel"] = "Abbrechen"; -App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; -App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; -App::$strings["Save to Folder:"] = "Speichern in Ordner:"; -App::$strings["- select -"] = "– auswählen –"; +App::$strings["Manage Repos"] = "Repositorien verwalten"; +App::$strings["Installed Plugin Repositories"] = "Installierte Plugin-Repositorien"; +App::$strings["Install a New Plugin Repository"] = "Ein neues Plugin-Repository installieren"; +App::$strings["Update"] = "Aktualisieren"; +App::$strings["Switch branch"] = "Zweig/Branch wechseln"; +App::$strings["Remove"] = "Entfernen"; +App::$strings["New Profile Field"] = "Neues Profilfeld"; +App::$strings["Field nickname"] = "Kurzname für das Feld"; +App::$strings["System name of field"] = "Systemname des Feldes"; +App::$strings["Input type"] = "Art des Inhalts"; +App::$strings["Field Name"] = "Feldname"; +App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; +App::$strings["Help text"] = "Hilfetext"; +App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; App::$strings["Save"] = "Speichern"; -App::$strings["Invalid message"] = "Ungültige Beitrags-ID (mid)"; -App::$strings["no results"] = "keine Ergebnisse"; -App::$strings["Delivery report for %1\$s"] = "Zustellungsbericht für %1\$s"; -App::$strings["channel sync processed"] = "Kanal-Sync verarbeitet"; -App::$strings["queued"] = "zur Warteschlange hinzugefügt"; -App::$strings["posted"] = "zugestellt"; -App::$strings["accepted for delivery"] = "für Zustellung akzeptiert"; -App::$strings["updated"] = "aktualisiert"; -App::$strings["update ignored"] = "Aktualisierung ignoriert"; -App::$strings["permission denied"] = "Zugriff verweigert"; -App::$strings["recipient not found"] = "Empfänger nicht gefunden."; -App::$strings["mail recalled"] = "Mail widerrufen"; -App::$strings["duplicate mail received"] = "Doppelte Mail erhalten"; -App::$strings["mail delivered"] = "Mail zugestellt"; -App::$strings["Layout Name"] = "Layout-Name"; -App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; -App::$strings["Edit Layout"] = "Layout bearbeiten"; -App::$strings["Page link"] = "Seiten-Link"; -App::$strings["Edit Webpage"] = "Webseite bearbeiten"; -App::$strings["Channel added."] = "Kanal hinzugefügt."; -App::$strings["network"] = "Netzwerk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; -App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; -App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; -App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert."; -App::$strings["Create a group of channels."] = "Erstelle eine Gruppe für Kanäle."; -App::$strings["Privacy group name: "] = "Gruppenname:"; -App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; -App::$strings["Privacy group removed."] = "Gruppe wurde entfernt."; -App::$strings["Unable to remove privacy group."] = "Gruppe konnte nicht entfernt werden."; -App::$strings["Privacy group editor"] = "Gruppeneditor"; -App::$strings["Members"] = "Mitglieder"; -App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; -App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; -App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; -App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; -App::$strings["Return to your app and insert this Securty Code:"] = "Trage folgenden Sicherheitscode in der Anwendung ein:"; -App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; -App::$strings["Documentation Search"] = "Suche in der Dokumentation"; -App::$strings["Help:"] = "Hilfe:"; -App::$strings["Help"] = "Hilfe"; -App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; -App::$strings["Permission Denied."] = "Zugriff verweigert."; -App::$strings["File not found."] = "Datei nicht gefunden."; -App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; -App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; -App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; -App::$strings["Return to file list"] = "Zurück zur Dateiliste"; -App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; -App::$strings["Share this file"] = "Diese Datei freigeben"; -App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; -App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; -App::$strings["Apps"] = "Apps"; -App::$strings["Item not available."] = "Element nicht verfügbar."; -App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; -App::$strings["Nothing to import."] = "Nichts zu importieren."; -App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; -App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; -App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; -App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; -App::$strings["Import completed."] = "Import abgeschlossen."; -App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; -App::$strings["Import Channel"] = "Kanal importieren"; -App::$strings["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."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; -App::$strings["File to Upload"] = "Hochzuladende Datei:"; -App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; -App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; -App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; -App::$strings["Your old login password"] = "Dein altes Passwort"; -App::$strings["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."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; -App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; -App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; -App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; -App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; -App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; -App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; -App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; -App::$strings["Layouts"] = "Layouts"; -App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; -App::$strings["Layout Description"] = "Layout-Beschreibung"; -App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Willkommen auf %s"; -App::$strings["First Name"] = "Vorname"; -App::$strings["Last Name"] = "Nachname"; -App::$strings["Nickname"] = "Spitzname"; -App::$strings["Full Name"] = "Voller Name"; -App::$strings["Email"] = "E-Mail"; -App::$strings["Profile Photo"] = "Profilfoto"; -App::$strings["Profile Photo 16px"] = "Profilfoto 16 px"; -App::$strings["Profile Photo 32px"] = "Profilfoto 32 px"; -App::$strings["Profile Photo 48px"] = "Profilfoto 48 px"; -App::$strings["Profile Photo 64px"] = "Profilfoto 64 px"; -App::$strings["Profile Photo 80px"] = "Profilfoto 80 px"; -App::$strings["Profile Photo 128px"] = "Profilfoto 128 px"; -App::$strings["Timezone"] = "Zeitzone"; -App::$strings["Homepage URL"] = "Homepage-URL"; -App::$strings["Language"] = "Sprache"; -App::$strings["Birth Year"] = "Geburtsjahr"; -App::$strings["Birth Month"] = "Geburtsmonat"; -App::$strings["Birth Day"] = "Geburtstag"; -App::$strings["Birthdate"] = "Geburtsdatum"; -App::$strings["Gender"] = "Geschlecht"; -App::$strings["Male"] = "Männlich"; -App::$strings["Female"] = "Weiblich"; -App::$strings["webpage"] = "Webseite"; -App::$strings["block"] = "Block"; -App::$strings["layout"] = "Layout"; -App::$strings["menu"] = "Menü"; -App::$strings["%s element installed"] = "Element für %s installiert"; -App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; -App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; -App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; -App::$strings["Invalid request."] = "Ungültige Anfrage."; -App::$strings["channel"] = "Kanal"; -App::$strings["thing"] = "Sache"; -App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; -App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; -App::$strings["photo"] = "Foto"; -App::$strings["status"] = "Status"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; -App::$strings["Action completed."] = "Aktion durchgeführt."; -App::$strings["Thank you."] = "Vielen Dank."; -App::$strings["Import completed"] = "Import abgeschlossen"; -App::$strings["Import Items"] = "Beiträge importieren"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; -App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; -App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; -App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; -App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; -App::$strings["%d message sent."] = array( - 0 => "%d Nachricht gesendet.", - 1 => "%d Nachrichten gesendet.", +App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden"; +App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten"; +App::$strings["Profile Fields"] = "Profil Felder"; +App::$strings["Basic Profile Fields"] = "Notwendige Profil Felder"; +App::$strings["Advanced Profile Fields"] = "Erweiterte Profil Felder"; +App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Felder)"; +App::$strings["All available fields"] = "Alle verfügbaren Felder"; +App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; +App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; +App::$strings["Queue Statistics"] = "Warteschlangenstatistiken"; +App::$strings["Total Entries"] = "Einträge insgesamt"; +App::$strings["Priority"] = "Priorität"; +App::$strings["Destination URL"] = "Ziel-URL"; +App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; +App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; +App::$strings["Last known contact"] = "Letzter Kontakt"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:"; +App::$strings["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/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert."; +App::$strings["Security"] = "Sicherheit"; +App::$strings["Block public"] = "Öffentlichen Zugriff blockieren"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Setze den \"Transport Security\" HTTP Header"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Setze den \"Content Security Policy\" HTTP Header"; +App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; +App::$strings["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."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; +App::$strings["Allow communications only from these sites"] = "Kommunikation nur von diesen Seiten erlauben"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben."; +App::$strings["Block communications from these sites"] = "Kommunikation von diesen Seiten blockieren"; +App::$strings["Allow communications only from these channels"] = "Kommunikation nur von diesen Kanälen erlauben"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. "; +App::$strings["Block communications from these channels"] = "Kommunikation von folgenden Kanälen blockieren"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains"; +App::$strings["One site per line. By default embedded content is filtered."] = "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert."; +App::$strings["Block embedded HTML from these domains"] = "Eingebettete HTML Inhalte von diesen Seiten blockieren"; +App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; +App::$strings["Default"] = "Standard"; +App::$strings["mobile"] = "mobil"; +App::$strings["experimental"] = "experimentell"; +App::$strings["unsupported"] = "nicht unterstützt"; +App::$strings["No"] = "Nein"; +App::$strings["Yes - with approval"] = "Ja - mit Zustimmung"; +App::$strings["Yes"] = "Ja"; +App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; +App::$strings["My site has paid access only"] = "Meine Seite hat nur bezahlten Zugriff"; +App::$strings["My site has free access only"] = "Meine Seite hat nur freien Zugriff"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; +App::$strings["Basic/Minimal Social Networking"] = "Einfaches/minimales soziales Netzwerken"; +App::$strings["Standard Configuration (default)"] = "Standardkonfiguration (Standard)"; +App::$strings["Professional"] = "Professionell"; +App::$strings["Beginner/Basic"] = "Anfänger/Basis"; +App::$strings["Novice - not skilled but willing to learn"] = "Anfänger - unerfahren, aber bereit zu lernen"; +App::$strings["Intermediate - somewhat comfortable"] = "Fortgeschritten - relativ komfortabel"; +App::$strings["Advanced - very comfortable"] = "Fortgeschritten - sehr komfortabel"; +App::$strings["Expert - I can write computer code"] = "Experte - Ich kann Computercode schreiben"; +App::$strings["Wizard - I probably know more than you do"] = "Zauberer - ich kann wahrscheinlich mehr als Du"; +App::$strings["Site"] = "Seite"; +App::$strings["File upload"] = "Dateiupload"; +App::$strings["Policies"] = "Richtlinien"; +App::$strings["Advanced"] = "Fortgeschritten"; +App::$strings["Site name"] = "Seitenname"; +App::$strings["Server Configuration/Role"] = "Serverkonfiguration/Rolle"; +App::$strings["Site default technical skill level"] = "Standard-Qualifikationsstufe der Website"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten."; +App::$strings["Lock the technical skill level setting"] = "Sperre die technische Qualifikationsstufe"; +App::$strings["Members can set their own technical comfort level by default"] = "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen"; +App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Administrator Information"] = "Administrator-Informationen"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; +App::$strings["System language"] = "System-Sprache"; +App::$strings["System theme"] = "System-Theme"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; +App::$strings["Mobile system theme"] = "Mobile System-Theme:"; +App::$strings["Theme for mobile devices"] = "Theme für mobile Geräte"; +App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; +App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; +App::$strings["Maximum image size"] = "Maximale Bildgröße"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; +App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; +App::$strings["Invitation only"] = "Nur mit Einladung"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; +App::$strings["Register text"] = "Registrierungstext"; +App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; +App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; +App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; +App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; +App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; +App::$strings["Force publish"] = "Veröffentlichung erzwingen"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; +App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["Login on Homepage"] = "Log-in auf der Startseite"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; +App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird."; +App::$strings["Directory Server URL"] = "Verzeichnisserver-URL"; +App::$strings["Default directory server"] = "Standard-Verzeichnisserver"; +App::$strings["Proxy user"] = "Proxy Benutzer"; +App::$strings["Proxy URL"] = "Proxy URL"; +App::$strings["Network timeout"] = "Netzwerk-Timeout"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; +App::$strings["Delivery interval"] = "Auslieferung Intervall"; +App::$strings["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."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; +App::$strings["Deliveries per process"] = "Zustellungen pro Prozess"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; +App::$strings["Poll interval"] = "Abfrageintervall"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; +App::$strings["Maximum Load Average"] = "Maximales Load Average"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; +App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; +App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; +App::$strings["No themes found."] = "Keine Theme gefunden."; +App::$strings["Screenshot"] = "Bildschirmfoto"; +App::$strings["Themes"] = "Themes"; +App::$strings["[Experimental]"] = "[Experimentell]"; +App::$strings["[Unsupported]"] = "[Nicht unterstützt]"; +App::$strings["Your service plan only allows %d channels."] = "Dein Vertrag erlaubt nur %d Kanäle."; +App::$strings["Nothing to import."] = "Nichts zu importieren."; +App::$strings["Unable to download data from old server"] = "Daten können vom alten Server nicht heruntergeladen werden"; +App::$strings["Imported file is empty."] = "Die importierte Datei ist leer."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Achtung: Datenbankversionen unterscheiden sich um %1\$d Aktualisierungen."; +App::$strings["Cloned channel not found. Import failed."] = "Geklonter Kanal nicht gefunden. Import fehlgeschlagen."; +App::$strings["No channel. Import failed."] = "Kein Kanal. Import fehlgeschlagen."; +App::$strings["Import completed."] = "Import abgeschlossen."; +App::$strings["You must be logged in to use this feature."] = "Du musst angemeldet sein um diese Funktion zu nutzen."; +App::$strings["Import Channel"] = "Kanal importieren"; +App::$strings["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."] = "Verwende dieses Formular, um einen existierenden Kanal von einem anderen Hub zu importieren. Du kannst den Kanal direkt vom bisherigen Hub über das Netzwerk oder aus einer exportierten Sicherheitskopie importieren."; +App::$strings["File to Upload"] = "Hochzuladende Datei:"; +App::$strings["Or provide the old server/hub details"] = "Oder gib die Details Deines bisherigen \$Projectname-Hubs ein"; +App::$strings["Your old identity address (xyz@example.com)"] = "Bisherige Kanal-Adresse (xyz@example.com)"; +App::$strings["Your old login email address"] = "Deine alte Login-E-Mail-Adresse"; +App::$strings["Your old login password"] = "Dein altes Passwort"; +App::$strings["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."] = "Egal, welche Option Du wählst – bitte lege fest, ob dieser Server die neue primäre Adresse dieses Kanals sein soll, oder ob der bisherige \$Projectname-Hub diese Rolle weiterhin wahrnimmt. Du kannst von beiden Servern aus posten, aber nur einer kann der primäre Ort Deiner Dateien, Fotos und Medien sein."; +App::$strings["Make this hub my primary location"] = "Dieser $Pojectname-Hub ist mein primärer Hub."; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importiere bestehende Beiträge falls möglich (experimentell - begrenzt durch zur Verfügung stehenden Speicher"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur einmal ab und lasse diese Seite bis zur Fertigstellung offen."; +App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; +App::$strings["%d rating"] = array( + 0 => "%d Bewertung", + 1 => "%d Bewertungen", ); -App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; -App::$strings["Send invitations"] = "Einladungen senden"; -App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; -App::$strings["Your message:"] = "Deine Nachricht:"; -App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; -App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; -App::$strings["or visit"] = "oder besuche"; -App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; -App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; -App::$strings["Visible to:"] = "Sichtbar für:"; -App::$strings["Location not found."] = "Klon nicht gefunden."; -App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; -App::$strings["Syncing locations"] = "Synchronisiere Klone"; -App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; -App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; -App::$strings["Address"] = "Adresse"; -App::$strings["Primary"] = "Primär"; -App::$strings["Drop"] = "Löschen"; -App::$strings["Sync Now"] = "Jetzt synchronisieren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; -App::$strings["Hub not found."] = "Server nicht gefunden."; -App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; -App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; -App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; -App::$strings["Messages"] = "Nachrichten"; -App::$strings["Message recalled."] = "Nachricht widerrufen."; -App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; -App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; -App::$strings["Send Private Message"] = "Private Nachricht senden"; -App::$strings["To:"] = "An:"; -App::$strings["Subject:"] = "Betreff:"; -App::$strings["Attach file"] = "Datei anhängen"; -App::$strings["Send"] = "Absenden"; -App::$strings["Set expiration date"] = "Verfallsdatum"; -App::$strings["Delete message"] = "Nachricht löschen"; -App::$strings["Delivery report"] = "Zustellungsbericht"; -App::$strings["Recall message"] = "Nachricht widerrufen"; -App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; -App::$strings["Delete Conversation"] = "Unterhaltung löschen"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; -App::$strings["Send Reply"] = "Antwort senden"; -App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; -App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; -App::$strings["Channel Manager"] = "Kanal-Manager"; -App::$strings["Current Channel"] = "Aktueller Kanal"; -App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; -App::$strings["Default Channel"] = "Standard Kanal"; -App::$strings["Make Default"] = "Zum Standard machen"; -App::$strings["%d new messages"] = "%d neue Nachrichten"; -App::$strings["%d new introductions"] = "%d neue Vorstellungen"; -App::$strings["Delegated Channel"] = "Delegierte Kanäle"; -App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; -App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; -App::$strings["Site Member (%s)"] = "Nutzer (%s)"; -App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; -App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; -App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; -App::$strings["Your new password is"] = "Dein neues Passwort lautet"; -App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; -App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; -App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; -App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; -App::$strings["Email Address"] = "E-Mail Adresse"; -App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["Gender: "] = "Geschlecht:"; +App::$strings["Status: "] = "Status:"; +App::$strings["Homepage: "] = "Webseite:"; +App::$strings["Age:"] = "Alter:"; +App::$strings["Location:"] = "Ort:"; +App::$strings["Description:"] = "Beschreibung:"; +App::$strings["Hometown:"] = "Heimatstadt:"; +App::$strings["About:"] = "Über:"; +App::$strings["Connect"] = "Verbinden"; +App::$strings["Public Forum:"] = "Öffentliches Forum:"; +App::$strings["Keywords: "] = "Schlüsselwörter:"; +App::$strings["Don't suggest"] = "Nicht vorschlagen"; +App::$strings["Common connections:"] = "Gemeinsame Verbindungen:"; +App::$strings["Global Directory"] = "Globales Verzeichnis"; +App::$strings["Local Directory"] = "Lokales Verzeichnis"; +App::$strings["Find"] = "Finde"; +App::$strings["Finding:"] = "Ergebnisse:"; +App::$strings["Channel Suggestions"] = "Kanal-Vorschläge"; +App::$strings["next page"] = "nächste Seite"; +App::$strings["previous page"] = "vorherige Seite"; +App::$strings["Sort options"] = "Sortieroptionen"; +App::$strings["Alphabetic"] = "alphabetisch"; +App::$strings["Reverse Alphabetic"] = "Entgegengesetzt alphabetisch"; +App::$strings["Newest to Oldest"] = "Neueste zuerst"; +App::$strings["Oldest to Newest"] = "Älteste zuerst"; +App::$strings["No entries (some entries may be hidden)."] = "Keine Einträge gefunden (einige könnten versteckt sein)."; +App::$strings["Bookmark added"] = "Lesezeichen hinzugefügt"; +App::$strings["My Bookmarks"] = "Meine Lesezeichen"; +App::$strings["My Connections Bookmarks"] = "Lesezeichen meiner Kontakte"; +App::$strings["Edit post"] = "Bearbeite Beitrag"; +App::$strings["No ratings"] = "Keine Bewertungen"; +App::$strings["Ratings"] = "Bewertungen"; +App::$strings["Rating: "] = "Bewertung: "; +App::$strings["Website: "] = "Webseite: "; +App::$strings["Description: "] = "Beschreibung: "; +App::$strings["Photos"] = "Fotos"; +App::$strings["Invalid item."] = "Ungültiges Element."; +App::$strings["Channel not found."] = "Kanal nicht gefunden."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Speichern in Ordner:"; +App::$strings["- select -"] = "– auswählen –"; +App::$strings["Blocked"] = "Blockiert"; +App::$strings["Ignored"] = "Ignoriert"; +App::$strings["Hidden"] = "Versteckt"; +App::$strings["Archived"] = "Archiviert"; +App::$strings["New"] = "Neu"; +App::$strings["All"] = "Alle"; +App::$strings["New Connections"] = "Neue Verbindungen"; +App::$strings["Show pending (new) connections"] = "Ausstehende (neue) Verbindungsanfragen anzeigen"; +App::$strings["All Connections"] = "Alle Verbindungen"; +App::$strings["Show all connections"] = "Alle Verbindungen anzeigen"; +App::$strings["Only show blocked connections"] = "Nur blockierte Verbindungen anzeigen"; +App::$strings["Only show ignored connections"] = "Nur ignorierte Verbindungen anzeigen"; +App::$strings["Only show archived connections"] = "Nur archivierte Verbindungen anzeigen"; +App::$strings["Only show hidden connections"] = "Nur versteckte Verbindungen anzeigen"; +App::$strings["Pending approval"] = "Wartet auf Genehmigung"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Verbindung bearbeiten"; +App::$strings["Delete connection"] = "Verbindung löschen"; +App::$strings["Channel address"] = "Kanaladresse"; +App::$strings["Network"] = "Netzwerk"; +App::$strings["Status"] = "Status"; +App::$strings["Connected"] = "Verbunden"; +App::$strings["Approve connection"] = "Verbindung genehmigen"; +App::$strings["Ignore connection"] = "Verbindung ignorieren"; +App::$strings["Ignore"] = "Ignorieren"; +App::$strings["Recent activity"] = "Kürzliche Aktivitäten"; +App::$strings["Connections"] = "Verbindungen"; +App::$strings["Search"] = "Suche"; +App::$strings["Search your connections"] = "Verbindungen durchsuchen"; +App::$strings["Connections search"] = "Verbindung suchen"; +App::$strings["Image uploaded but image cropping failed."] = "Bild hochgeladen, aber das Zurechtschneiden schlug fehl."; +App::$strings["Cover Photos"] = "Cover Foto"; +App::$strings["Image resize failed."] = "Bild-Anpassung fehlgeschlagen."; +App::$strings["Unable to process image"] = "Kann Bild nicht verarbeiten"; +App::$strings["Image upload failed."] = "Hochladen des Bilds fehlgeschlagen."; +App::$strings["Unable to process image."] = "Kann Bild nicht verarbeiten."; +App::$strings["female"] = "weiblich"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; +App::$strings["male"] = "männlich"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s hat sein %2\$s aktualisiert"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s hat sein/ihr %2\$s aktualisiert"; +App::$strings["cover photo"] = "Cover Foto"; +App::$strings["Photo not available."] = "Foto nicht verfügbar."; +App::$strings["Upload File:"] = "Datei hochladen:"; +App::$strings["Select a profile:"] = "Wähle ein Profil:"; +App::$strings["Upload Cover Photo"] = "Cover Foto hochladen"; +App::$strings["or"] = "oder"; +App::$strings["skip this step"] = "diesen Schritt überspringen"; +App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +App::$strings["Crop Image"] = "Bild zuschneiden"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Bitte schneide das Bild für eine optimale Anzeige passend zu."; +App::$strings["Done Editing"] = "Bearbeitung fertigstellen"; +App::$strings["Item not found"] = "Element nicht gefunden"; +App::$strings["Block Name"] = "Block-Name"; +App::$strings["Insert web link"] = "Link einfügen"; +App::$strings["Title (optional)"] = "Titel (optional)"; +App::$strings["Edit Block"] = "Block bearbeiten"; +App::$strings["Layout Name"] = "Layout-Name"; +App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; +App::$strings["Edit Layout"] = "Layout bearbeiten"; +App::$strings["Page link"] = "Seiten-Link"; +App::$strings["Edit Webpage"] = "Webseite bearbeiten"; App::$strings["Unable to update menu."] = "Kann Menü nicht aktualisieren."; App::$strings["Unable to create menu."] = "Kann Menü nicht erstellen."; App::$strings["Menu Name"] = "Name des Menüs"; @@ -533,6 +504,9 @@ App::$strings["Allow Bookmarks"] = "Lesezeichen erlauben"; App::$strings["Menu may be used to store saved bookmarks"] = "Im Menü können gespeicherte Lesezeichen abgelegt werden"; App::$strings["Submit and proceed"] = "Absenden und fortfahren"; App::$strings["Menus"] = "Menüs"; +App::$strings["Drop"] = "Löschen"; +App::$strings["Created"] = "Erstellt"; +App::$strings["Edited"] = "Geändert"; App::$strings["Bookmarks allowed"] = "Lesezeichen erlaubt"; App::$strings["Delete this menu"] = "Lösche dieses Menü"; App::$strings["Edit menu contents"] = "Bearbeite Menü Inhalte"; @@ -547,13 +521,146 @@ App::$strings["Menu title"] = "Menü Titel"; App::$strings["Menu title as seen by others"] = "Menü Titel wie er von anderen gesehen wird"; App::$strings["Allow bookmarks"] = "Erlaube Lesezeichen"; App::$strings["Not found."] = "Nicht gefunden."; -App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; -App::$strings["Mood"] = "Laune"; -App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; -App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; -App::$strings["is interested in:"] = "interessiert sich für:"; -App::$strings["No matches"] = "Keine Übereinstimmungen"; +App::$strings["App installed."] = "App installiert."; +App::$strings["Malformed app."] = "Fehlerhafte App."; +App::$strings["Embed code"] = "Code einbetten"; +App::$strings["Edit App"] = "App bearbeiten"; +App::$strings["Create App"] = "App erstellen"; +App::$strings["Name of app"] = "Name der App"; +App::$strings["Required"] = "Benötigt"; +App::$strings["Location (URL) of app"] = "Ort (URL) der App"; +App::$strings["Description"] = "Beschreibung"; +App::$strings["Photo icon URL"] = "URL zum Icon"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; +App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Version ID"] = "Versions-ID"; +App::$strings["Price of app"] = "Preis der App"; +App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["Unable to lookup recipient."] = "Konnte den Empfänger nicht finden."; +App::$strings["Unable to communicate with requested channel."] = "Die Kommunikation mit dem ausgewählten Kanal ist fehlgeschlagen."; +App::$strings["Cannot verify requested channel."] = "Verifizierung des angeforderten Kanals fehlgeschlagen."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Der ausgewählte Kanal hat Einschränkungen bzgl. privater Nachrichten. Senden fehlgeschlagen."; +App::$strings["Messages"] = "Nachrichten"; +App::$strings["Message recalled."] = "Nachricht widerrufen."; +App::$strings["Conversation removed."] = "Unterhaltung gelöscht."; +App::$strings["Please enter a link URL:"] = "Gib eine URL ein:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verfällt YYYY-MM-DD HH;MM"; +App::$strings["Requested channel is not in this network"] = "Angeforderter Kanal ist nicht in diesem Netzwerk."; +App::$strings["Send Private Message"] = "Private Nachricht senden"; +App::$strings["To:"] = "An:"; +App::$strings["Subject:"] = "Betreff:"; +App::$strings["Your message:"] = "Deine Nachricht:"; +App::$strings["Attach file"] = "Datei anhängen"; +App::$strings["Send"] = "Absenden"; +App::$strings["Set expiration date"] = "Verfallsdatum"; +App::$strings["Encrypt text"] = "Text verschlüsseln"; +App::$strings["Delete message"] = "Nachricht löschen"; +App::$strings["Delivery report"] = "Zustellungsbericht"; +App::$strings["Recall message"] = "Nachricht widerrufen"; +App::$strings["Message has been recalled."] = "Die Nachricht wurde widerrufen."; +App::$strings["Delete Conversation"] = "Unterhaltung löschen"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Keine sichere Kommunikation verfügbar. Eventuell kannst Du auf der Profilseite des Absenders antworten."; +App::$strings["Send Reply"] = "Antwort senden"; +App::$strings["Your message for %s (%s):"] = "Deine Nachricht für %s (%s):"; +App::$strings["Item not available."] = "Element nicht verfügbar."; +App::$strings["Share content from Firefox to \$Projectname"] = "Inhalte von Firefox nach \$Projectname teilen"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Aktiviert den \$Projectname-Provider für firefox"; +App::$strings["Documentation Search"] = "Suche in der Dokumentation"; +App::$strings["\$Projectname Documentation"] = "\$Projectname-Dokumentation"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Willkommen auf %s"; +App::$strings["Remote privacy information not available."] = "Privatsphäre-Einstellungen anderer Nutzer sind nicht verfügbar."; +App::$strings["Visible to:"] = "Sichtbar für:"; +App::$strings["Permission Denied."] = "Zugriff verweigert."; +App::$strings["File not found."] = "Datei nicht gefunden."; +App::$strings["Edit file permissions"] = "Dateiberechtigungen bearbeiten"; +App::$strings["Permissions"] = "Berechtigungen"; +App::$strings["Set/edit permissions"] = "Berechtigungen setzen/ändern"; +App::$strings["Include all files and sub folders"] = "Alle Dateien und Unterverzeichnisse einbinden"; +App::$strings["Return to file list"] = "Zurück zur Dateiliste"; +App::$strings["Copy/paste this code to attach file to a post"] = "Diesen Code kopieren und einfügen, um die Datei an einen Beitrag anzuhängen"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Diese URL verwenden, um von einer Webseite aus auf die Datei zu verlinken"; +App::$strings["Share this file"] = "Diese Datei freigeben"; +App::$strings["Show URL to this file"] = "URL zu dieser Datei anzeigen"; +App::$strings["Notify your contacts about this file"] = "Meine Kontakte über diese Datei benachrichtigen"; +App::$strings["Hub not found."] = "Server nicht gefunden."; +App::$strings["Continue"] = "Fortfahren"; +App::$strings["Premium Channel Setup"] = "Premium-Kanal-Einrichtung"; +App::$strings["Enable premium channel connection restrictions"] = "Einschränkungen für einen Premium-Kanal aktivieren"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Bitte gib Deine Nutzungsbedingungen ein, z.B. Paypal-Quittung, Richtlinien etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Unter Umständen sind weitere Schritte oder die Bestätigung der folgenden Bedingungen vor dem Verbinden mit diesem Kanal nötig."; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Potentielle Kontakte werden den folgenden Text sehen, bevor fortgefahren wird:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Indem ich fortfahre, bestätige ich die Erfüllung aller Anweisungen auf dieser Seite."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Der Kanal-Besitzer hat keine speziellen Anweisungen hinterlegt.)"; +App::$strings["Restricted or Premium Channel"] = "Eingeschränkter oder Premium-Kanal"; +App::$strings["Privacy group created."] = "Gruppe wurde erstellt."; +App::$strings["Could not create privacy group."] = "Gruppe konnte nicht erstellt werden."; +App::$strings["Privacy group not found."] = "Gruppe nicht gefunden."; +App::$strings["Privacy group updated."] = "Gruppe wurde aktualisiert."; +App::$strings["Create a group of channels."] = "Erstelle eine Gruppe für Kanäle."; +App::$strings["Privacy group name: "] = "Gruppenname:"; +App::$strings["Members are visible to other channels"] = "Mitglieder sind sichtbar für andere Kanäle"; +App::$strings["Privacy group removed."] = "Gruppe wurde entfernt."; +App::$strings["Unable to remove privacy group."] = "Gruppe konnte nicht entfernt werden."; +App::$strings["Privacy group editor"] = "Gruppeneditor"; +App::$strings["Members"] = "Mitglieder"; +App::$strings["All Connected Channels"] = "Alle verbundenen Kanäle"; +App::$strings["Click on a channel to add or remove."] = "Wähle einen Kanal zum hinzufügen oder entfernen aus."; +App::$strings["Import Webpage Elements"] = "Webseitenelemente importieren"; +App::$strings["Import selected"] = "Import ausgewählt"; +App::$strings["Export Webpage Elements"] = "Webseitenelemente exportieren"; +App::$strings["Export selected"] = "Exportieren ausgewählt"; +App::$strings["Webpages"] = "Webseiten"; +App::$strings["Share"] = "Teilen"; +App::$strings["View"] = "Ansicht"; +App::$strings["Preview"] = "Vorschau"; +App::$strings["Actions"] = "Aktionen"; +App::$strings["Page Link"] = "Seiten-Link"; +App::$strings["Page Title"] = "Seitentitel"; +App::$strings["Invalid file type."] = "Ungültiger Dateityp."; +App::$strings["Error opening zip file"] = "Fehler beim Öffnen der ZIP-Datei"; +App::$strings["Invalid folder path."] = "Ungültiger Ordnerpfad."; +App::$strings["No webpage elements detected."] = "Keine Webseitenelemente erkannt."; +App::$strings["Import complete."] = "Import abgeschlossen."; +App::$strings["webpage"] = "Webseite"; +App::$strings["block"] = "Block"; +App::$strings["layout"] = "Layout"; +App::$strings["menu"] = "Menü"; +App::$strings["%s element installed"] = "Element für %s installiert"; +App::$strings["%s element installation failed"] = "Installation des Elements %s fehlgeschlagen"; +App::$strings["Import completed"] = "Import abgeschlossen"; +App::$strings["Import Items"] = "Beiträge importieren"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus einer Sicherungsdatei importieren."; +App::$strings["Total invitation limit exceeded."] = "Einladungslimit überschritten."; +App::$strings["%s : Not a valid email address."] = "%s : Keine gültige Email Adresse."; +App::$strings["Please join us on \$Projectname"] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines \$Projectname-Servers."; +App::$strings["%s : Message delivery failed."] = "%s : Nachricht konnte nicht zugestellt werden."; +App::$strings["%d message sent."] = array( + 0 => "%d Nachricht gesendet.", + 1 => "%d Nachrichten gesendet.", +); +App::$strings["You have no more invitations available"] = "Du hast keine weiteren verfügbare Einladungen"; +App::$strings["Send invitations"] = "Einladungen senden"; +App::$strings["Enter email addresses, one per line:"] = "Email-Adressen eintragen, eine pro Zeile:"; +App::$strings["Please join my community on \$Projectname."] = "Schließe Dich uns auf \$Projectname an!"; +App::$strings["You will need to supply this invitation code:"] = "Bitte verwende bei der Registrierung den folgenden Einladungscode:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registriere Dich auf einem beliebigen \$Projectname-Hub (sie sind alle miteinander verbunden)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Gib meine \$Projectname-Adresse im Suchfeld ein."; +App::$strings["or visit"] = "oder besuche"; +App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; +App::$strings["Location not found."] = "Klon nicht gefunden."; +App::$strings["Location lookup failed."] = "Nachschlagen des Kanal-Ortes fehlgeschlagen"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Bitte mache einen anderen Kanal-Ort zum primären Ort, bevor Du den primären Ort löschst."; +App::$strings["Syncing locations"] = "Synchronisiere Klone"; +App::$strings["No locations found."] = "Keine Klon-Adressen gefunden."; +App::$strings["Manage Channel Locations"] = "Klon-Adressen verwalten"; +App::$strings["Location"] = "Ort"; +App::$strings["Primary"] = "Primär"; +App::$strings["Sync Now"] = "Jetzt synchronisieren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Bitte warte mehrere Minuten zwischen dem Ausführen zweier Operationen!"; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wenn möglich, lösche einen Klon, indem Du Dich auf dem jeweiligen Hub einloggst und den Kanal dort löschst."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Benutze dieses Formular zum Löschen eines Klons, wenn es den Hub nicht mehr gibt."; App::$strings["No such group"] = "Gruppe nicht gefunden"; App::$strings["No such channel"] = "Kanal nicht gefunden"; App::$strings["forum"] = "Forum"; @@ -561,8 +668,38 @@ App::$strings["Search Results For:"] = "Suchergebnisse für:"; App::$strings["Privacy group is empty"] = "Gruppe ist leer"; App::$strings["Privacy group: "] = "Gruppe:"; App::$strings["Invalid connection."] = "Ungültige Verbindung."; -App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; -App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Like/Dislike"] = "Mögen/Nicht mögen"; +App::$strings["This action is restricted to members."] = "Diese Aktion kann nur von Mitgliedern ausgeführt werden."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Um fortzufahren melde Dich bitte mit Deiner \$Projectname-ID an oder registriere Dich als neues \$Projectname-Mitglied."; +App::$strings["Invalid request."] = "Ungültige Anfrage."; +App::$strings["channel"] = "Kanal"; +App::$strings["thing"] = "Sache"; +App::$strings["Channel unavailable."] = "Kanal nicht vorhanden."; +App::$strings["Previous action reversed."] = "Die vorherige Aktion wurde rückgängig gemacht."; +App::$strings["photo"] = "Foto"; +App::$strings["status"] = "Status"; +App::$strings["event"] = "Termin"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s gefällt %2\$ss %3\$s nicht"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s stimmt %2\$ss %3\$s zu"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s lehnt %2\$ss %3\$s ab"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s enthält sich zu %2\$ss %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s teil"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s nimmt an %2\$ss %3\$s nicht teil"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s nimmt vielleicht an %2\$ss %3\$s teil"; +App::$strings["Action completed."] = "Aktion durchgeführt."; +App::$strings["Thank you."] = "Vielen Dank."; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Du hast %1$.0f von maximal %2$.0f erlaubten Kanälen eingerichtet."; +App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; +App::$strings["Create New"] = "Neu anlegen"; +App::$strings["Channel Manager"] = "Kanal-Manager"; +App::$strings["Current Channel"] = "Aktueller Kanal"; +App::$strings["Switch to one of your channels by selecting it."] = "Wechsle zu einem Deiner Kanäle, indem Du auf ihn klickst."; +App::$strings["Default Channel"] = "Standard Kanal"; +App::$strings["Make Default"] = "Zum Standard machen"; +App::$strings["%d new messages"] = "%d neue Nachrichten"; +App::$strings["%d new introductions"] = "%d neue Vorstellungen"; +App::$strings["Delegated Channel"] = "Delegierte Kanäle"; App::$strings["Unable to create element."] = "Element konnte nicht erstellt werden."; App::$strings["Unable to update menu element."] = "Kann Menü-Element nicht aktualisieren."; App::$strings["Unable to add menu element."] = "Kann Menü-Bestandteil nicht hinzufügen."; @@ -592,113 +729,30 @@ App::$strings["Menu item deleted."] = "Menü-Bestandteil gelöscht."; App::$strings["Menu item could not be deleted."] = "Menü-Bestandteil kann nicht gelöscht werden."; App::$strings["Edit Menu Element"] = "Bearbeite Menü-Bestandteil"; App::$strings["Link text"] = "Link Text"; -App::$strings["Name or caption"] = "Name oder Titel"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Beispiele: „Horst Weidinger“, „Lisa und ihr Meerschweinchen“, „Fußball“, „Segelflieger-Forum“ "; -App::$strings["Choose a short nickname"] = "Wähle einen kurzen Spitznamen"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Dein Spitzname wird verwendet, um eine leicht zu merkende Kanal-Adresse (ähnlich einer E-Mail-Adresse) zu erzeugen, die Du mit anderen austauschen kannst, z.B. nickname%s"; -App::$strings["Channel role and privacy"] = "Kanaltyp und Privatspäre-Einstellungen"; -App::$strings["Select a channel role with your privacy requirements."] = "Wähle einen passenden Kanaltyp mit den zugehörigen Voreinstellungen zur Privatsphäre."; -App::$strings["Read more about roles"] = "Mehr Informationen über Rollen"; -App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; -App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; -App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; -App::$strings["Discard"] = "Verwerfen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; -App::$strings["Profile Photos"] = "Profilfotos"; -App::$strings["Album not found."] = "Album nicht gefunden."; -App::$strings["Delete Album"] = "Album löschen"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager"; -App::$strings["Delete Photo"] = "Foto löschen"; -App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; -App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; -App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; -App::$strings["Upload Photos"] = "Fotos hochladen"; -App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; -App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; -App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; -App::$strings["Caption (optional):"] = "Beschriftung (optional):"; -App::$strings["Description (optional):"] = "Beschreibung (optional):"; -App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; -App::$strings["Contact Photos"] = "Kontakt-Bilder"; -App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; -App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; -App::$strings["View Photo"] = "Foto ansehen"; -App::$strings["Edit Album"] = "Album bearbeiten"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; -App::$strings["Photo not available"] = "Foto nicht verfügbar"; -App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; -App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; -App::$strings["Private Photo"] = "Privates Foto"; -App::$strings["View Full Size"] = "In voller Größe anzeigen"; -App::$strings["Remove"] = "Entfernen"; -App::$strings["Edit photo"] = "Foto bearbeiten"; -App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; -App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; -App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; -App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; -App::$strings["Caption"] = "Bildunterschrift"; -App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; -App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; -App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; -App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; -App::$strings["Please wait"] = "Bitte warten"; -App::$strings["This is you"] = "Das bist Du"; -App::$strings["Comment"] = "Kommentar"; -App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; -App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; -App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; -App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; -App::$strings["__ctx:title__ Attending"] = "Zusagen"; -App::$strings["__ctx:title__ Not attending"] = "Absagen"; -App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; -App::$strings["View all"] = "Alles anzeigen"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Gefällt mir", - 1 => "Gefällt mir", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Gefällt nicht", - 1 => "Gefällt nicht", -); -App::$strings["Photo Tools"] = "Fotowerkzeuge"; -App::$strings["In This Photo:"] = "Auf diesem Foto:"; -App::$strings["Map"] = "Karte"; -App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; -App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; -App::$strings["Close"] = "Schließen"; -App::$strings["View Album"] = "Album ansehen"; -App::$strings["Recent Photos"] = "Neueste Fotos"; -App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; -App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; -App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; -App::$strings["[today]"] = "[Heute]"; -App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; -App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; -App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; -App::$strings["OpenID protocol error. No ID returned."] = "OpenID Protokollfehler. Keine ID zurückgegeben."; -App::$strings["Login failed."] = "Login fehlgeschlagen."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; -App::$strings["Configuration Editor"] = "Konfigurationseditor"; -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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; -App::$strings["Layout updated."] = "Layout aktualisiert."; -App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; -App::$strings["Layout not found."] = "Layout nicht gefunden."; -App::$strings["Module Name:"] = "Modulname:"; -App::$strings["Layout Help"] = "Layout-Hilfe"; -App::$strings["Poke"] = "Anstupsen"; -App::$strings["Poke somebody"] = "Jemanden anstupsen"; -App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; -App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; -App::$strings["Recipient"] = "Empfänger"; -App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; -App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; -App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen Fehler zurück: %1\$s"; +App::$strings["Rating"] = "Bewertung"; +App::$strings["Website:"] = "Webseite:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; +App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; +App::$strings["No valid account found."] = "Kein gültiges Konto gefunden."; +App::$strings["Password reset request issued. Check your email."] = "Zurücksetzen des Passworts eingeleitet. Schau in Deine E-Mails."; +App::$strings["Site Member (%s)"] = "Nutzer (%s)"; +App::$strings["Password reset requested at %s"] = "Passwort-Rücksetzung auf %s angefordert"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen."; +App::$strings["Password Reset"] = "Zurücksetzen des Kennworts"; +App::$strings["Your password has been reset as requested."] = "Dein Passwort wurde wie angefordert neu erstellt."; +App::$strings["Your new password is"] = "Dein neues Passwort lautet"; +App::$strings["Save or copy your new password - and then"] = "Speichere oder kopiere Dein neues Passwort – und dann"; +App::$strings["click here to login"] = "Klicke hier, um dich anzumelden"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Dein Passwort kann unter Einstellungen nach einer erfolgreichen Anmeldung geändert werden."; +App::$strings["Your password has changed at %s"] = "Auf %s wurde Dein Passwort geändert"; +App::$strings["Forgot your Password?"] = "Kennwort vergessen?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib Deine E-Mail-Adresse ein, um Dein Passwort zurücksetzen zu lassen. Du erhältst dann weitere Anweisungen per E-Mail."; +App::$strings["Email Address"] = "E-Mail Adresse"; +App::$strings["Reset"] = "Zurücksetzen"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s ist %2\$s"; +App::$strings["Mood"] = "Laune"; +App::$strings["Set your current mood and tell your friends"] = "Wähle Deine aktuelle Stimmung und teile sie mit Deinen Freunden"; App::$strings["Profile not found."] = "Profil nicht gefunden."; App::$strings["Profile deleted."] = "Profil gelöscht."; App::$strings["Profile-"] = "Profil-"; @@ -713,6 +767,7 @@ App::$strings["Dislikes"] = "Gefällt nicht"; App::$strings["Work/Employment"] = "Arbeit/Anstellung"; App::$strings["Religion"] = "Religion"; App::$strings["Political Views"] = "Politische Ansichten"; +App::$strings["Gender"] = "Geschlecht"; App::$strings["Sexual Preference"] = "Sexuelle Orientierung"; App::$strings["Homepage"] = "Webseite"; App::$strings["Interests"] = "Hobbys/Interessen"; @@ -749,6 +804,7 @@ App::$strings["Who (if applicable)"] = "Wer (falls anwendbar)"; App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Beispiele: cathy123, Cathy Williams, cathy@example.com"; App::$strings["Since (date)"] = "Seit (Datum)"; App::$strings["Tell us about yourself"] = "Erzähle uns ein wenig von Dir"; +App::$strings["Homepage URL"] = "Homepage-URL"; App::$strings["Hometown"] = "Heimatort"; App::$strings["Political views"] = "Politische Ansichten"; App::$strings["Religious views"] = "Religiöse Ansichten"; @@ -765,311 +821,294 @@ App::$strings["Contact information and social networks"] = "Kontaktinformation u App::$strings["My other channels"] = "Meine anderen Kanäle"; App::$strings["Profile Image"] = "Profilfoto:"; App::$strings["Edit Profiles"] = "Profile bearbeiten"; -App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; -App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; -App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; -App::$strings["Profile"] = "Profil"; -App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; -App::$strings["Visible To"] = "Sichtbar für"; -App::$strings["Public Hubs"] = "Öffentliche Hubs"; -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."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; -App::$strings["Hub URL"] = "Hub-URL"; -App::$strings["Access Type"] = "Zugriffstyp"; -App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; -App::$strings["Stats"] = "Statistiken"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Bewertungen"; -App::$strings["Rate"] = "Bewerten"; -App::$strings["Website:"] = "Webseite:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanal [%s] (auf diesem Server noch unbekannt)"; -App::$strings["Rating (this information is public)"] = "Bewertung (öffentlich sichtbar)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Optional kannst du deine Bewertung erklären (öffentlich sichtbar)"; -App::$strings["No ratings"] = "Keine Bewertungen"; -App::$strings["Rating: "] = "Bewertung: "; -App::$strings["Website: "] = "Webseite: "; -App::$strings["Description: "] = "Beschreibung: "; -App::$strings["Theme settings updated."] = "Theme-Einstellungen aktualisiert."; -App::$strings["# Accounts"] = "Anzahl der Konten"; -App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; -App::$strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; -App::$strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; -App::$strings["# Channels"] = "Anzahl der Kanäle"; -App::$strings["# primary"] = "Anzahl der primären Kanäle"; -App::$strings["# clones"] = "Anzahl der Klone"; -App::$strings["Message queues"] = "Nachrichten-Warteschlangen"; -App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden"; -App::$strings["Administration"] = "Administration"; -App::$strings["Summary"] = "Zusammenfassung"; -App::$strings["Registered accounts"] = "Registrierte Konten"; -App::$strings["Pending registrations"] = "Ausstehende Registrierungen"; -App::$strings["Registered channels"] = "Registrierte Kanäle"; -App::$strings["Active plugins"] = "Aktive Plug-Ins"; -App::$strings["Version"] = "Version"; -App::$strings["Repository version (master)"] = "Repository-Version (master)"; -App::$strings["Repository version (dev)"] = "Repository-Version (dev)"; -App::$strings["Site settings updated."] = "Site-Einstellungen aktualisiert."; -App::$strings["Default"] = "Standard"; -App::$strings["mobile"] = "mobil"; -App::$strings["experimental"] = "experimentell"; -App::$strings["unsupported"] = "nicht unterstützt"; -App::$strings["Yes - with approval"] = "Ja - mit Zustimmung"; -App::$strings["My site is not a public server"] = "Mein Server ist kein öffentlicher Server"; -App::$strings["My site has paid access only"] = "Meine Seite hat nur bezahlten Zugriff"; -App::$strings["My site has free access only"] = "Meine Seite hat nur freien Zugriff"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades"; -App::$strings["Site"] = "Seite"; -App::$strings["Registration"] = "Registrierung"; -App::$strings["File upload"] = "Dateiupload"; -App::$strings["Policies"] = "Richtlinien"; -App::$strings["Advanced"] = "Fortgeschritten"; -App::$strings["Site name"] = "Seitenname"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Administrator-Informationen"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden."; -App::$strings["System language"] = "System-Sprache"; -App::$strings["System theme"] = "System-Theme"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standard-System-Theme – kann durch Nutzerprofile überschieben werden – Theme-Einstellungen ändern"; -App::$strings["Mobile system theme"] = "Mobile System-Theme:"; -App::$strings["Theme for mobile devices"] = "Theme für mobile Geräte"; -App::$strings["Allow Feeds as Connections"] = "Feeds als Verbindungen erlauben"; -App::$strings["(Heavy system resource usage)"] = "(führt zu hoher Systemlast)"; -App::$strings["Maximum image size"] = "Maximale Bildgröße"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)."; -App::$strings["Does this site allow new member registration?"] = "Erlaubt dieser Server die Registrierung neuer Nutzer?"; -App::$strings["Invitation only"] = "Nur mit Einladung"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Was ist die passendste Beschreibung der Konten auf diesem Hub?"; -App::$strings["Register text"] = "Registrierungstext"; -App::$strings["Will be displayed prominently on the registration page."] = "Wird gut sichtbar auf der Registrierungs-Seite angezeigt."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen."; -App::$strings["Preserve site homepage URL"] = "Homepage-URL schützen"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten."; -App::$strings["Accounts abandoned after x days"] = "Konten gelten nach X Tagen als unbenutzt"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit."; -App::$strings["Allowed friend domains"] = "Erlaubte Domains für Kontakte"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Allowed email domains"] = "Erlaubte Domains für E-Mails"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Liste der Domains, die für E-Mail-Adressen bei der Registrierung erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben."; -App::$strings["Not allowed email domains"] = "Nicht erlaubte Domains für E-Mails"; -App::$strings["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."] = "Domains in E-Mail-Adressen, die keine Erlaubnis erhalten, sich auf Deinem Hub zu registrieren. Mehrere Domains können durch Kommas getrennt werden. Platzhalter (*/?) sind möglich. Keine Eingabe bedeutet keine Einschränkung, unabhängig davon, ob unter erlaubte Domains etwas eingegeben wurde."; -App::$strings["Verify Email Addresses"] = "E-Mail-Adressen überprüfen"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)."; -App::$strings["Force publish"] = "Veröffentlichung erzwingen"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen."; -App::$strings["Import Public Streams"] = "Öffentliche Beiträge importieren"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert."; -App::$strings["Login on Homepage"] = "Log-in auf der Startseite"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden."; -App::$strings["Enable context help"] = "Kontext-Hilfe aktivieren"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird."; -App::$strings["Directory Server URL"] = "Verzeichnisserver-URL"; -App::$strings["Default directory server"] = "Standard-Verzeichnisserver"; -App::$strings["Proxy user"] = "Proxy Benutzer"; -App::$strings["Proxy URL"] = "Proxy URL"; -App::$strings["Network timeout"] = "Netzwerk-Timeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)."; -App::$strings["Delivery interval"] = "Auslieferung Intervall"; -App::$strings["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."] = "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server."; -App::$strings["Deliveries per process"] = "Zustellungen pro Prozess"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5."; -App::$strings["Poll interval"] = "Abfrageintervall"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet."; -App::$strings["Maximum Load Average"] = "Maximales Load Average"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50"; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen"; -App::$strings["0 for no expiration of imported content"] = "0 = keine Löschung importierter Inhalte"; -App::$strings["Off"] = "Aus"; -App::$strings["On"] = "An"; -App::$strings["Lock feature %s"] = "Blockiere die Funktion %s"; -App::$strings["Manage Additional Features"] = "Zusätzliche Funktionen verwalten"; -App::$strings["No server found"] = "Kein Server gefunden"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "für Kanal"; -App::$strings["on server"] = "auf Server"; -App::$strings["Server"] = "Server"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Standardmäßig wird ungefiltertes HTML in eingebetteten Inhalten zugelassen. Das ist prinzipiell unsicher."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "Die empfohlene Einstellung ist, ungefiltertes HTML nur von den nachfolgenden Webseiten zu erlauben:"; -App::$strings["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/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Alle anderen eingebetteten Inhalte werden gefiltert, es sei denn, eingebettete Inhalte von einer bestimmten Seite sind explizit blockiert."; -App::$strings["Security"] = "Sicherheit"; -App::$strings["Block public"] = "Öffentlichen Zugriff blockieren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Blockiere den öffentlichen Zugriff auf alle ansonsten öffentlichen persönlichen Seiten dieser Website, sofern ein Besucher nicht angemeldet ist."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Setze den \"Transport Security\" HTTP Header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Setze den \"Content Security Policy\" HTTP Header"; -App::$strings["Allow communications only from these sites"] = "Kommunikation nur von diesen Seiten erlauben"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Ein Eintrag pro Zeile. Lasse das Feld leer, um Kommunikation grundlegend von überall her zu erlauben."; -App::$strings["Block communications from these sites"] = "Kommunikation von diesen Seiten blockieren"; -App::$strings["Allow communications only from these channels"] = "Kommunikation nur von diesen Kanälen erlauben"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Ein Kanal (hash) pro Zeile. Leerlassen um jeden Kanal zuzulassen. "; -App::$strings["Block communications from these channels"] = "Kommunikation von folgenden Kanälen blockieren"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Erlaube Einbettungen nur von sicheren (SSL) Webseiten und Links."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Erlaube Einbettung von Inhalten mit ungefiltertem HTML nur von diesen Domains"; -App::$strings["One site per line. By default embedded content is filtered."] = "Eine Website/Domain pro Zeile. Standardmäßig wird eingebetteter Inhalt gefiltert."; -App::$strings["Block embedded HTML from these domains"] = "Eingebettete HTML Inhalte von diesen Seiten blockieren"; -App::$strings["Update has been marked successful"] = "Update wurde als erfolgreich markiert"; -App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle."; -App::$strings["Update %s was successfully applied."] = "Update %s wurde erfolgreich ausgeführt."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s lieferte keinen Rückgabewert. Erfolg unbekannt."; -App::$strings["Update function %s could not be found."] = "Update-Funktion %s konnte nicht gefunden werden."; -App::$strings["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; -App::$strings["Failed Updates"] = "Fehlgeschlagene Aktualisierungen"; -App::$strings["Mark success (if update was manually applied)"] = "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)"; -App::$strings["Attempt to execute this update step automatically"] = "Versuche, diesen Updateschritt automatisch auszuführen"; -App::$strings["Queue Statistics"] = "Warteschlangenstatistiken"; -App::$strings["Total Entries"] = "Einträge insgesamt"; -App::$strings["Priority"] = "Priorität"; -App::$strings["Destination URL"] = "Ziel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markieren"; -App::$strings["Empty queue for this hub"] = "Warteschlange für diesen Hub leeren"; -App::$strings["Last known contact"] = "Letzter Kontakt"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s Konto blockiert/freigegeben", - 1 => "%s Konten blockiert/freigegeben", -); -App::$strings["%s account deleted"] = array( - 0 => "%s Konto gelöscht", - 1 => "%s Konten gelöscht", -); -App::$strings["Account not found"] = "Konto nicht gefunden"; -App::$strings["Account '%s' deleted"] = "Konto '%s' gelöscht"; -App::$strings["Account '%s' blocked"] = "Konto '%s' blockiert"; -App::$strings["Account '%s' unblocked"] = "Konto '%s' freigegeben"; -App::$strings["Accounts"] = "Konten"; -App::$strings["select all"] = "Alle auswählen"; -App::$strings["Registrations waiting for confirm"] = "Registrierungen warten auf Bestätigung"; -App::$strings["Request date"] = "Antragsdatum"; -App::$strings["No registrations."] = "Keine Registrierungen."; -App::$strings["Deny"] = "Verweigern"; -App::$strings["All Channels"] = "Alle Kanäle"; -App::$strings["Register date"] = "Registrierungs-Datum"; -App::$strings["Last login"] = "Letzte Anmeldung"; -App::$strings["Expires"] = "Verfällt"; -App::$strings["Service Class"] = "Service-Klasse"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Die ausgewählten Konten werden gelöscht!\\n\\nAlles, was diese Konten auf diesem Hub veröffentlicht haben, wird endgültig gelöscht werden!\\n\\nBist du dir sicher?"; -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?"] = "Das Konto {0} wird gelöscht!\\n\\nAlles, was dieses Konto auf diesem Hub veröffentlicht hat, wird endgültig gelöscht werden!\\n\\nBist Du sicher?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s Kanal gesperrt/freigegeben", - 1 => "%s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Code für %s Kanal gesperrt/freigegeben", - 1 => "Code für %s Kanäle gesperrt/freigegeben", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s Kanal gelöscht", - 1 => "%s Kanäle gelöscht", -); -App::$strings["Channel not found"] = "Kanal nicht gefunden"; -App::$strings["Channel '%s' deleted"] = "Kanal '%s' gelöscht"; -App::$strings["Channel '%s' censored"] = "Kanal '%s' gesperrt"; -App::$strings["Channel '%s' uncensored"] = "Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code allowed"] = "Code für Kanal '%s' freigegeben"; -App::$strings["Channel '%s' code disallowed"] = "Code für Kanal '%s' gesperrt"; -App::$strings["Channels"] = "Kanäle"; -App::$strings["Censor"] = "Sperren"; -App::$strings["Uncensor"] = "Freigeben"; -App::$strings["Allow Code"] = "Code erlauben"; -App::$strings["Disallow Code"] = "Code sperren"; -App::$strings["Channel"] = "Kanal"; -App::$strings["UID"] = "UID"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Alle ausgewählten Kanäle werden gelöscht!\\n\\nAlles was von diesen Kanälen auf diesem Server geschrieben wurde, wird dauerhaft gelöscht!\\n\\nBist Du sicher?"; -App::$strings["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?"] = "Der Kanal {0} wird gelöscht!\\n\\nAlles was von diesem Kanal auf diesem Server geschrieben wurde, wird gelöscht!\\n\\nBist Du sicher?"; -App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; -App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; -App::$strings["Disable"] = "Deaktivieren"; -App::$strings["Enable"] = "Aktivieren"; -App::$strings["Plugins"] = "Plug-Ins"; -App::$strings["Toggle"] = "Umschalten"; -App::$strings["Settings"] = "Einstellungen"; -App::$strings["Author: "] = "Autor: "; -App::$strings["Maintainer: "] = "Betreuer:"; -App::$strings["Minimum project version: "] = "Minimale Version des Projekts:"; -App::$strings["Maximum project version: "] = "Maximale Version des Projekts:"; -App::$strings["Minimum PHP version: "] = "Minimale PHP Version:"; -App::$strings["Requires: "] = "Benötigt:"; -App::$strings["Disabled - version incompatibility"] = "Abgeschaltet - Versionsinkompatibilität"; -App::$strings["Enter the public git repository URL of the plugin repo."] = "Gib die öffentliche Git-Repository-URL des Plugin-Repository an."; -App::$strings["Plugin repo git URL"] = "Plugin-Repository Git URL"; -App::$strings["Custom repo name"] = "Benutzerdefinierter Repository-Name"; -App::$strings["(optional)"] = "(optional)"; -App::$strings["Download Plugin Repo"] = "Plugin-Repository herunterladen"; -App::$strings["Install new repo"] = "Neues Repository installieren"; -App::$strings["Install"] = "Installieren"; -App::$strings["Manage Repos"] = "Repositorien verwalten"; -App::$strings["Installed Plugin Repositories"] = "Installierte Plugin-Repositorien"; -App::$strings["Install a New Plugin Repository"] = "Ein neues Plugin-Repository installieren"; -App::$strings["Update"] = "Aktualisieren"; -App::$strings["Switch branch"] = "Zweig/Branch wechseln"; -App::$strings["No themes found."] = "Keine Theme gefunden."; -App::$strings["Screenshot"] = "Bildschirmfoto"; -App::$strings["Themes"] = "Themes"; -App::$strings["[Experimental]"] = "[Experimentell]"; -App::$strings["[Unsupported]"] = "[Nicht unterstützt]"; -App::$strings["Log settings updated."] = "Protokoll-Einstellungen aktualisiert."; -App::$strings["Logs"] = "Protokolle"; -App::$strings["Clear"] = "Leeren"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "Protokolldatei"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Muss für den Web-Server schreibbar sein. Relativ zum Hubzilla-Stammverzeichnis."; -App::$strings["Log level"] = "Protokollstufe"; -App::$strings["New Profile Field"] = "Neues Profilfeld"; -App::$strings["Field nickname"] = "Kurzname für das Feld"; -App::$strings["System name of field"] = "Systemname des Feldes"; -App::$strings["Input type"] = "Art des Inhalts"; -App::$strings["Field Name"] = "Feldname"; -App::$strings["Label on profile pages"] = "Bezeichnung auf Profilseiten"; -App::$strings["Help text"] = "Hilfetext"; -App::$strings["Additional info (optional)"] = "Zusätzliche Informationen (optional)"; -App::$strings["Field definition not found"] = "Feld-Definition nicht gefunden"; -App::$strings["Edit Profile Field"] = "Profilfeld bearbeiten"; -App::$strings["Profile Fields"] = "Profil Felder"; -App::$strings["Basic Profile Fields"] = "Notwendige Profil Felder"; -App::$strings["Advanced Profile Fields"] = "Erweiterte Profil Felder"; -App::$strings["(In addition to basic fields)"] = "(zusätzlich zu notwendige Felder)"; -App::$strings["All available fields"] = "Alle verfügbaren Felder"; -App::$strings["Custom Fields"] = "Benutzerdefinierte Felder"; -App::$strings["Create Custom Field"] = "Erstelle benutzerdefiniertes Feld"; -App::$strings["App installed."] = "App installiert."; -App::$strings["Malformed app."] = "Fehlerhafte App."; -App::$strings["Embed code"] = "Code einbetten"; -App::$strings["Edit App"] = "App bearbeiten"; -App::$strings["Create App"] = "App erstellen"; -App::$strings["Name of app"] = "Name der App"; -App::$strings["Location (URL) of app"] = "Ort (URL) der App"; -App::$strings["Photo icon URL"] = "URL zum Icon"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 Pixel – optional"; -App::$strings["Categories (optional, comma separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; -App::$strings["Version ID"] = "Versions-ID"; -App::$strings["Price of app"] = "Preis der App"; -App::$strings["Location (URL) to purchase app"] = "Ort (URL), um die App zu kaufen"; +App::$strings["No more system notifications."] = "Keine System-Benachrichtigungen mehr."; +App::$strings["System Notifications"] = "System-Benachrichtigungen"; +App::$strings["Profile Match"] = "Profil-Übereinstimmungen"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Keine Schlüsselwörter für den Abgleich gefunden. Bitte füge Schlüsselwörter zu Deinem Standardprofil hinzu."; +App::$strings["is interested in:"] = "interessiert sich für:"; +App::$strings["No matches"] = "Keine Übereinstimmungen"; +App::$strings["Authorize application connection"] = "Zugriff für die Anwendung autorisieren"; +App::$strings["Return to your app and insert this Security Code:"] = "Gehen Sie zu Ihrer App zurück und tragen Sie diesen Sicherheitscode ein:"; +App::$strings["Please login to continue."] = "Zum Weitermachen, bitte einloggen."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Möchtest Du dieser Anwendung erlauben, Deine Nachrichten und Kontakte abzurufen und/oder neue Nachrichten für Dich zu erstellen?"; +App::$strings["Calendar entries imported."] = "Kalendereinträge wurden importiert."; +App::$strings["No calendar entries found."] = "Keine Kalendereinträge gefunden."; +App::$strings["Event can not end before it has started."] = "Termin-Ende liegt vor dem Beginn."; +App::$strings["Unable to generate preview."] = "Vorschau konnte nicht erzeugt werden."; +App::$strings["Event title and start time are required."] = "Titel und Startzeit des Termins sind erforderlich."; +App::$strings["Event not found."] = "Termin nicht gefunden."; +App::$strings["Edit event title"] = "Termintitel bearbeiten"; +App::$strings["Event title"] = "Termintitel"; +App::$strings["Categories (comma-separated list)"] = "Kategorien (Kommagetrennte Liste)"; +App::$strings["Edit Category"] = "Kategorie bearbeiten"; +App::$strings["Category"] = "Kategorie"; +App::$strings["Edit start date and time"] = "Startdatum und -zeit bearbeiten"; +App::$strings["Start date and time"] = "Startdatum und -zeit"; +App::$strings["Finish date and time are not known or not relevant"] = "Enddatum und -zeit sind unbekannt oder irrelevant"; +App::$strings["Edit finish date and time"] = "Enddatum und -zeit bearbeiten"; +App::$strings["Finish date and time"] = "Enddatum und -zeit"; +App::$strings["Adjust for viewer timezone"] = "An die Zeitzone des Betrachters anpassen"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Wichtig für Veranstaltungen die an bestimmten Orten stattfinden. Nicht sinnvoll für globale Feiertage / Ferien."; +App::$strings["Edit Description"] = "Beschreibung bearbeiten"; +App::$strings["Edit Location"] = "Ort bearbeiten"; +App::$strings["Share this event"] = "Den Termin teilen"; +App::$strings["Permission settings"] = "Berechtigungs-Einstellungen"; +App::$strings["Advanced Options"] = "Weitere Optionen"; +App::$strings["l, F j"] = "l, j. F"; +App::$strings["Edit event"] = "Termin bearbeiten"; +App::$strings["Delete event"] = "Termin löschen"; +App::$strings["Link to Source"] = "Link zur Quelle"; +App::$strings["calendar"] = "Kalender"; +App::$strings["Edit Event"] = "Termin bearbeiten"; +App::$strings["Create Event"] = "Termin anlegen"; +App::$strings["Previous"] = "Voriges"; +App::$strings["Next"] = "Nächste"; +App::$strings["Export"] = "Exportieren"; +App::$strings["Month"] = "Monat"; +App::$strings["Week"] = "Woche"; +App::$strings["Day"] = "Tag"; +App::$strings["Today"] = "Heute"; +App::$strings["Event removed"] = "Termin gelöscht"; +App::$strings["Failed to remove event"] = "Termin konnte nicht gelöscht werden"; +App::$strings["Unable to locate original post."] = "Originalbeitrag nicht gefunden."; +App::$strings["Empty post discarded."] = "Leeren Beitrag verworfen."; +App::$strings["Executable content type not permitted to this channel."] = "Ausführbarer Content-Typ ist für diesen Kanal nicht freigegeben."; +App::$strings["Duplicate post suppressed."] = "Doppelter Beitrag unterdrückt."; +App::$strings["System error. Post not saved."] = "Systemfehler. Beitrag nicht gespeichert."; +App::$strings["Unable to obtain post information from database."] = "Beitragsinformationen können nicht aus der Datenbank abgerufen werden."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht."; +App::$strings["Create Channel"] = "Einen neuen Kanal anlegen"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Ein Kanal ist Deine Identität in diesem Netzwerk. Er kann eine Person, ein Blog oder ein Forum repräsentieren, nur um ein paar Beispiele zu nennen. Kanäle können Verbindungen miteinander eingehen, um Informationen zu teilen, jeweils basierend auf sehr detaillierten Berechtigungseinstellungen."; +App::$strings["or import an existing channel from another location."] = "oder importiere einen bestehenden Kanal von einem anderen Server."; +App::$strings["sent you a private message"] = "hat Dir eine private Nachricht geschickt"; +App::$strings["added your channel"] = "hat deinen Kanal hinzugefügt"; +App::$strings["g A l F d"] = "l, d. F, G:i \\U\\h\\r"; +App::$strings["[today]"] = "[Heute]"; +App::$strings["posted an event"] = "hat einen Termin veröffentlicht"; +App::$strings["Invalid request identifier."] = "Ungültiger Anfrage-Identifikator."; +App::$strings["Discard"] = "Verwerfen"; +App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; +App::$strings["Poke"] = "Anstupsen"; +App::$strings["Poke somebody"] = "Jemanden anstupsen"; +App::$strings["Poke/Prod"] = "Anstupsen/Knuffen"; +App::$strings["Poke, prod or do other things to somebody"] = "Jemanden anstupsen, knuffen oder sonstiges"; +App::$strings["Recipient"] = "Empfänger"; +App::$strings["Choose what you wish to do to recipient"] = "Wähle, was Du mit dem/r Empfänger/in tun willst"; +App::$strings["Make this post private"] = "Diesen Beitrag privat machen"; +App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; +App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; +App::$strings["Could not create table."] = "Konnte Tabelle nicht erstellen."; +App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; +App::$strings["System check"] = "Systemprüfung"; +App::$strings["Check again"] = "Nochmal prüfen"; +App::$strings["Database connection"] = "Datenbankverbindung"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; +App::$strings["Database Server Name"] = "Datenbankservername"; +App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1"; +App::$strings["Database Port"] = "Datenbankport"; +App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; +App::$strings["Database Login Name"] = "Datenbank-Benutzername"; +App::$strings["Database Login Password"] = "Datenbank-Passwort"; +App::$strings["Database Name"] = "Datenbankname"; +App::$strings["Database Type"] = "Datenbanktyp"; +App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; +App::$strings["Website URL"] = "Webseiten-URL"; +App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; +App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; +App::$strings["Site settings"] = "Seiteneinstellungen"; +App::$strings["PHP version 5.5 or greater is required."] = "PHP-Version 5.5 oder höher ist erforderlich."; +App::$strings["PHP version"] = "PHP-Version"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; +App::$strings["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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; +App::$strings["PHP executable path"] = "PHP-Pfad zu ausführbarer Datei"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; +App::$strings["Command line PHP"] = "PHP-Befehlszeile"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; +App::$strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["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."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; +App::$strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; +App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; +App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel erzeugen"; +App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul"; +App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; +App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; +App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; +App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; +App::$strings["xml PHP module"] = "xml-PHP-Modul"; +App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; +App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; +App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; +App::$strings["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."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; +App::$strings["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."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "\$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; +App::$strings["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."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses."; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; +App::$strings["%s is writable"] = "%s ist beschreibbar"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Diese Software benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Web-Server benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Hubzilla-Stammverzeichnisses"; +App::$strings["store is writable"] = "store ist schreibbar"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; +App::$strings["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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; +App::$strings["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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; +App::$strings["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."] = "Wenn Du sicher bist, dass das Zertifikat gültig und von einer vertrauenswürdigen Zertifizierungsstelle signiert ist, prüfe auf ggf. noch zu installierende Zwischenzertifikate (intermediate). Diese werden nicht unbedingt von Browsern benötigt, aber sehr wohl für die Kommunikation zwischen Servern."; +App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; +App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; +App::$strings["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."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; +App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; +App::$strings["

    What next

    "] = "

    Was als Nächstes

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; +App::$strings["Unable to find your hub."] = "Konnte Deinen Server nicht finden."; +App::$strings["Post successful."] = "Veröffentlichung erfolgreich."; +App::$strings["Invalid profile identifier."] = "Ungültiger Profil-Identifikator"; +App::$strings["Profile Visibility Editor"] = "Profil-Sichtbarkeits-Editor"; +App::$strings["Profile"] = "Profil"; +App::$strings["Click on a contact to add or remove."] = "Klicke auf einen Kontakt, um ihn hinzuzufügen oder zu entfernen."; +App::$strings["Visible To"] = "Sichtbar für"; +App::$strings["This setting requires special processing and editing has been blocked."] = "Diese Einstellung erfordert eine besondere Verarbeitung und ist blockiert."; +App::$strings["Configuration Editor"] = "Konfigurationseditor"; +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."] = "Warnung: Einige Einstellungen können Deinen Kanal funktionsunfähig machen. Bitte verlasse diese Seite, es sei denn Du bist vertraut damit, wie dieses Feature korrekt verwendet wird."; +App::$strings["Apps"] = "Apps"; +App::$strings["Version %s"] = "Version %s"; +App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; +App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; +App::$strings["Tag: "] = "Schlagwort: "; +App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; +App::$strings["Current load average: "] = "Aktuelles Load Average:"; +App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; +App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; +App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; +App::$strings["Site Administrators"] = "Administratoren"; +App::$strings["Blocks"] = "Blöcke"; +App::$strings["Block Title"] = "Titel des Blocks"; +App::$strings["Layouts"] = "Layouts"; +App::$strings["Help"] = "Hilfe"; +App::$strings["Comanche page description language help"] = "Hilfe zur Comanche-Seitenbeschreibungssprache"; +App::$strings["Layout Description"] = "Layout-Beschreibung"; +App::$strings["Download PDL file"] = "PDL-Datei herunterladen"; +App::$strings["Profile Photos"] = "Profilfotos"; +App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird."; +App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Permissions denied."] = "Berechtigung verweigert."; +App::$strings["Import"] = "Import"; +App::$strings["No channel."] = "Kein Kanal."; +App::$strings["Common connections"] = "Gemeinsame Verbindungen"; +App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; +App::$strings["network"] = "Netzwerk"; +App::$strings["RSS"] = "RSS"; +App::$strings["Public Hubs"] = "Öffentliche Hubs"; +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."] = "Die hier aufgeführten Hubs sind öffentlich und erlauben die Registrierung im \$Projectname Netzwerk. Alle Hubs dieses Netzwerks sind miteinander verbunden, so dass die Mitgliedschaft auf einem Hub die Verbindung zu beliebigen Seiten und Kanälen auf anderen Hubs ermöglicht. Es könnte sein, dass einige dieser Hubs kostenpflichtig sind oder abgestufte, je nach Umfang kostenpflichtige Mitgliedschaften anbieten. Auf den Seiten der einzelnen Hubs könnten jeweils nähere Informationen dazu stehen."; +App::$strings["Hub URL"] = "Hub-URL"; +App::$strings["Access Type"] = "Zugriffstyp"; +App::$strings["Registration Policy"] = "Registrierungsrichtlinien"; +App::$strings["Stats"] = "Statistiken"; +App::$strings["Software"] = "Software"; +App::$strings["Rate"] = "Bewerten"; +App::$strings["Layout updated."] = "Layout aktualisiert."; +App::$strings["Feature disabled."] = "Funktion deaktiviert."; +App::$strings["Edit System Page Description"] = "Systemseitenbeschreibung bearbeiten"; +App::$strings["Layout not found."] = "Layout nicht gefunden."; +App::$strings["Module Name:"] = "Modulname:"; +App::$strings["Layout Help"] = "Layout-Hilfe"; +App::$strings["Could not access contact record."] = "Konnte nicht auf den Kontakteintrag zugreifen."; +App::$strings["Could not locate selected profile."] = "Gewähltes Profil nicht gefunden."; +App::$strings["Connection updated."] = "Verbindung aktualisiert."; +App::$strings["Failed to update connection record."] = "Konnte den Verbindungseintrag nicht aktualisieren."; +App::$strings["is now connected to"] = "ist jetzt verbunden mit"; +App::$strings["Could not access address book record."] = "Konnte nicht auf den Adressbuch-Eintrag zugreifen."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Aktualisierung fehlgeschlagen – der Kanal ist im Moment nicht erreichbar."; +App::$strings["Unable to set address book parameters."] = "Konnte die Adressbuch-Parameter nicht setzen."; +App::$strings["Connection has been removed."] = "Verbindung wurde gelöscht."; +App::$strings["View Profile"] = "Profil ansehen"; +App::$strings["View %s's profile"] = "%ss Profil ansehen"; +App::$strings["Refresh Permissions"] = "Zugriffsrechte neu laden"; +App::$strings["Fetch updated permissions"] = "Aktualisierte Zugriffsrechte abfragen"; +App::$strings["Recent Activity"] = "Kürzliche Aktivitäten"; +App::$strings["View recent posts and comments"] = "Betrachte die neuesten Beiträge und Kommentare"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Jegliche Kommunikation mit dieser Verbindung blockieren/zulassen"; +App::$strings["This connection is blocked!"] = "Die Verbindung ist geblockt!"; +App::$strings["Unignore"] = "Nicht ignorieren"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Jegliche eingehende Kommunikation von dieser Verbindung ignorieren/zulassen"; +App::$strings["This connection is ignored!"] = "Die Verbindung wird ignoriert!"; +App::$strings["Unarchive"] = "Aus Archiv zurückholen"; +App::$strings["Archive"] = "Archivieren"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Verbindung archivieren/aus dem Archiv zurückholen (Archiv = Kanal als erloschen markieren, aber die Beiträge behalten)"; +App::$strings["This connection is archived!"] = "Die Verbindung ist archiviert!"; +App::$strings["Unhide"] = "Wieder sichtbar machen"; +App::$strings["Hide"] = "Verstecken"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Diese Verbindung vor anderen Verbindungen verstecken/zeigen"; +App::$strings["This connection is hidden!"] = "Die Verbindung ist versteckt!"; +App::$strings["Delete this connection"] = "Verbindung löschen"; +App::$strings["Me"] = "Ich"; +App::$strings["Family"] = "Familie"; +App::$strings["Friends"] = "Freunde"; +App::$strings["Acquaintances"] = "Bekannte"; +App::$strings["Approve this connection"] = "Verbindung genehmigen"; +App::$strings["Accept connection to allow communication"] = "Akzeptiere die Verbindung, um Kommunikation zu ermöglichen"; +App::$strings["Set Affinity"] = "Beziehung festlegen"; +App::$strings["Set Profile"] = "Profil festlegen"; +App::$strings["Set Affinity & Profile"] = "Beziehung und Profile festlegen"; +App::$strings["none"] = "Keine"; +App::$strings["Connection Default Permissions"] = "Standardzugriffsrechte für neue Verbindungen:"; +App::$strings["Connection: %s"] = "Verbindung: %s"; +App::$strings["Apply these permissions automatically"] = "Diese Berechtigungen automatisch anwenden"; +App::$strings["Connection requests will be approved without your interaction"] = "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist."; +App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; +App::$strings["Available locations:"] = "Verfügbare Klone:"; +App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet."; +App::$strings["Connection Tools"] = "Verbindungswerkzeuge"; +App::$strings["Slide to adjust your degree of friendship"] = "Verschieben, um den Grad der Freundschaft zu einzustellen"; +App::$strings["Slide to adjust your rating"] = "Verschieben, um Deine Bewertung einzustellen"; +App::$strings["Optionally explain your rating"] = "Optional kannst Du Deine Bewertung begründen"; +App::$strings["Custom Filter"] = "Benutzerdefinierter Filter"; +App::$strings["Only import posts with this text"] = "Nur Beiträge mit diesem Text importieren"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren."; +App::$strings["Do not import posts with this text"] = "Beiträge mit diesem Text nicht importieren"; +App::$strings["This information is public!"] = "Diese Information ist öffentlich!"; +App::$strings["Connection Pending Approval"] = "Verbindung wartet auf Bestätigung"; +App::$strings["inherited"] = "geerbt"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird."; +App::$strings["Their Settings"] = "Deren Einstellungen"; +App::$strings["My Settings"] = "Meine Einstellungen"; +App::$strings["Individual Permissions"] = "Individuelle Zugriffsrechte"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals vererbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung und können hier nicht verändert werden."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen."; +App::$strings["Last update:"] = "Letzte Aktualisierung:"; App::$strings["Select a bookmark folder"] = "Lesezeichenordner wählen"; App::$strings["Save Bookmark"] = "Lesezeichen speichern"; App::$strings["URL of bookmark"] = "URL des Lesezeichens"; App::$strings["Or enter new bookmark folder name"] = "Oder gib einen neuen Namen für den Lesezeichenordner ein"; -App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximale Anzahl täglicher Neuanmeldungen erreicht. Bitte versuche es morgen noch einmal."; -App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen."; -App::$strings["Passwords do not match."] = "Passwörter stimmen nicht überein."; -App::$strings["Registration successful. Please check your email for validation instructions."] = "Registrierung erfolgreich. Eine E-Mail mit weiteren Anweisungen wurde an Dich gesendet."; -App::$strings["Your registration is pending approval by the site owner."] = "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden."; -App::$strings["Your registration can not be processed."] = "Deine Registrierung konnte nicht verarbeitet werden."; -App::$strings["Registration on this hub is disabled."] = "Die Registrierung auf diesem Hub ist nicht möglich."; -App::$strings["Registration on this hub is by approval only."] = "Eine Registrierung auf diesem Hub erfordert die Zustimmung durch den Administrator."; -App::$strings["Register at another affiliated hub."] = "Registriere Dich auf einem der anderen verbundenen Hubs."; -App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal."; -App::$strings["Terms of Service"] = "Nutzungsbedingungen"; -App::$strings["I accept the %s for this website"] = "Ich akzeptiere die %s für diese Webseite"; -App::$strings["I am over 13 years of age and accept the %s for this website"] = "Ich bin älter als 13 Jahre und akzeptiere die %s dieser Webseite"; -App::$strings["Your email address"] = "Ihre E-Mail Adresse"; -App::$strings["Choose a password"] = "Passwort"; -App::$strings["Please re-enter your password"] = "Bitte gib Dein Passwort noch einmal ein"; -App::$strings["Please enter your invitation code"] = "Bitte trage Deinen Einladungs-Code ein"; -App::$strings["no"] = "nein"; -App::$strings["yes"] = "ja"; -App::$strings["Membership on this site is by invitation only."] = "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich."; -App::$strings["Register"] = "Registrieren"; -App::$strings["Proceed to create your first channel"] = "Fortfahren und Deinen ersten Kanal anlegen"; +App::$strings["This site is not a directory server"] = "Diese Webseite ist kein Verzeichnisserver"; +App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; +App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; +App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; +App::$strings["Authenticate"] = "Authentifizieren"; App::$strings["Please login."] = "Bitte melde dich an."; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Das Löschen von Konten innerhalb 48 Stunden nachdem deren Passwort geändert wurde ist nicht erlaubt."; App::$strings["Remove This Account"] = "Dieses Konto löschen"; @@ -1086,75 +1125,211 @@ App::$strings["This channel will be completely removed from the network. "] = "D App::$strings["Remove this channel and all its clones from the network"] = "Lösche diesen Kanal und all seine Klone aus dem Netzwerk"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk"; App::$strings["Remove Channel"] = "Kanal löschen"; -App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Wir haben ein Problem mit der OpenID festgestellt, mit der Du Dich anmelden wolltest. Bitte überprüfe sie noch einmal."; -App::$strings["The error message was:"] = "Die Fehlermeldung war:"; -App::$strings["Authentication failed."] = "Authentifizierung fehlgeschlagen."; -App::$strings["Remote Authentication"] = "Entfernte Authentifizierung"; -App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Deine Kanal-Adresse (z. B. channel@example.com)"; -App::$strings["Authenticate"] = "Authentifizieren"; +App::$strings["Export Channel"] = "Kanal exportieren"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; +App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; +App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; +App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; +App::$strings["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."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; +App::$strings["Item is not editable"] = "Element kann nicht bearbeitet werden."; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; App::$strings["Search results for: %s"] = "Suchergebnisse für: %s"; +App::$strings["You must be logged in to see this page."] = "Du musst angemeldet sein, um diese Seite betrachten zu können."; +App::$strings["Posts and comments"] = "Beiträge und Kommentare"; +App::$strings["Only posts"] = "Nur Beiträge"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Unzureichende Zugriffsrechte. Die Anfrage wurde zur Profil-Seite umgeleitet."; App::$strings["No service class restrictions found."] = "Keine Dienstklassenbeschränkungen gefunden."; -App::$strings["Name is required"] = "Name ist erforderlich"; -App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +App::$strings["Thing updated"] = "Sache aktualisiert"; +App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; +App::$strings["Thing added"] = "Sache hinzugefügt"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Sache anzeigen"; +App::$strings["item not found."] = "Eintrag nicht gefunden"; +App::$strings["Edit Thing"] = "Sache bearbeiten"; +App::$strings["Select a profile"] = "Wähle ein Profil"; +App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; +App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; +App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; +App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; +App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; +App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; +App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; +App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; +App::$strings["NEW"] = "NEU"; +App::$strings["Remove all files"] = "Alle Dateien löschen"; +App::$strings["Remove this file"] = "Diese Datei löschen"; +App::$strings["Not found"] = "Nicht gefunden"; +App::$strings["Wiki"] = "Wiki"; +App::$strings["Sandbox"] = "Sandbox"; +App::$strings["\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be saved*.\""] = "\"# Wiki Sandkasten\\n\\nInhalte, die Du hier **veränderst** und **als Vorschau anzeigst**, *werden nicht gespeichert*.\""; +App::$strings["Revision Comparison"] = "Revisionsvergleich"; +App::$strings["Revert"] = "Rückgängig machen"; +App::$strings["Enter the name of your new wiki:"] = "Gib einen Namen für Dein neues Wiki ein:"; +App::$strings["Enter the name of the new page:"] = "Geben Sie den Namen der neuen Seite ein:"; +App::$strings["Enter the new name:"] = "Geben Sie den neuen Namen ein:"; +App::$strings["Embed image from photo albums"] = "Bild aus Fotoalben einbetten"; +App::$strings["Embed an image from your albums"] = "Betten Sie ein Bild aus Ihren Alben ein"; +App::$strings["OK"] = "Ok"; +App::$strings["Choose images to embed"] = "Wählen Sie Bilder zum Einbetten aus"; +App::$strings["Choose an album"] = "Wählen Sie ein Album aus"; +App::$strings["Choose a different album..."] = "Wählen Sie ein anderes Album aus..."; +App::$strings["Error getting album list"] = "Fehler beim Holen der Albenliste"; +App::$strings["Error getting photo link"] = "Fehler beim Holen des Fotolinks"; +App::$strings["Error getting album"] = "Fehler beim Holen des Albums"; +App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; +App::$strings["Source created."] = "Quelle erstellt."; +App::$strings["Source updated."] = "Quelle aktualisiert."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanal-Quellen"; +App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; +App::$strings["New Source"] = "Neue Quelle"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; +App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; +App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; +App::$strings["Channel Name"] = "Name des Kanals"; +App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)"; +App::$strings["Optional"] = "Optional"; +App::$strings["Source not found."] = "Quelle nicht gefunden."; +App::$strings["Edit Source"] = "Quelle bearbeiten"; +App::$strings["Delete Source"] = "Quelle löschen"; +App::$strings["Source removed"] = "Quelle gelöscht"; +App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s folgt %2\$ss %3\$s nicht mehr"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; +App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; +App::$strings["post"] = "Beitrag"; +App::$strings["comment"] = "Kommentar"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; +App::$strings["Tag removed"] = "Schlagwort entfernt"; +App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; +App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; +App::$strings["Page owner information could not be retrieved."] = "Informationen über den Besitzer der Seite konnten nicht gefunden werden."; +App::$strings["Album not found."] = "Album nicht gefunden."; +App::$strings["Delete Album"] = "Album löschen"; +App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Mehrere Speicherordner mit diesem Albumnamen sind bereits vorhanden, aber in verschiedenen Verzeichnissen. Bitte entfernen Sie den oder die gewünschten Ordner mit dem Dateimanager"; +App::$strings["Delete Photo"] = "Foto löschen"; +App::$strings["No photos selected"] = "Keine Fotos ausgewählt"; +App::$strings["Access to this item is restricted."] = "Der Zugriff auf dieses Foto ist eingeschränkt."; +App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB von %2$.2f MB Foto-Speicher belegt."; +App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB Foto-Speicher belegt."; +App::$strings["Upload Photos"] = "Fotos hochladen"; +App::$strings["Enter an album name"] = "Namen für ein neues Album eingeben"; +App::$strings["or select an existing album (doubleclick)"] = "oder ein bereits vorhandenes auswählen (Doppelklick)"; +App::$strings["Create a status post for this upload"] = "Einen Statusbeitrag für diesen Upload erzeugen"; +App::$strings["Caption (optional):"] = "Beschriftung (optional):"; +App::$strings["Description (optional):"] = "Beschreibung (optional):"; +App::$strings["Album name could not be decoded"] = "Albumname konnte nicht dekodiert werden"; +App::$strings["Contact Photos"] = "Kontakt-Bilder"; +App::$strings["Show Newest First"] = "Neueste zuerst anzeigen"; +App::$strings["Show Oldest First"] = "Älteste zuerst anzeigen"; +App::$strings["View Photo"] = "Foto ansehen"; +App::$strings["Edit Album"] = "Album bearbeiten"; +App::$strings["Permission denied. Access to this item may be restricted."] = "Berechtigung verweigert. Der Zugriff ist wahrscheinlich eingeschränkt worden."; +App::$strings["Photo not available"] = "Foto nicht verfügbar"; +App::$strings["Use as profile photo"] = "Als Profilfoto verwenden"; +App::$strings["Use as cover photo"] = "Als Titelbild verwenden"; +App::$strings["Private Photo"] = "Privates Foto"; +App::$strings["View Full Size"] = "In voller Größe anzeigen"; +App::$strings["Edit photo"] = "Foto bearbeiten"; +App::$strings["Rotate CW (right)"] = "Drehen im UZS (rechts)"; +App::$strings["Rotate CCW (left)"] = "Drehen gegen UZS (links)"; +App::$strings["Move photo to album"] = "Foto in Album verschieben"; +App::$strings["Enter a new album name"] = "Gib einen Namen für ein neues Album ein"; +App::$strings["or select an existing one (doubleclick)"] = "oder wähle ein bereits vorhandenes aus (Doppelklick)"; +App::$strings["Caption"] = "Bildunterschrift"; +App::$strings["Add a Tag"] = "Schlagwort hinzufügen"; +App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Beispiele: @ben, @Karl_Prester, @lieschen@example.com"; +App::$strings["Flag as adult in album view"] = "In der Albumansicht als nicht jugendfrei markieren"; +App::$strings["I like this (toggle)"] = "Mir gefällt das (Umschalter)"; +App::$strings["I don't like this (toggle)"] = "Mir gefällt das nicht (Umschalter)"; +App::$strings["Please wait"] = "Bitte warten"; +App::$strings["This is you"] = "Das bist Du"; +App::$strings["Comment"] = "Kommentar"; +App::$strings["__ctx:title__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:title__ Dislikes"] = "Gefällt mir nicht"; +App::$strings["__ctx:title__ Agree"] = "Zustimmungen"; +App::$strings["__ctx:title__ Disagree"] = "Ablehnungen"; +App::$strings["__ctx:title__ Abstain"] = "Enthaltungen"; +App::$strings["__ctx:title__ Attending"] = "Zusagen"; +App::$strings["__ctx:title__ Not attending"] = "Absagen"; +App::$strings["__ctx:title__ Might attend"] = "Vielleicht"; +App::$strings["View all"] = "Alles anzeigen"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Gefällt mir", + 1 => "Gefällt mir", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Gefällt nicht", + 1 => "Gefällt nicht", +); +App::$strings["Photo Tools"] = "Fotowerkzeuge"; +App::$strings["In This Photo:"] = "Auf diesem Foto:"; +App::$strings["Map"] = "Karte"; +App::$strings["__ctx:noun__ Likes"] = "Gefällt mir"; +App::$strings["__ctx:noun__ Dislikes"] = "Gefällt nicht"; +App::$strings["Close"] = "Schließen"; +App::$strings["View Album"] = "Album ansehen"; +App::$strings["Recent Photos"] = "Neueste Fotos"; +App::$strings["Channel added."] = "Kanal hinzugefügt."; +App::$strings["No connections."] = "Keine Verbindungen."; +App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; +App::$strings["View Connections"] = "Verbindungen anzeigen"; +App::$strings["Source of Item"] = "Quelle des Elements"; +App::$strings["Room not found"] = "Chatraum nicht gefunden"; +App::$strings["Leave Room"] = "Raum verlassen"; +App::$strings["Delete Room"] = "Raum löschen"; +App::$strings["I am away right now"] = "Ich bin gerade nicht da"; +App::$strings["I am online"] = "Ich bin online"; +App::$strings["Bookmark this room"] = "Lesezeichen für diesen Raum setzen"; +App::$strings["New Chatroom"] = "Neuer Chatraum"; +App::$strings["Chatroom name"] = "Chatraumname"; +App::$strings["Expiration of chats (minutes)"] = "Verfall von Chats (Minuten)"; +App::$strings["%1\$s's Chatrooms"] = "%1\$ss Chaträume"; +App::$strings["No chatrooms available"] = "Keine Chaträume verfügbar"; +App::$strings["Expiration"] = "Verfall"; +App::$strings["min"] = "min"; +App::$strings["Xchan Lookup"] = "Xchan-Suche"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; +App::$strings["# Accounts"] = "Anzahl der Konten"; +App::$strings["# blocked accounts"] = "Anzahl der blockierten Konten"; +App::$strings["# expired accounts"] = "Anzahl der abgelaufenen Konten"; +App::$strings["# expiring accounts"] = "Anzahl der ablaufenden Konten"; +App::$strings["# Channels"] = "Anzahl der Kanäle"; +App::$strings["# primary"] = "Anzahl der primären Kanäle"; +App::$strings["# clones"] = "Anzahl der Klone"; +App::$strings["Message queues"] = "Nachrichten-Warteschlangen"; +App::$strings["Your software should be updated"] = "Die installierte Software sollte aktualisiert werden"; +App::$strings["Summary"] = "Zusammenfassung"; +App::$strings["Registered accounts"] = "Registrierte Konten"; +App::$strings["Pending registrations"] = "Ausstehende Registrierungen"; +App::$strings["Registered channels"] = "Registrierte Kanäle"; +App::$strings["Active plugins"] = "Aktive Plug-Ins"; +App::$strings["Version"] = "Version"; +App::$strings["Repository version (master)"] = "Repository-Version (master)"; +App::$strings["Repository version (dev)"] = "Repository-Version (dev)"; App::$strings["Not valid email."] = "Keine gültige E-Mail Adresse."; App::$strings["Protected email address. Cannot change to that email."] = "Geschützte E-Mail Adresse. Diese kann nicht verändert werden."; -App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; -App::$strings["Password verification failed."] = "Passwortüberprüfung fehlgeschlagen."; -App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; -App::$strings["Password changed."] = "Kennwort geändert."; -App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; -App::$strings["Settings updated."] = "Einstellungen aktualisiert."; -App::$strings["Add application"] = "Anwendung hinzufügen"; -App::$strings["Name of application"] = "Name der Anwendung"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Umleitung"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; -App::$strings["Icon url"] = "Symbol-URL"; -App::$strings["Optional"] = "Optional"; -App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden."; -App::$strings["Connected Apps"] = "Verbundene Apps"; -App::$strings["Client key starts with"] = "Client Key beginnt mit"; -App::$strings["No name"] = "Kein Name"; -App::$strings["Remove authorization"] = "Authorisierung aufheben"; -App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; -App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; -App::$strings["Account Settings"] = "Konto-Einstellungen"; -App::$strings["Current Password"] = "Aktuelles Passwort"; -App::$strings["Enter New Password"] = "Gib ein neues Passwort ein"; -App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; -App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; -App::$strings["Email Address:"] = "Email Adresse:"; -App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; -App::$strings["Additional Features"] = "Zusätzliche Funktionen"; -App::$strings["Connector Settings"] = "Connector-Einstellungen"; -App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; -App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; -App::$strings["Display Settings"] = "Anzeige-Einstellungen"; -App::$strings["Theme Settings"] = "Theme-Einstellungen"; -App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; -App::$strings["Content Settings"] = "Inhaltseinstellungen"; -App::$strings["Display Theme:"] = "Anzeige-Theme:"; -App::$strings["Mobile Theme:"] = "Mobile Theme:"; -App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"; -App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; -App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; -App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; -App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; -App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; -App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; -App::$strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; -App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; -App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; -App::$strings["Use blog/list mode on grid page"] = "Blog-/Listenmodus auf der Netzwerkseite verwenden"; -App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; -App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; -App::$strings["Grid page max height of content (in pixels)"] = "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite"; +App::$strings["System failure storing new email. Please try again."] = "Systemfehler während des Speicherns der neuen Mail. Bitte versuche es noch einmal."; +App::$strings["Technical skill level updated"] = "Technische Qualifikationsstufe aktualisiert"; +App::$strings["Password verification failed."] = "Passwortüberprüfung fehlgeschlagen."; +App::$strings["Passwords do not match. Password unchanged."] = "Kennwörter stimmen nicht überein. Kennwort nicht verändert."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Leere Kennwörter sind nicht erlaubt. Kennwort nicht verändert."; +App::$strings["Password changed."] = "Kennwort geändert."; +App::$strings["Password update failed. Please try again."] = "Kennwortänderung fehlgeschlagen. Bitte versuche es noch einmal."; +App::$strings["Account Settings"] = "Konto-Einstellungen"; +App::$strings["Current Password"] = "Aktuelles Passwort"; +App::$strings["Enter New Password"] = "Gib ein neues Passwort ein"; +App::$strings["Confirm New Password"] = "Bestätige das neue Passwort"; +App::$strings["Leave password fields blank unless changing"] = "Lasse die Passwort-Felder leer, außer Du möchtest das Passwort ändern"; +App::$strings["Your technical skill level"] = "Deine technische Qualifikationsstufe"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Dies wird verwendet, um Dir eine Benutzererfahrung passend zu Deiner technischen Qualifikationsstufe zu bieten."; +App::$strings["Email Address:"] = "Email Adresse:"; +App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; +App::$strings["Settings updated."] = "Einstellungen aktualisiert."; App::$strings["Nobody except yourself"] = "Niemand außer Dir selbst"; App::$strings["Only those you specifically allow"] = "Nur die, denen Du es explizit erlaubst"; App::$strings["Approved connections"] = "Angenommene Verbindungen"; @@ -1186,7 +1361,7 @@ App::$strings["Private - default private, never open or public"] = "Pri App::$strings["Blocked - default blocked to/from everybody"] = "Blockiert – Alle standardmäßig blockiert"; App::$strings["Allow others to tag your posts"] = "Erlaube anderen, Deine Beiträge zu verschlagworten"; App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Wird oft von der Community genutzt um rückwirkend anstößigen Inhalt zu markieren"; -App::$strings["Advanced Privacy Settings"] = "Fortgeschrittene Privatsphäre-Einstellungen"; +App::$strings["Channel Permission Limits"] = "Kanal-Berechtigungslimits"; App::$strings["Expire other channel content after this many days"] = "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen"; App::$strings["0 or blank to use the website limit."] = "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden."; App::$strings["This website expires after %d days."] = "Diese Webseite läuft nach %d Tagen ab."; @@ -1194,7 +1369,7 @@ App::$strings["This website does not expire imported content."] = "Diese Webseit App::$strings["The website limit takes precedence if lower than your limit."] = "Das Verfallslimit der Webseite hat Vorrang, wenn es niedriger als Deines hier ist."; App::$strings["Maximum Friend Requests/Day:"] = "Maximale Kontaktanfragen pro Tag:"; App::$strings["May reduce spam activity"] = "Kann die Spam-Aktivität verringern"; -App::$strings["Default Post and Publish Permissions"] = "Standard-Berechtigungen für Beiträge und andere Inhalte"; +App::$strings["Default Access Control List (ACL)"] = "Standard-Zugriffsberechtigungsliste (ACL)"; App::$strings["Use my default audience setting for the type of object published"] = "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps"; App::$strings["Channel permissions category:"] = "Zugriffsrechte-Kategorie des Kanals:"; App::$strings["Maximum private messages per day from unknown people:"] = "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:"; @@ -1232,7 +1407,6 @@ App::$strings["Notify me of events this many days in advance"] = "Benachrichtige App::$strings["Must be greater than 0"] = "Muss größer als 0 sein"; App::$strings["Advanced Account/Page Type Settings"] = "Erweiterte Account- und Seitenart-Einstellungen"; App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Accounts unter speziellen Umständen"; -App::$strings["Please enable expert mode (in Settings > Additional features) to adjust!"] = "Aktiviere den Expertenmodus (unter Settings > Zusätzliche Funktionen), um hier Einstellungen vorzunehmen!"; App::$strings["Miscellaneous Settings"] = "Sonstige Einstellungen"; App::$strings["Default photo upload folder"] = "Voreingestellter Ordner für hochgeladene Fotos"; App::$strings["%Y - current year, %m - current month"] = "%Y - aktuelles Jahr, %m - aktueller Monat"; @@ -1241,192 +1415,58 @@ App::$strings["Personal menu to display in your channel pages"] = "Eigenes Menü App::$strings["Remove this channel."] = "Diesen Kanal löschen"; App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-Provider für Firefox Share"; App::$strings["Start calendar week on monday"] = "Montag als erster Tag der Kalenderwoche"; -App::$strings["\$Projectname Server - Setup"] = "\$Projectname Server-Einrichtung"; -App::$strings["Could not connect to database."] = "Kann nicht mit der Datenbank verbinden."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Konnte die angegebene Webseiten-URL nicht erreichen. Möglicherweise ein Problem mit dem SSL-Zertifikat oder dem DNS."; -App::$strings["Could not create table."] = "Kann Tabelle nicht erstellen."; -App::$strings["Your site database has been installed."] = "Die Datenbank Deines Hubs wurde installiert."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Möglicherweise musst Du die Datei install/schema_xxx.sql manuell mit Hilfe eines Datenkbank-Clients importieren."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Lies die Datei \"install/INSTALL.txt\"."; -App::$strings["System check"] = "Systemprüfung"; -App::$strings["Check again"] = "Bitte nochmal prüfen"; -App::$strings["Database connection"] = "Datenbank Verbindung"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Um \$Projectname zu installieren, müssen wir wissen, wie wir eine Verbindung zu Deiner Datenbank aufbauen können."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Bitte kontaktiere Deinen Hosting-Provider oder Administrator, falls Du Fragen zu diesen Einstellungen hast."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Die Datenbank, die Du weiter unten angibst, sollte bereits existieren. Sollte das noch nicht der Fall sein, erzeuge sie bitte bevor Du fortfährst."; -App::$strings["Database Server Name"] = "Datenbank-Servername"; -App::$strings["Default is 127.0.0.1"] = "Standard ist 127.0.0.1"; -App::$strings["Database Port"] = "Datenbank-Port"; -App::$strings["Communication port number - use 0 for default"] = "Port-Nummer für die Kommunikation – verwende 0 für die Standardeinstellung"; -App::$strings["Database Login Name"] = "Datenbank-Benutzername"; -App::$strings["Database Login Password"] = "Datenbank-Kennwort"; -App::$strings["Database Name"] = "Datenbank-Name"; -App::$strings["Database Type"] = "Datenbanktyp"; -App::$strings["Site administrator email address"] = "E-Mail Adresse des Seiten-Administrators"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Accounts muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst."; -App::$strings["Website URL"] = "Server-URL"; -App::$strings["Please use SSL (https) URL if available."] = "Nutze wenn möglich eine SSL-URL (https)."; -App::$strings["Please select a default timezone for your website"] = "Standard-Zeitzone für Deinen Server"; -App::$strings["Site settings"] = "Seiteneinstellungen"; -App::$strings["Enable \$Projectname advanced features?"] = "Erweiterte Funktionen für \$Projectname aktivieren?"; -App::$strings["Some advanced features, while useful - may be best suited for technically proficient audiences"] = "Einige erweiterte Funktionen können ungeachtet ihrer Nützlichkeit eher für eine technisch versierte Zielgruppe geeignet sein."; -App::$strings["PHP version 5.5 or greater is required."] = "PHP Version 5.5 oder höher wird benötigt."; -App::$strings["PHP version"] = "PHP-Version"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Konnte die Kommandozeilen-Version von PHP nicht im PATH des Web-Servers finden."; -App::$strings["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."] = "Ohne Kommandozeilen-Version von PHP auf dem Server wirst Du nicht in der Lage sein, Hintergrundprozesse via cron auszuführen."; -App::$strings["PHP executable path"] = "PHP Pfad zu ausführbarer Datei"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Gib den vollen Pfad zum PHP-Interpreter an. Du kannst dieses Feld frei lassen und mit der Installation fortfahren."; -App::$strings["Command line PHP"] = "PHP Befehlszeile"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "Bei der Kommandozeilen-Version von PHP auf Deinem System ist \"register_argc_argv\" nicht aktiviert."; -App::$strings["This is required for message delivery to work."] = "Das wird benötigt, damit die Auslieferung von Nachrichten funktioniert."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["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."] = "Die Maximalgröße für Uploads insgesamt liegt bei %s. Die Maximalgröße für eine Datei liegt bei %s. Es können maximal %d Dateien gleichzeitig hochgeladen werden."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Du kannst diese Einstellungen in der php.ini des Servers ändern."; -App::$strings["PHP upload limits"] = "PHP-Hochladebeschränkungen"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Fehler: Die „openssl_pkey_new“-Funktion auf diesem System ist nicht in der Lage, Schlüssel für die Verschlüsselung zu erzeugen."; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Wenn Du Windows verwendest, findest Du unter http://www.php.net/manual/en/openssl.installation.php eine Installationsanleitung."; -App::$strings["Generate encryption keys"] = "Verschlüsselungsschlüssel generieren"; -App::$strings["libCurl PHP module"] = "libCurl-PHP-Modul"; -App::$strings["GD graphics PHP module"] = "GD-Grafik-PHP-Modul"; -App::$strings["OpenSSL PHP module"] = "OpenSSL-PHP-Modul"; -App::$strings["mysqli or postgres PHP module"] = "mysqli oder postgres PHP-Modul"; -App::$strings["mb_string PHP module"] = "mb_string-PHP-Modul"; -App::$strings["mcrypt PHP module"] = "mcrypt-PHP-Modul"; -App::$strings["xml PHP module"] = "xml-PHP-Modul"; -App::$strings["Apache mod_rewrite module"] = "Apache-mod_rewrite-Modul"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Fehler: Das Apache-Modul mod-rewrite wird benötigt, ist aber nicht installiert."; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Fehler: proc_open wird benötigt, ist aber entweder nicht installiert oder wurde in der php.ini deaktiviert"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Fehler: Das PHP-Modul libCURL wird benötigt, ist aber nicht installiert."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Fehler: Das PHP-Modul GD-Grafik mit JPEG-Unterstützung wird benötigt, ist aber nicht installiert."; -App::$strings["Error: openssl PHP module required but not installed."] = "Fehler: Das PHP-Modul openssl wird benötigt, ist aber nicht installiert."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Fehler: Das mysqli oder postgres PHP-Modul ist erforderlich, aber keines von beiden ist installiert."; -App::$strings["Error: mb_string PHP module required but not installed."] = "Fehler: Das PHP-Modul mb_string wird benötigt, ist aber nicht installiert."; -App::$strings["Error: mcrypt PHP module required but not installed."] = "Fehler: Das PHP-Modul mcrypt wird benötigt, ist aber nicht installiert."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Fehler: Das xml-PHP-Modul wird für DAV benötigt, ist aber nicht installiert."; -App::$strings["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."] = "Der Installations-Assistent muss in der Lage sein, die Datei \".htconfig.php\" im Stammverzeichnis des Web-Servers anzulegen, ist er aber nicht."; -App::$strings["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."] = "Meist liegt das daran, dass der Nutzer, unter dem der Web-Server läuft, keine Schreibrechte in dem Verzeichnis hat – selbst wenn Du selbst das darfst."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Am Schluss dieses Vorgangs wird ein Text generiert, den Du unter dem Dateinamen .htconfig.php im Stammverzeichnis Deiner Hubzilla-Installation speichern musst."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Alternativ kannst Du diesen Schritt überspringen und die Installation manuell vornehmen. Lies dazu die Datei install/INSTALL.txt."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php ist beschreibbar"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "\$Projectname verwendet Smarty3 um Vorlagen für die Webdarstellung zu übersetzen. Smarty3 übersetzt diese Vorlagen nach PHP, um die Darstellung zu beschleunigen."; -App::$strings["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."] = "Um diese kompilierten Vorlagen speichern zu können, braucht der Web-Server Schreibzugriff auf das Verzeichnis %s unterhalb des Hubzilla-Stammverzeichnisses."; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Bitte stelle sicher, dass der Nutzer, unter dem der Web-Server läuft (z.B. www-data), Schreibzugriff auf dieses Verzeichnis hat."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Hinweis: Aus Sicherheitsgründen sollte der Web-Server nur auf %s Schreibrechte haben, nicht auf die Template-Dateien (.tpl), die das Verzeichnis enthält."; -App::$strings["%s is writable"] = "%s ist beschreibbar"; -App::$strings["Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "\$Projectname benutzt das Verzeichnis store, um hochgeladene Dateien zu speichern. Der Webserver benötigt Schreibrechte für dieses Verzeichnis direkt unterhalb des Red-Stammverzeichnisses"; -App::$strings["store is writable"] = "store ist schreibbar"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Das SSL-Zertifikat konnte nicht validiert werden. Korrigiere das Zertifikat oder deaktiviere den HTTPS-Zugriff auf diesen Server."; -App::$strings["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!"] = "Wenn Du via HTTPS auf Deinen Server zugreifen möchtest, also Verbindungen über den Port 443 möglich sein sollen, ist ein SSL-Zertifikat einer Zertifizierungsstelle (CA) notwendig, das von den Browsern ohne Sicherheitsabfrage akzeptiert wird. Die Verwendung eines selbst signierten Zertifikates ist nicht möglich."; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Diese Einschränkung wurde eingebaut, weil Deine öffentlichen Beiträge zum Beispiel Verweise auf Bilder auf Deinem eigenen Hub enthalten können."; -App::$strings["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."] = "Wenn Dein Zertifikat nicht von jedem Browser akzeptiert wird, erhalten die Mitglieder anderer \$Projectname-Hubs (die mit korrekten Zertifikaten ausgestattet sind) Sicherheits-Warnmeldungen, obwohl sie gar nicht direkt auf Deinem Server unterwegs sind (zum Beispiel, wenn ein Bild aus einem Deiner Beiträge angezeigt wird)."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Dies kann Probleme für andere Nutzer (nicht nur auf Deinem eigenen Server) verursachen, so dass wir auf dieser Forderung bestehen müssen."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Es gibt einige Zertifizierungsstellen (CAs), bei denen solche Zertifikate kostenlos zu haben sind."; -App::$strings["SSL certificate validation"] = "SSL Zertifikatverifizierung"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "Das Umschreiben von URLs (rewrite) per .htaccess funktioniert nicht. Bitte prüfe die Server-Konfiguration. Test:"; -App::$strings["Url rewrite is working"] = "Url rewrite funktioniert"; -App::$strings["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."] = "Die Datenbank-Konfigurationsdatei „.htconfig.php“ konnte nicht geschrieben werden. Bitte verwende den unten angegebenen Text, um die Konfigurationsdatei im Stammverzeichnis des Webservers anzulegen."; -App::$strings["Errors encountered creating database tables."] = "Fehler beim Anlegen der Datenbank-Tabellen aufgetreten."; -App::$strings["

    What next

    "] = "

    Was als Nächstes

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "WICHTIG: Du musst [manuell] einen Cronjob für den Poller einrichten."; -App::$strings["Files: shared with me"] = "Dateien, die mit mir geteilt wurden"; -App::$strings["NEW"] = "NEU"; -App::$strings["Remove all files"] = "Alle Dateien löschen"; -App::$strings["Remove this file"] = "Diese Datei löschen"; -App::$strings["Version %s"] = "Version %s"; -App::$strings["Installed plugins/addons/apps:"] = "Installierte Plugins/Addons/Apps"; -App::$strings["No installed plugins/addons/apps"] = "Keine installierten Plugins/Addons/Apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dieser Hub ist Teil von \$Projectname – ein globales, kooperatives Netzwerk aus dezentralen Websites, die Rücksicht auf Deine Privatsphäre nehmen."; -App::$strings["Tag: "] = "Schlagwort: "; -App::$strings["Last background fetch: "] = "Letzter Hintergrundabruf:"; -App::$strings["Current load average: "] = "Aktuelles Load Average:"; -App::$strings["Running at web location"] = "Erreichbar unter der Web-Adresse"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bitte besuchen Sie hubzilla.org, um mehr über \$Projectname zu erfahren."; -App::$strings["Bug reports and issues: please visit"] = "Probleme oder Fehler gefunden? Bitte besuche"; -App::$strings["\$projectname issues"] = "\$projectname-Bugtracker"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Vorschläge, Lob, usw.: E-Mail an 'redmatrix' at librelist - dot - com"; -App::$strings["Site Administrators"] = "Administratoren"; -App::$strings["Failed to create source. No channel selected."] = "Konnte die Quelle nicht anlegen. Kein Kanal ausgewählt."; -App::$strings["Source created."] = "Quelle erstellt."; -App::$strings["Source updated."] = "Quelle aktualisiert."; -App::$strings["*"] = "*"; -App::$strings["Channel Sources"] = "Kanal-Quellen"; -App::$strings["Manage remote sources of content for your channel."] = "Externe Inhaltsquellen für Deinen Kanal verwalten."; -App::$strings["New Source"] = "Neue Quelle"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importiere alle oder ausgewählte Inhalte des folgenden Kanals in diesen Kanal und verteile sie gemäß der Einstellungen dieses Kanals."; -App::$strings["Only import content with these words (one per line)"] = "Importiere nur Beiträge, die folgende Wörter (eines pro Zeile) enthalten"; -App::$strings["Leave blank to import all public content"] = "Leer lassen, um alle öffentlichen Beiträge zu importieren"; -App::$strings["Channel Name"] = "Name des Kanals"; -App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Füge die folgenden Kategorien zu Beiträgen, die aus dieser Quelle importiert werden, hinzu (kommagetrennt)"; -App::$strings["Source not found."] = "Quelle nicht gefunden."; -App::$strings["Edit Source"] = "Quelle bearbeiten"; -App::$strings["Delete Source"] = "Quelle löschen"; -App::$strings["Source removed"] = "Quelle gelöscht"; -App::$strings["Unable to remove source."] = "Konnte die Quelle nicht löschen."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s folgt nun %2\$ss %3\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s folgt %2\$ss %3\$s nicht mehr"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Keine Vorschläge vorhanden. Wenn das ein neuer Server ist, versuche es in 24 Stunden noch einmal."; -App::$strings["Ignore/Hide"] = "Ignorieren/Verstecken"; -App::$strings["post"] = "Beitrag"; -App::$strings["comment"] = "Kommentar"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s hat %2\$ss %3\$s mit %4\$s verschlagwortet"; -App::$strings["Tag removed"] = "Schlagwort entfernt"; -App::$strings["Remove Item Tag"] = "Schlagwort entfernen"; -App::$strings["Select a tag to remove: "] = "Schlagwort zum Entfernen auswählen:"; -App::$strings["Thing updated"] = "Sache aktualisiert"; -App::$strings["Object store: failed"] = "Speichern des Objekts fehlgeschlagen"; -App::$strings["Thing added"] = "Sache hinzugefügt"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Sache anzeigen"; -App::$strings["item not found."] = "Eintrag nicht gefunden"; -App::$strings["Edit Thing"] = "Sache bearbeiten"; -App::$strings["Select a profile"] = "Wähle ein Profil"; -App::$strings["Post an activity"] = "Aktivitätsnachricht senden"; -App::$strings["Only sends to viewers of the applicable profile"] = "Nur an Betrachter des ausgewählten Profils senden"; -App::$strings["Name of thing e.g. something"] = "Name der Sache, z. B. irgendwas"; -App::$strings["URL of thing (optional)"] = "URL der Sache (optional)"; -App::$strings["URL for photo of thing (optional)"] = "URL eines Fotos der Sache (optional)"; -App::$strings["Add Thing to your Profile"] = "Die Sache Deinem Profil hinzufügen"; -App::$strings["Export Channel"] = "Kanal exportieren"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportiert die grundlegenden Kanal-Informationen in eine kleine Datei. Diese stellt eine Sicherung Deiner Verbindungen, Berechtigungen, Profile und Basisdaten bereit, die für den Import auf einem anderen Hub verwendet werden kann, aber nicht die Beiträge Deines Kanals enthält."; -App::$strings["Export Content"] = "Kanal und Inhalte exportieren"; -App::$strings["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."] = "Exportiert Deine Kanal-Informationen sowie alle zugehörigen Inhalte in eine JSON-Sicherungsdatei. Die sichert alle Verbindungen, Berechtigungen, Profildaten und Deine Beiträge aus mehreren Monaten. Diese Datei kann SEHR groß werden! Bitte habe ein wenig Geduld – es kann mehrere Minuten dauern, bis der Download startet."; -App::$strings["Export your posts from a given year."] = "Exportiert die Beiträge des angegebenen Jahres."; -App::$strings["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."] = "Du kannst auch die Beiträge und Konversationen eines bestimmten Jahres oder Monats exportieren. Ändere das Datum in der Adresszeile Deines Browsers, um andere Zeiträume zu wählen. Falls der Export fehlschlägt (vermutlich, weil auf diesem Hub nicht genügend Speicher zur Verfügung steht), versuche es noch einmal mit einer kleineren Zeitspanne."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Jahres, zum Beispiel dieses Jahres, auszuwählen, klicke %2\$s."; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Um alle Beiträge eines bestimmten Monats auszuwählen, zum Beispiel vom Januar diesen Jahres, klicke %2\$s."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Diese Inhalts-Sicherungen können wiederhergestellt werden, indem Du %2\$s auf jeglichem Hub besuchst, der diesen Kanal enthält. Das funktioniert am besten, wenn Du dabei die zeitliche Reihenfolge einhältst, also die Sicherungen für den ältesten Zeitraum zuerst importierst."; -App::$strings["No connections."] = "Keine Verbindungen."; -App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; -App::$strings["View Connections"] = "Verbindungen anzeigen"; -App::$strings["Source of Item"] = "Quelle des Elements"; -App::$strings["Webpages"] = "Webseiten"; -App::$strings["Actions"] = "Aktionen"; -App::$strings["Page Link"] = "Seiten-Link"; -App::$strings["Page Title"] = "Seitentitel"; -App::$strings["Xchan Lookup"] = "Xchan-Suche"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Nach xchans oder Webbies (Kanal-Adressen) suchen, die wie folgt beginnen:"; -App::$strings["Site Admin"] = "Hub-Administration"; -App::$strings["Bug Report"] = "Fehler-Rückmeldung"; -App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; -App::$strings["My Chatrooms"] = "Meine Chaträume"; -App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; -App::$strings["Remote Diagnostics"] = "Ferndiagnose"; -App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; -App::$strings["Login"] = "Anmelden"; -App::$strings["Grid"] = "Grid"; -App::$strings["Channel Home"] = "Mein Kanal"; -App::$strings["Events"] = "Termine"; -App::$strings["Directory"] = "Verzeichnis"; -App::$strings["Mail"] = "Mail"; -App::$strings["Chat"] = "Chat"; -App::$strings["Probe"] = "Testen"; -App::$strings["Suggest"] = "Empfehlen"; -App::$strings["Random Channel"] = "Zufälliger Kanal"; -App::$strings["Invite"] = "Einladen"; -App::$strings["Features"] = "Funktionen"; -App::$strings["Post"] = "Beitrag schreiben"; -App::$strings["Purchase"] = "Kaufen"; +App::$strings["No special theme for mobile devices"] = "Keine spezielle Theme für mobile Geräte"; +App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; +App::$strings["Display Settings"] = "Anzeige-Einstellungen"; +App::$strings["Theme Settings"] = "Theme-Einstellungen"; +App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Theme-Einstellungen"; +App::$strings["Content Settings"] = "Inhaltseinstellungen"; +App::$strings["Display Theme:"] = "Anzeige-Theme:"; +App::$strings["Select scheme"] = "Schema wählen"; +App::$strings["Mobile Theme:"] = "Mobile Theme:"; +App::$strings["Preload images before rendering the page"] = "Bilder im voraus laden, bevor die Seite angezeigt wird"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird"; +App::$strings["Enable user zoom on mobile devices"] = "Zoom auf Mobilgeräten aktivieren"; +App::$strings["Update browser every xx seconds"] = "Browser alle xx Sekunden aktualisieren"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimum 10 Sekunden, kein Maximum"; +App::$strings["Maximum number of conversations to load at any time:"] = "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:"; +App::$strings["Maximum of 100 items"] = "Maximum: 100 Beiträge"; +App::$strings["Show emoticons (smilies) as images"] = "Emoticons (Smilies) als Bilder anzeigen"; +App::$strings["Link post titles to source"] = "Beitragstitel zum Originalbeitrag verlinken"; +App::$strings["System Page Layout Editor - (advanced)"] = "System-Seitenlayout-Editor (für Experten)"; +App::$strings["Use blog/list mode on channel page"] = "Blog-/Listenmodus auf der Kanalseite verwenden"; +App::$strings["(comments displayed separately)"] = "(Kommentare werden separat angezeigt)"; +App::$strings["Use blog/list mode on grid page"] = "Blog-/Listenmodus auf der Netzwerkseite verwenden"; +App::$strings["Channel page max height of content (in pixels)"] = "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)"; +App::$strings["click to expand content exceeding this height"] = "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden."; +App::$strings["Grid page max height of content (in pixels)"] = "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite"; +App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; +App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; +App::$strings["Additional Features"] = "Zusätzliche Funktionen"; +App::$strings["Name is required"] = "Name ist erforderlich"; +App::$strings["Key and Secret are required"] = "Schlüssel und Geheimnis werden benötigt"; +App::$strings["Add application"] = "Anwendung hinzufügen"; +App::$strings["Name of application"] = "Name der Anwendung"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Umleitung"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "Umleitungs-URl – lasse das leer, solange Deine Anwendung es nicht explizit erfordert"; +App::$strings["Icon url"] = "Symbol-URL"; +App::$strings["Application not found."] = "Die Anwendung wurde nicht gefunden."; +App::$strings["Connected Apps"] = "Verbundene Apps"; +App::$strings["Client key starts with"] = "Client Key beginnt mit"; +App::$strings["No name"] = "Kein Name"; +App::$strings["Remove authorization"] = "Authorisierung aufheben"; +App::$strings["This channel is limited to %d tokens"] = "Dieser Kanal ist auf %d Token begrenzt"; +App::$strings["Name and Password are required."] = "Name und Passwort sind erforderlich."; +App::$strings["Token saved."] = "Token gespeichert."; +App::$strings["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."] = "Mit diesem Formular kannst Du temporäre Zugangs-IDs anlegen, um Inhalte mit Nicht-Mitgliedern zu teilen. Die IDs können in Berechtigungslisten (ACLs) verwendet werden, und Besucher können sich damit einloggen, um auf private Inhalte zuzugreifen."; +App::$strings["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:"] = "Du kannst auch Dropbox-ähnliche Zugriffslinks an Andere weitergeben, indem du das Login-Passwort an eine entsprechende URL anhängst wie nachfolgend gezeigt. Beispiele:"; +App::$strings["Guest Access Tokens"] = "Gastzugangstoken"; +App::$strings["Login Name"] = "Anmeldename"; +App::$strings["Login Password"] = "Anmeldepasswort"; +App::$strings["Expires (yyyy-mm-dd)"] = "Läuft ab (jjjj-mm-tt)"; App::$strings["Missing room name"] = "Der Chatraum hat keinen Namen"; App::$strings["Duplicate room name"] = "Name des Chatraums bereits vergeben"; App::$strings["Invalid room specifier."] = "Ungültiger Raumbezeichner."; @@ -1474,6 +1514,43 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; +App::$strings["Only me"] = "Nur ich"; +App::$strings["Public"] = "Öffentlich"; +App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; +App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; +App::$strings["Any of my connections"] = "Alle meine Verbindungen"; +App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; +App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; +App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; +App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; +App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; +App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; +App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; +App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; +App::$strings["Site Admin"] = "Hub-Administration"; +App::$strings["Bug Report"] = "Fehler-Rückmeldung"; +App::$strings["View Bookmarks"] = "Lesezeichen ansehen"; +App::$strings["My Chatrooms"] = "Meine Chaträume"; +App::$strings["Firefox Share"] = "Teilen-Knopf für Firefox"; +App::$strings["Remote Diagnostics"] = "Ferndiagnose"; +App::$strings["Suggest Channels"] = "Kanäle vorschlagen"; +App::$strings["Login"] = "Anmelden"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Mein Kanal"; +App::$strings["Events"] = "Termine"; +App::$strings["Directory"] = "Verzeichnis"; +App::$strings["Mail"] = "Mail"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Testen"; +App::$strings["Suggest"] = "Empfehlen"; +App::$strings["Random Channel"] = "Zufälliger Kanal"; +App::$strings["Invite"] = "Einladen"; +App::$strings["Features"] = "Funktionen"; +App::$strings["Language"] = "Sprache"; +App::$strings["Post"] = "Beitrag schreiben"; +App::$strings["Profile Photo"] = "Profilfoto"; +App::$strings["Purchase"] = "Kaufen"; App::$strings["Private Message"] = "Private Nachricht"; App::$strings["Select"] = "Auswählen"; App::$strings["Save to Folder"] = "In Ordner speichern"; @@ -1510,7 +1587,7 @@ App::$strings["Expires: %s"] = "Verfällt: %s"; App::$strings["Save Bookmarks"] = "Favoriten speichern"; App::$strings["Add to Calendar"] = "Zum Kalender hinzufügen"; App::$strings["Mark all seen"] = "Alle als gelesen markieren"; -App::$strings["[+] show all"] = "[+] Alle anzeigen"; +App::$strings["%s show all"] = "%s mehr anzeigen"; App::$strings["Bold"] = "Fett"; App::$strings["Italic"] = "Kursiv"; App::$strings["Underline"] = "Unterstrichen"; @@ -1522,26 +1599,92 @@ App::$strings["Video"] = "Video"; App::$strings["No username found in import file."] = "Kein Benutzername in der Importdatei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; -App::$strings["Categories"] = "Kategorien"; -App::$strings["Tags"] = "Schlagwörter"; -App::$strings["Keywords"] = "Schlüsselwörter"; -App::$strings["have"] = "habe"; -App::$strings["has"] = "hat"; -App::$strings["want"] = "will"; -App::$strings["wants"] = "will"; -App::$strings["likes"] = "gefällt"; -App::$strings["dislikes"] = "missfällt"; -App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; -App::$strings["Starts:"] = "Beginnt:"; -App::$strings["Finishes:"] = "Endet:"; -App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; -App::$strings["Not specified"] = "Keine Angabe"; -App::$strings["Needs Action"] = "Aktion erforderlich"; -App::$strings["Completed"] = "Abgeschlossen"; -App::$strings["In Process"] = "In Bearbeitung"; -App::$strings["Cancelled"] = "gestrichen"; +App::$strings["view full size"] = "In Vollbildansicht anschauen"; +App::$strings["Administrator"] = "Administrator"; +App::$strings["No Subject"] = "Kein Betreff"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU-Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot!"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; +App::$strings["Image file is empty."] = "Bilddatei ist leer."; +App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; +App::$strings["a new photo"] = "ein neues Foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; +App::$strings["Photo Albums"] = "Fotoalben"; +App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; +App::$strings["Logout"] = "Abmelden"; +App::$strings["End this session"] = "Beende diese Sitzung"; +App::$strings["Home"] = "Home"; +App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; +App::$strings["Your profile page"] = "Deine Profilseite"; +App::$strings["Manage/Edit profiles"] = "Profile verwalten"; +App::$strings["Edit Profile"] = "Profile bearbeiten"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Your photos"] = "Deine Bilder"; +App::$strings["Your files"] = "Deine Dateien"; +App::$strings["Your chatrooms"] = "Deine Chaträume"; +App::$strings["Bookmarks"] = "Lesezeichen"; +App::$strings["Your bookmarks"] = "Deine Lesezeichen"; +App::$strings["Your webpages"] = "Deine Webseiten"; +App::$strings["Your wiki"] = "Dein Wiki"; +App::$strings["Sign in"] = "Anmelden"; +App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; +App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; +App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Erzeuge ein Konto"; +App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; +App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; +App::$strings["Your grid"] = "Dein Grid"; +App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; +App::$strings["Channel home"] = "Mein Kanal"; +App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; +App::$strings["Notices"] = "Benachrichtigungen"; +App::$strings["Notifications"] = "Benachrichtigungen"; +App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; +App::$strings["Private mail"] = "Persönliche Mail"; +App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; +App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; +App::$strings["Inbox"] = "Eingang"; +App::$strings["Outbox"] = "Ausgang"; +App::$strings["New Message"] = "Neue Nachricht"; +App::$strings["Event Calendar"] = "Terminkalender"; +App::$strings["See all events"] = "Alle Termine ansehen"; +App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; +App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; +App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; +App::$strings["Admin"] = "Administration"; +App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; +App::$strings["Loading..."] = "Lädt ..."; +App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; +App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["Embedded content"] = "Eingebetteter Inhalt"; +App::$strings["Embedding disabled"] = "Einbetten deaktiviert"; +App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; +App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; +App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; +App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; +App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; +App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; +App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; +App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; +App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; +App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Kann keinen doppelten Kanal-Identifikator auf diesem System erzeugen (Spitzname oder Hash schon belegt). Import fehlgeschlagen."; App::$strings["Channel clone failed. Import failed."] = "Klonen des Kanals fehlgeschlagen. Import fehlgeschlagen."; +App::$strings["Unable to import element \""] = ""; App::$strings["(Unknown)"] = "(Unbekannt)"; App::$strings["Visible to anybody on the internet."] = "Für jeden im Internet sichtbar."; App::$strings["Visible to you only."] = "Nur für Dich sichtbar."; @@ -1555,63 +1698,207 @@ App::$strings["Privacy group is empty."] = "Gruppe ist leer."; App::$strings["Privacy group: %s"] = "Gruppe: %s"; App::$strings["Connection not found."] = "Die Verbindung wurde nicht gefunden."; App::$strings["profile photo"] = "Profilfoto"; -App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; -App::$strings["[no subject]"] = "[no subject]"; -App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; -App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; -App::$strings["prev"] = "vorherige"; -App::$strings["first"] = "erste"; -App::$strings["last"] = "letzte"; -App::$strings["next"] = "nächste"; -App::$strings["older"] = "älter"; -App::$strings["newer"] = "neuer"; -App::$strings["No connections"] = "Keine Verbindungen"; -App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; -App::$strings["poke"] = "anstupsen"; -App::$strings["poked"] = "stupste"; -App::$strings["ping"] = "anpingen"; -App::$strings["pinged"] = "pingte"; -App::$strings["prod"] = "knuffen"; -App::$strings["prodded"] = "knuffte"; -App::$strings["slap"] = "ohrfeigen"; -App::$strings["slapped"] = "ohrfeigte"; -App::$strings["finger"] = "befummeln"; -App::$strings["fingered"] = "befummelte"; -App::$strings["rebuff"] = "eine Abfuhr erteilen"; -App::$strings["rebuffed"] = "zurückgewiesen"; -App::$strings["happy"] = "glücklich"; -App::$strings["sad"] = "traurig"; -App::$strings["mellow"] = "sanft"; -App::$strings["tired"] = "müde"; -App::$strings["perky"] = "frech"; -App::$strings["angry"] = "sauer"; -App::$strings["stupefied"] = "verblüfft"; -App::$strings["puzzled"] = "verwirrt"; -App::$strings["interested"] = "interessiert"; -App::$strings["bitter"] = "verbittert"; -App::$strings["cheerful"] = "fröhlich"; -App::$strings["alive"] = "lebendig"; -App::$strings["annoyed"] = "verärgert"; -App::$strings["anxious"] = "unruhig"; -App::$strings["cranky"] = "schrullig"; -App::$strings["disturbed"] = "verstört"; -App::$strings["frustrated"] = "frustriert"; -App::$strings["depressed"] = "deprimiert"; -App::$strings["motivated"] = "motiviert"; -App::$strings["relaxed"] = "entspannt"; -App::$strings["surprised"] = "überrascht"; -App::$strings["Monday"] = "Montag"; -App::$strings["Tuesday"] = "Dienstag"; -App::$strings["Wednesday"] = "Mittwoch"; -App::$strings["Thursday"] = "Donnerstag"; -App::$strings["Friday"] = "Freitag"; -App::$strings["Saturday"] = "Samstag"; -App::$strings["Sunday"] = "Sonntag"; +App::$strings["Birthday"] = "Geburtstag"; +App::$strings["Age: "] = "Alter:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; +App::$strings["never"] = "Nie"; +App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "Jahr", + 1 => "Jahre", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "Monat", + 1 => "Monate", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "Woche", + 1 => "Wochen", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "Tag", + 1 => "Tage", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "Stunde", + 1 => "Stunden", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "Minute", + 1 => "Minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "Sekunde", + 1 => "Sekunden", +); +App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; +App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; +App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; +App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; +App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; +App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; +App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; +App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; +App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; +App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; +App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; +App::$strings["your registration password"] = "Dein Registrierungspasswort"; +App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; +App::$strings["Account approved."] = "Nutzerkonto bestätigt."; +App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; +App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; +App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; +App::$strings["Frequently"] = "Häufig"; +App::$strings["Hourly"] = "Stündlich"; +App::$strings["Twice daily"] = "Zwei Mal am Tag"; +App::$strings["Daily"] = "Täglich"; +App::$strings["Weekly"] = "Wöchentlich"; +App::$strings["Monthly"] = "Monatlich"; +App::$strings["Male"] = "Männlich"; +App::$strings["Female"] = "Weiblich"; +App::$strings["Currently Male"] = "Momentan männlich"; +App::$strings["Currently Female"] = "Momentan weiblich"; +App::$strings["Mostly Male"] = "Größtenteils männlich"; +App::$strings["Mostly Female"] = "Größtenteils weiblich"; +App::$strings["Transgender"] = "Transsexuell"; +App::$strings["Intersex"] = "Zwischengeschlechtlich"; +App::$strings["Transsexual"] = "Transsexuell"; +App::$strings["Hermaphrodite"] = "Zwitter"; +App::$strings["Neuter"] = "Geschlechtslos"; +App::$strings["Non-specific"] = "unklar"; +App::$strings["Undecided"] = "Unentschieden"; +App::$strings["Males"] = "Männer"; +App::$strings["Females"] = "Frauen"; +App::$strings["Gay"] = "Schwul"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Keine Bevorzugung"; +App::$strings["Bisexual"] = "Bisexuell"; +App::$strings["Autosexual"] = "Autosexuell"; +App::$strings["Abstinent"] = "Enthaltsam"; +App::$strings["Virgin"] = "Jungfräulich"; +App::$strings["Deviant"] = "Abweichend"; +App::$strings["Fetish"] = "Fetisch"; +App::$strings["Oodles"] = "Unmengen"; +App::$strings["Nonsexual"] = "Sexlos"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Einsam"; +App::$strings["Available"] = "Verfügbar"; +App::$strings["Unavailable"] = "Nicht verfügbar"; +App::$strings["Has crush"] = "Verguckt"; +App::$strings["Infatuated"] = "Verknallt"; +App::$strings["Dating"] = "Lerne gerade jemanden kennen"; +App::$strings["Unfaithful"] = "Treulos"; +App::$strings["Sex Addict"] = "Sexabhängig"; +App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; +App::$strings["Casual"] = "Lose"; +App::$strings["Engaged"] = "Verlobt"; +App::$strings["Married"] = "Verheiratet"; +App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Lebensgemeinschaft"; +App::$strings["Common law"] = "Informelle Ehe"; +App::$strings["Happy"] = "Glücklich"; +App::$strings["Not looking"] = "Nicht Ausschau haltend"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Betrogen"; +App::$strings["Separated"] = "Getrennt"; +App::$strings["Unstable"] = "Labil"; +App::$strings["Divorced"] = "Geschieden"; +App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; +App::$strings["Widowed"] = "Verwitwet"; +App::$strings["Uncertain"] = "Ungewiss"; +App::$strings["It's complicated"] = "Es ist kompliziert"; +App::$strings["Don't care"] = "Interessiert mich nicht"; +App::$strings["Ask me"] = "Frag mich mal"; +App::$strings["Image/photo"] = "Bild/Foto"; +App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; +App::$strings["Install %s element: "] = "Element %s installieren: "; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; +App::$strings["spoiler"] = "Spoiler"; +App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; +App::$strings["$1 wrote:"] = "$1 schrieb:"; +App::$strings["l F d, Y \\@ g:i A"] = "l, d. F Y, H:i"; +App::$strings["Starts:"] = "Beginnt:"; +App::$strings["Finishes:"] = "Endet:"; +App::$strings["This event has been added to your calendar."] = "Dieser Termin wurde zu Deinem Kalender hinzugefügt"; +App::$strings["Not specified"] = "Keine Angabe"; +App::$strings["Needs Action"] = "Aktion erforderlich"; +App::$strings["Completed"] = "Abgeschlossen"; +App::$strings["In Process"] = "In Bearbeitung"; +App::$strings["Cancelled"] = "gestrichen"; +App::$strings["guest:"] = "Gast:"; +App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; +App::$strings["Help:"] = "Hilfe:"; +App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; +App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; +App::$strings["edit"] = "Bearbeiten"; +App::$strings["Privacy Groups"] = "Gruppen"; +App::$strings["Edit group"] = "Gruppe ändern"; +App::$strings["Add privacy group"] = "Gruppe hinzufügen"; +App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; +App::$strings["add"] = "hinzufügen"; +App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; +App::$strings["No source file."] = "Keine Quelldatei."; +App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; +App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; +App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; +App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; +App::$strings["Path not available."] = "Pfad nicht verfügbar."; +App::$strings["Empty pathname"] = "Leere Pfadangabe"; +App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; +App::$strings["Path not found."] = "Pfad nicht gefunden."; +App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; +App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; +App::$strings["Empty path"] = "Leere Pfadangabe"; +App::$strings["New Page"] = "Neue Seite"; +App::$strings["Title"] = "Titel"; +App::$strings["Attachments:"] = "Anhänge:"; +App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; +App::$strings["Delete this item?"] = "Dieses Element löschen?"; +App::$strings["%s show less"] = "%s weniger anzeigen"; +App::$strings["%s expand"] = "%s aufklappen"; +App::$strings["%s collapse"] = "%s einklappen"; +App::$strings["Password too short"] = "Kennwort zu kurz"; +App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; +App::$strings["everybody"] = "alle"; +App::$strings["Secret Passphrase"] = "geheime Passphrase"; +App::$strings["Passphrase hint"] = "Hinweis zur Passphrase"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; +App::$strings["close all"] = "Alle schließen"; +App::$strings["Nothing new here"] = "Nichts Neues hier"; +App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; +App::$strings["Describe (optional)"] = "Beschreibung (optional)"; +App::$strings["Please enter a link URL"] = "Gib eine URL ein:"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = " "; +App::$strings["ago"] = "her"; +App::$strings["from now"] = "von jetzt"; +App::$strings["less than a minute"] = "weniger als eine Minute"; +App::$strings["about a minute"] = "ungefähr eine Minute"; +App::$strings["%d minutes"] = "%d Minuten"; +App::$strings["about an hour"] = "ungefähr eine Stunde"; +App::$strings["about %d hours"] = "ungefähr %d Stunden"; +App::$strings["a day"] = "ein Tag"; +App::$strings["%d days"] = "%d Tage"; +App::$strings["about a month"] = "ungefähr ein Monat"; +App::$strings["%d months"] = "%d Monate"; +App::$strings["about a year"] = "ungefähr ein Jahr"; +App::$strings["%d years"] = "%d Jahre"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; App::$strings["January"] = "Januar"; App::$strings["February"] = "Februar"; App::$strings["March"] = "März"; App::$strings["April"] = "April"; -App::$strings["May"] = "Mai"; +App::$strings["__ctx:long__ May"] = "Mai"; App::$strings["June"] = "Juni"; App::$strings["July"] = "Juli"; App::$strings["August"] = "August"; @@ -1619,148 +1906,88 @@ App::$strings["September"] = "September"; App::$strings["October"] = "Oktober"; App::$strings["November"] = "November"; App::$strings["December"] = "Dezember"; -App::$strings["Unknown Attachment"] = "Unbekannter Anhang"; -App::$strings["unknown"] = "unbekannt"; -App::$strings["remove category"] = "Kategorie entfernen"; -App::$strings["remove from file"] = "aus der Datei entfernen"; -App::$strings["default"] = "Standard"; -App::$strings["Page layout"] = "Seiten-Layout"; -App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; -App::$strings["Page content type"] = "Art des Seiteninhalts"; -App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache"; -App::$strings["activity"] = "Aktivität"; -App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; -App::$strings["Pages"] = "Seiten"; -App::$strings["System"] = "System"; -App::$strings["New App"] = "Neue App"; -App::$strings["Suggestions"] = "Vorschläge"; -App::$strings["See more..."] = "Mehr anzeigen …"; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; -App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; -App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; -App::$strings["Notes"] = "Notizen"; -App::$strings["Remove term"] = "Eintrag löschen"; -App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; -App::$strings["add"] = "hinzufügen"; -App::$strings["Saved Folders"] = "Gespeicherte Ordner"; -App::$strings["Everything"] = "Alles"; -App::$strings["Archives"] = "Archive"; -App::$strings["Refresh"] = "Aktualisieren"; -App::$strings["Account settings"] = "Konto-Einstellungen"; -App::$strings["Channel settings"] = "Kanal-Einstellungen"; -App::$strings["Additional features"] = "Zusätzliche Funktionen"; -App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; -App::$strings["Display settings"] = "Anzeige-Einstellungen"; -App::$strings["Manage locations"] = "Klon-Adressen verwalten"; -App::$strings["Export channel"] = "Kanal exportieren"; -App::$strings["Connected apps"] = "Verbundene Apps"; -App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; -App::$strings["Private Mail Menu"] = "Private Nachrichten"; -App::$strings["Combined View"] = "Kombinierte Anzeige"; -App::$strings["Inbox"] = "Eingang"; -App::$strings["Outbox"] = "Ausgang"; -App::$strings["New Message"] = "Neue Nachricht"; -App::$strings["Conversations"] = "Konversationen"; -App::$strings["Received Messages"] = "Erhaltene Nachrichten"; -App::$strings["Sent Messages"] = "Gesendete Nachrichten"; -App::$strings["No messages."] = "Keine Nachrichten."; -App::$strings["Delete conversation"] = "Unterhaltung löschen"; -App::$strings["Events Menu"] = "Kalendermenü"; -App::$strings["Day View"] = "Tagesansicht"; -App::$strings["Week View"] = "Wochenansicht"; -App::$strings["Month View"] = "Monatsansicht"; -App::$strings["Events Tools"] = "Kalenderwerkzeuge"; -App::$strings["Export Calendar"] = "Kalender exportieren"; -App::$strings["Import Calendar"] = "Kalender importieren"; -App::$strings["Chatrooms"] = "Chaträume"; -App::$strings["Overview"] = "Übersicht"; -App::$strings["Chat Members"] = "Chatmitglieder"; -App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; -App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; -App::$strings["photo/image"] = "Foto/Bild"; -App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; -App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; -App::$strings["Rate Me"] = "Bewerte mich"; -App::$strings["View Ratings"] = "Bewertungen ansehen"; -App::$strings["Forums"] = "Foren"; -App::$strings["Tasks"] = "Aufgaben"; -App::$strings["Documentation"] = "Dokumentation"; -App::$strings["Project/Site Information"] = "Informationen über das Projekt und diesen Hub"; -App::$strings["For Members"] = "Für Mitglieder"; -App::$strings["For Administrators"] = "Für Administratoren"; -App::$strings["For Developers"] = "Für Entwickler"; -App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; -App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; -App::$strings["DB updates"] = "DB-Aktualisierungen"; -App::$strings["Admin"] = "Administration"; -App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings["Jan"] = "Jan"; +App::$strings["Feb"] = "Feb"; +App::$strings["Mar"] = "Mär"; +App::$strings["Apr"] = "Apr"; +App::$strings["__ctx:short__ May"] = "Mai"; +App::$strings["Jun"] = "Jun"; +App::$strings["Jul"] = "Jul"; +App::$strings["Aug"] = "Aug"; +App::$strings["Sep"] = "Sep"; +App::$strings["Oct"] = "Okt"; +App::$strings["Nov"] = "Nov"; +App::$strings["Dec"] = "Dez"; +App::$strings["Sunday"] = "Sonntag"; +App::$strings["Monday"] = "Montag"; +App::$strings["Tuesday"] = "Dienstag"; +App::$strings["Wednesday"] = "Mittwoch"; +App::$strings["Thursday"] = "Donnerstag"; +App::$strings["Friday"] = "Freitag"; +App::$strings["Saturday"] = "Samstag"; +App::$strings["Sun"] = "So"; +App::$strings["Mon"] = "Mo"; +App::$strings["Tue"] = "Di"; +App::$strings["Wed"] = "Mi"; +App::$strings["Thu"] = "Do"; +App::$strings["Fri"] = "Fr"; +App::$strings["Sat"] = "Sa"; +App::$strings["__ctx:calendar__ today"] = "heute"; +App::$strings["__ctx:calendar__ month"] = "Monat"; +App::$strings["__ctx:calendar__ week"] = "Woche"; +App::$strings["__ctx:calendar__ day"] = "Tag"; +App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; App::$strings["Channel is blocked on this site."] = "Der Kanal ist auf dieser Seite blockiert "; App::$strings["Channel location missing."] = "Adresse des Kanals fehlt."; App::$strings["Response from remote channel was incomplete."] = "Antwort des entfernten Kanals war unvollständig."; App::$strings["Channel was deleted and no longer exists."] = "Kanal wurde gelöscht und existiert nicht mehr."; App::$strings["Protocol disabled."] = "Protokoll deaktiviert."; -App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; -App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; -App::$strings["%1\$s's bookmarks"] = "%1\$ss Lesezeichen"; -App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; -App::$strings["Image/photo"] = "Bild/Foto"; -App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %s element: "] = "Element %s installieren: "; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schrieb den folgenden %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; -App::$strings["spoiler"] = "Spoiler"; -App::$strings["Different viewers will see this text differently"] = "Verschiedene Betrachter werden diesen Text unterschiedlich sehen"; -App::$strings["$1 wrote:"] = "$1 schrieb:"; -App::$strings["Directory Options"] = "Verzeichnisoptionen"; -App::$strings["Safe Mode"] = "Sicherer Modus"; -App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; -App::$strings["This Website Only"] = "Nur dieser Hub"; -App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "Das Security-Token des Formulars war nicht korrekt. Das ist wahrscheinlich passiert, weil das Formular zu lange (>3 Stunden) offen war, bevor es abgeschickt wurde."; -App::$strings["Logout"] = "Abmelden"; -App::$strings["End this session"] = "Beende diese Sitzung"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Deine Beiträge und Unterhaltungen"; -App::$strings["Your profile page"] = "Deine Profilseite"; -App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit Profile"] = "Profile bearbeiten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; -App::$strings["Your photos"] = "Deine Bilder"; -App::$strings["Your files"] = "Deine Dateien"; -App::$strings["Your chatrooms"] = "Deine Chaträume"; -App::$strings["Bookmarks"] = "Lesezeichen"; -App::$strings["Your bookmarks"] = "Deine Lesezeichen"; -App::$strings["Your webpages"] = "Deine Webseiten"; -App::$strings["Sign in"] = "Anmelden"; -App::$strings["%s - click to logout"] = "%s - Klick zum Abmelden"; -App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; -App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Create an account"] = "Erzeuge ein Konto"; -App::$strings["Help and documentation"] = "Hilfe und Dokumentation"; -App::$strings["Applications, utilities, links, games"] = "Anwendungen (Apps), Zubehör, Links, Spiele"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Channel Directory"] = "Kanal-Verzeichnis"; -App::$strings["Your grid"] = "Dein Grid"; -App::$strings["Mark all grid notifications seen"] = "Alle Grid-Benachrichtigungen als angesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Notices"] = "Benachrichtigungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["See all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["See all private messages"] = "Alle persönlichen Nachrichten ansehen"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Event Calendar"] = "Terminkalender"; -App::$strings["See all events"] = "Alle Termine ansehen"; -App::$strings["Mark all events seen"] = "Markiere alle Termine als gesehen"; -App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; -App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; -App::$strings["Site Setup and Configuration"] = "Seiten-Einrichtung und -Konfiguration"; -App::$strings["Loading..."] = "Lädt ..."; -App::$strings["@name, #tag, ?doc, content"] = "@Name, #Schlagwort, ?Dokumentation, Inhalt"; -App::$strings["Please wait..."] = "Bitte warten..."; +App::$strings["Channel discovery failed."] = "Kanalsuche fehlgeschlagen"; +App::$strings["Cannot connect to yourself."] = "Du kannst Dich nicht mit Dir selbst verbinden."; +App::$strings["Who can see this?"] = "Wer kann das sehen?"; +App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; +App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; +App::$strings["Show"] = "Anzeigen"; +App::$strings["Don't show"] = "Nicht anzeigen"; +App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; +App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; +App::$strings["Empty name"] = "Namensfeld leer"; +App::$strings["Name too long"] = "Name ist zu lang"; +App::$strings["No account identifier"] = "Keine Account-Kennung"; +App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; +App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; +App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; +App::$strings["Default Profile"] = "Standard-Profil"; +App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Create New Profile"] = "Neues Profil erstellen"; +App::$strings["Visible to everybody"] = "Für jeden sichtbar"; +App::$strings["Gender:"] = "Geschlecht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepage:"; +App::$strings["Online Now"] = "gerade online"; +App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; +App::$strings["j F, Y"] = "j. F Y"; +App::$strings["j F"] = "j. F"; +App::$strings["Birthday:"] = "Geburtstag:"; +App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; +App::$strings["Tags:"] = "Schlagworte:"; +App::$strings["Political Views:"] = "Politische Ansichten:"; +App::$strings["Religion:"] = "Religion:"; +App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; +App::$strings["Likes:"] = "Gefällt:"; +App::$strings["Dislikes:"] = "Gefällt nicht:"; +App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; +App::$strings["My other channels:"] = "Meine anderen Kanäle:"; +App::$strings["Musical interests:"] = "Musikalische Interessen:"; +App::$strings["Books, literature:"] = "Bücher, Literatur:"; +App::$strings["Television:"] = "Fernsehen:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; +App::$strings["Love/Romance:"] = "Liebe/Romantik:"; +App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; +App::$strings["School/education:"] = "Schule/Ausbildung:"; +App::$strings["Like this thing"] = "Gefällt mir"; App::$strings["New window"] = "Neues Fenster"; App::$strings["Open the selected location in a different window or browser tab"] = "Öffne die markierte Adresse in einem neuen Browserfenster oder Tab"; App::$strings["User '%s' deleted"] = "Benutzer '%s' gelöscht"; @@ -1775,13 +2002,25 @@ App::$strings["Examples: Robert Morgenstein, Fishing"] = "Beispiele: Robert Morg App::$strings["Random Profile"] = "Zufallsprofil"; App::$strings["Invite Friends"] = "Lade Freunde ein"; App::$strings["Advanced example: name=fred and country=iceland"] = "Fortgeschrittenes Beispiel: name=fred and country=iceland"; +App::$strings["Saved Folders"] = "Gespeicherte Ordner"; +App::$strings["Everything"] = "Alles"; +App::$strings["Categories"] = "Kategorien"; App::$strings["%d connection in common"] = array( 0 => "%d gemeinsame Verbindung", 1 => "%d gemeinsame Verbindungen", ); App::$strings["show more"] = "mehr zeigen"; +App::$strings["Logged out."] = "Ausgeloggt."; +App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; +App::$strings["Login failed."] = "Login fehlgeschlagen."; +App::$strings[" and "] = "und"; +App::$strings["public profile"] = "öffentliches Profil"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; +App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s ist jetzt mit %2\$s verbunden"; App::$strings["%1\$s poked %2\$s"] = "%1\$s stupste %2\$s an"; +App::$strings["poked"] = "stupste"; App::$strings["View %s's profile @ %s"] = "%ss Profil auf %s ansehen"; App::$strings["Categories:"] = "Kategorien:"; App::$strings["Filed under:"] = "Gespeichert unter:"; @@ -1815,12 +2054,16 @@ App::$strings["Set your location"] = "Standort"; App::$strings["Clear browser location"] = "Browser-Standort löschen"; App::$strings["Tag term:"] = "Schlagwort:"; App::$strings["Where are you right now?"] = "Wo bist Du jetzt grade?"; +App::$strings["Comments enabled"] = "Kommentare aktiviert"; +App::$strings["Comments disabled"] = "Kommentare deaktiviert"; App::$strings["Page link name"] = "Link zur Seite"; App::$strings["Post as"] = "Veröffentlichen als"; App::$strings["Toggle voting"] = "Umfragewerkzeug aktivieren"; +App::$strings["Disable comments"] = "Kommentare deaktivieren"; +App::$strings["Toggle comments"] = "Kommentare umschalten"; App::$strings["Categories (optional, comma-separated list)"] = "Kategorien (optional, kommagetrennte Liste)"; +App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; App::$strings["Set publish date"] = "Veröffentlichungsdatum festlegen"; -App::$strings["OK"] = "Ok"; App::$strings["Discover"] = "Entdecken"; App::$strings["Imported public streams"] = "Importierte öffentliche Beiträge"; App::$strings["Commented Order"] = "Neueste Kommentare"; @@ -1836,8 +2079,8 @@ App::$strings["Posts flagged as SPAM"] = "Nachrichten, die als SPAM markiert wur App::$strings["Status Messages and Posts"] = "Statusnachrichten und Beiträge"; App::$strings["About"] = "Über"; App::$strings["Profile Details"] = "Profil-Details"; -App::$strings["Photo Albums"] = "Fotoalben"; App::$strings["Files and Storage"] = "Dateien und Speicher"; +App::$strings["Chatrooms"] = "Chaträume"; App::$strings["Saved Bookmarks"] = "Gespeicherte Lesezeichen"; App::$strings["Manage Webpages"] = "Webseiten verwalten"; App::$strings["__ctx:noun__ Attending"] = array( @@ -1864,152 +2107,145 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Enthaltung", 1 => "Enthaltungen", ); -App::$strings["Frequently"] = "Häufig"; -App::$strings["Hourly"] = "Stündlich"; -App::$strings["Twice daily"] = "Zwei Mal am Tag"; -App::$strings["Daily"] = "Täglich"; -App::$strings["Weekly"] = "Wöchentlich"; -App::$strings["Monthly"] = "Monatlich"; -App::$strings["Currently Male"] = "Momentan männlich"; -App::$strings["Currently Female"] = "Momentan weiblich"; -App::$strings["Mostly Male"] = "Größtenteils männlich"; -App::$strings["Mostly Female"] = "Größtenteils weiblich"; -App::$strings["Transgender"] = "Transsexuell"; -App::$strings["Intersex"] = "Zwischengeschlechtlich"; -App::$strings["Transsexual"] = "Transsexuell"; -App::$strings["Hermaphrodite"] = "Zwitter"; -App::$strings["Neuter"] = "Geschlechtslos"; -App::$strings["Non-specific"] = "unklar"; -App::$strings["Other"] = "Andere"; -App::$strings["Undecided"] = "Unentschieden"; -App::$strings["Males"] = "Männer"; -App::$strings["Females"] = "Frauen"; -App::$strings["Gay"] = "Schwul"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Keine Bevorzugung"; -App::$strings["Bisexual"] = "Bisexuell"; -App::$strings["Autosexual"] = "Autosexuell"; -App::$strings["Abstinent"] = "Enthaltsam"; -App::$strings["Virgin"] = "Jungfräulich"; -App::$strings["Deviant"] = "Abweichend"; -App::$strings["Fetish"] = "Fetisch"; -App::$strings["Oodles"] = "Unmengen"; -App::$strings["Nonsexual"] = "Sexlos"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Einsam"; -App::$strings["Available"] = "Verfügbar"; -App::$strings["Unavailable"] = "Nicht verfügbar"; -App::$strings["Has crush"] = "Verguckt"; -App::$strings["Infatuated"] = "Verknallt"; -App::$strings["Dating"] = "Lerne gerade jemanden kennen"; -App::$strings["Unfaithful"] = "Treulos"; -App::$strings["Sex Addict"] = "Sexabhängig"; -App::$strings["Friends/Benefits"] = "Freunde/Begünstigte"; -App::$strings["Casual"] = "Lose"; -App::$strings["Engaged"] = "Verlobt"; -App::$strings["Married"] = "Verheiratet"; -App::$strings["Imaginarily married"] = "Gewissermaßen verheiratet"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Lebensgemeinschaft"; -App::$strings["Common law"] = "Informelle Ehe"; -App::$strings["Happy"] = "Glücklich"; -App::$strings["Not looking"] = "Nicht Ausschau haltend"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Betrogen"; -App::$strings["Separated"] = "Getrennt"; -App::$strings["Unstable"] = "Labil"; -App::$strings["Divorced"] = "Geschieden"; -App::$strings["Imaginarily divorced"] = "Gewissermaßen geschieden"; -App::$strings["Widowed"] = "Verwitwet"; -App::$strings["Uncertain"] = "Ungewiss"; -App::$strings["It's complicated"] = "Es ist kompliziert"; -App::$strings["Don't care"] = "Interessiert mich nicht"; -App::$strings["Ask me"] = "Frag mich mal"; -App::$strings["Visible to your default audience"] = "Standard-Sichtbarkeit gemäß Kanaleinstellungen"; -App::$strings["Only me"] = "Nur ich"; -App::$strings["Public"] = "Öffentlich"; -App::$strings["Anybody in the \$Projectname network"] = "Jeder innerhalb des \$Projectname Netzwerks"; -App::$strings["Any account on %s"] = "Jedes Nutzerkonto auf %s"; -App::$strings["Any of my connections"] = "Alle meine Verbindungen"; -App::$strings["Only connections I specifically allow"] = "Nur Verbindungen, denen ich es explizit erlaube"; -App::$strings["Anybody authenticated (could include visitors from other networks)"] = "Jeder, der angemeldet ist (kann Besucher anderer Netzwerke beinhalten)"; -App::$strings["Any connections including those who haven't yet been approved"] = "Alle Verbindungen einschließlich der noch nicht bestätigten"; -App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner normalen Beiträge (Stream)."; -App::$strings["This is your default setting for who can view your default channel profile"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deines Standard-Kanalprofils."; -App::$strings["This is your default setting for who can view your connections"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Verbindungen."; -App::$strings["This is your default setting for who can view your file storage and photos"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Dateien und Fotos."; -App::$strings["This is your default setting for the audience of your webpages"] = "Dies ist Deine Voreinstellung für die Sichtbarkeit Deiner Webseiten."; -App::$strings["Not a valid email address"] = "Ungültige E-Mail-Adresse"; -App::$strings["Your email domain is not among those allowed on this site"] = "Deine E-Mail-Adresse ist auf dieser Seite nicht erlaubt"; -App::$strings["Your email address is already registered at this site."] = "Deine E-Mail-Adresse ist auf dieser Seite bereits registriert."; -App::$strings["An invitation is required."] = "Eine Einladung wird benötigt."; -App::$strings["Invitation could not be verified."] = "Die Einladung konnte nicht bestätigt werden."; -App::$strings["Please enter the required information."] = "Bitte gib die benötigten Informationen ein."; -App::$strings["Failed to store account information."] = "Speichern der Nutzerkontodaten fehlgeschlagen."; -App::$strings["Registration confirmation for %s"] = "Registrierungsbestätigung für %s"; -App::$strings["Registration request at %s"] = "Registrierungsanfrage auf %s"; -App::$strings["Administrator"] = "Administrator"; -App::$strings["your registration password"] = "Dein Registrierungspasswort"; -App::$strings["Registration details for %s"] = "Registrierungsdetails für %s"; -App::$strings["Account approved."] = "Nutzerkonto bestätigt."; -App::$strings["Registration revoked for %s"] = "Registrierung für %s wurde widerrufen"; -App::$strings["Account verified. Please login."] = "Nutzerkonto wurde bestätigt. Bitte melde Dich an!"; -App::$strings["Click here to upgrade."] = "Klicke hier, um das Upgrade durchzuführen."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Diese Aktion überschreitet die Grenzen Ihres Abonnements."; -App::$strings["This action is not available under your subscription plan."] = "Diese Aktion ist in Ihrem Abonnement nicht verfügbar."; -App::$strings["Item was not found."] = "Beitrag wurde nicht gefunden."; -App::$strings["No source file."] = "Keine Quelldatei."; -App::$strings["Cannot locate file to replace"] = "Kann Datei zum Ersetzen nicht finden"; -App::$strings["Cannot locate file to revise/update"] = "Kann Datei zum Prüfen/Aktualisieren nicht finden"; -App::$strings["File exceeds size limit of %d"] = "Datei überschreitet das Größen-Limit von %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Die Größe Deiner Datei-Anhänge hat das Maximum von %1$.0f MByte erreicht."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess."; -App::$strings["Stored file could not be verified. Upload failed."] = "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen."; -App::$strings["Path not available."] = "Pfad nicht verfügbar."; -App::$strings["Empty pathname"] = "Leere Pfadangabe"; -App::$strings["duplicate filename or path"] = "doppelter Dateiname oder Pfad"; -App::$strings["Path not found."] = "Pfad nicht gefunden."; -App::$strings["mkdir failed."] = "mkdir fehlgeschlagen."; -App::$strings["database storage failed."] = "Speichern in der Datenbank fehlgeschlagen."; -App::$strings["Empty path"] = "Leere Pfadangabe"; -App::$strings["Unable to obtain identity information from database"] = "Kann keine Identitäts-Informationen aus Datenbank beziehen"; -App::$strings["Empty name"] = "Namensfeld leer"; -App::$strings["Name too long"] = "Name ist zu lang"; -App::$strings["No account identifier"] = "Keine Account-Kennung"; -App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; -App::$strings["Reserved nickname. Please choose another."] = "Reservierter Kurzname. Bitte wähle einen anderen."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Der Spitzname enthält nicht-unterstütze Zeichen oder wird bereits auf dieser Seite genutzt."; -App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; -App::$strings["Default Profile"] = "Standard-Profil"; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; -App::$strings["Create New Profile"] = "Neues Profil erstellen"; -App::$strings["Visible to everybody"] = "Für jeden sichtbar"; -App::$strings["Gender:"] = "Geschlecht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepage:"; -App::$strings["Online Now"] = "gerade online"; -App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; -App::$strings["j F, Y"] = "j. F Y"; -App::$strings["j F"] = "j. F"; -App::$strings["Birthday:"] = "Geburtstag:"; -App::$strings["for %1\$d %2\$s"] = "seit %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Sexuelle Orientierung:"; -App::$strings["Tags:"] = "Schlagworte:"; -App::$strings["Political Views:"] = "Politische Ansichten:"; -App::$strings["Religion:"] = "Religion:"; -App::$strings["Hobbies/Interests:"] = "Hobbys/Interessen:"; -App::$strings["Likes:"] = "Gefällt:"; -App::$strings["Dislikes:"] = "Gefällt nicht:"; -App::$strings["Contact information and Social Networks:"] = "Kontaktinformation und soziale Netzwerke:"; -App::$strings["My other channels:"] = "Meine anderen Kanäle:"; -App::$strings["Musical interests:"] = "Musikalische Interessen:"; -App::$strings["Books, literature:"] = "Bücher, Literatur:"; -App::$strings["Television:"] = "Fernsehen:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film/Tanz/Kultur/Unterhaltung:"; -App::$strings["Love/Romance:"] = "Liebe/Romantik:"; -App::$strings["Work/employment:"] = "Arbeit/Anstellung:"; -App::$strings["School/education:"] = "Schule/Ausbildung:"; -App::$strings["Like this thing"] = "Gefällt mir"; +App::$strings["Tags"] = "Schlagwörter"; +App::$strings["Keywords"] = "Schlüsselwörter"; +App::$strings["have"] = "habe"; +App::$strings["has"] = "hat"; +App::$strings["want"] = "will"; +App::$strings["wants"] = "will"; +App::$strings["likes"] = "gefällt"; +App::$strings["dislikes"] = "missfällt"; +App::$strings["prev"] = "vorherige"; +App::$strings["first"] = "erste"; +App::$strings["last"] = "letzte"; +App::$strings["next"] = "nächste"; +App::$strings["older"] = "älter"; +App::$strings["newer"] = "neuer"; +App::$strings["No connections"] = "Keine Verbindungen"; +App::$strings["View all %s connections"] = "Alle Verbindungen von %s anzeigen"; +App::$strings["poke"] = "anstupsen"; +App::$strings["ping"] = "anpingen"; +App::$strings["pinged"] = "pingte"; +App::$strings["prod"] = "knuffen"; +App::$strings["prodded"] = "knuffte"; +App::$strings["slap"] = "ohrfeigen"; +App::$strings["slapped"] = "ohrfeigte"; +App::$strings["finger"] = "befummeln"; +App::$strings["fingered"] = "befummelte"; +App::$strings["rebuff"] = "eine Abfuhr erteilen"; +App::$strings["rebuffed"] = "zurückgewiesen"; +App::$strings["happy"] = "glücklich"; +App::$strings["sad"] = "traurig"; +App::$strings["mellow"] = "sanft"; +App::$strings["tired"] = "müde"; +App::$strings["perky"] = "frech"; +App::$strings["angry"] = "sauer"; +App::$strings["stupefied"] = "verblüfft"; +App::$strings["puzzled"] = "verwirrt"; +App::$strings["interested"] = "interessiert"; +App::$strings["bitter"] = "verbittert"; +App::$strings["cheerful"] = "fröhlich"; +App::$strings["alive"] = "lebendig"; +App::$strings["annoyed"] = "verärgert"; +App::$strings["anxious"] = "unruhig"; +App::$strings["cranky"] = "schrullig"; +App::$strings["disturbed"] = "verstört"; +App::$strings["frustrated"] = "frustriert"; +App::$strings["depressed"] = "deprimiert"; +App::$strings["motivated"] = "motiviert"; +App::$strings["relaxed"] = "entspannt"; +App::$strings["surprised"] = "überrascht"; +App::$strings["May"] = "Mai"; +App::$strings["Unknown Attachment"] = "Unbekannter Anhang"; +App::$strings["unknown"] = "unbekannt"; +App::$strings["remove category"] = "Kategorie entfernen"; +App::$strings["remove from file"] = "aus der Datei entfernen"; +App::$strings["default"] = "Standard"; +App::$strings["Page layout"] = "Seiten-Layout"; +App::$strings["You can create your own with the layouts tool"] = "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen"; +App::$strings["Page content type"] = "Art des Seiteninhalts"; +App::$strings["Select an alternate language"] = "Wähle eine alternative Sprache"; +App::$strings["activity"] = "Aktivität"; +App::$strings["Design Tools"] = "Gestaltungswerkzeuge"; +App::$strings["Pages"] = "Seiten"; +App::$strings["Import website..."] = "Webseite importieren..."; +App::$strings["Select folder to import"] = "Ordner zum Importieren auswählen"; +App::$strings["Import from a zipped folder:"] = "Aus einem gezippten Ordner importieren:"; +App::$strings["Import from cloud files:"] = "Aus Cloud-Dateien importieren:"; +App::$strings["/cloud/channel/path/to/folder"] = "/Cloud/Kanal/Pfad/zum/Ordner"; +App::$strings["Enter path to website files"] = "Pfad zu Webseitendateien eingeben"; +App::$strings["Select folder"] = "Ordner auswählen"; +App::$strings["Export website..."] = "Webseite exportieren..."; +App::$strings["Export to a zip file"] = "In eine ZIP-Datei exportieren"; +App::$strings["website.zip"] = "website.zip"; +App::$strings["Enter a name for the zip file."] = "Geben Sie einen für die ZIP-Datei ein."; +App::$strings["Export to cloud files"] = "In Cloud-Dateien exportieren"; +App::$strings["/path/to/export/folder"] = "/Pfad/zum/exportierenden/Ordner"; +App::$strings["Enter a path to a cloud files destination."] = "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein."; +App::$strings["Specify folder"] = "Ordner angeben"; +App::$strings["Public Timeline"] = "Öffentliche Zeitleiste"; +App::$strings["Directory Options"] = "Verzeichnisoptionen"; +App::$strings["Safe Mode"] = "Sicherer Modus"; +App::$strings["Public Forums Only"] = "Nur öffentliche Foren"; +App::$strings["This Website Only"] = "Nur dieser Hub"; +App::$strings["No recipient provided."] = "Kein Empfänger angegeben"; +App::$strings["[no subject]"] = "[no subject]"; +App::$strings["Unable to determine sender."] = "Kann Absender nicht bestimmen."; +App::$strings["Stored post could not be verified."] = "Gespeicherter Beitrag konnten nicht überprüft werden."; +App::$strings["System"] = "System"; +App::$strings["New App"] = "Neue App"; +App::$strings["Suggestions"] = "Vorschläge"; +App::$strings["See more..."] = "Mehr anzeigen …"; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Du bist %1$.0f von maximal %2$.0f erlaubten Verbindungen eingegangen."; +App::$strings["Add New Connection"] = "Neue Verbindung hinzufügen"; +App::$strings["Enter channel address"] = "Adresse des Kanals eingeben"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Beispiele: bob@beispiel.com, http://beispiel.com/barbara"; +App::$strings["Notes"] = "Notizen"; +App::$strings["Remove term"] = "Eintrag löschen"; +App::$strings["Saved Searches"] = "Gespeicherte Suchanfragen"; +App::$strings["Archives"] = "Archive"; +App::$strings["Refresh"] = "Aktualisieren"; +App::$strings["Account settings"] = "Konto-Einstellungen"; +App::$strings["Channel settings"] = "Kanal-Einstellungen"; +App::$strings["Additional features"] = "Zusätzliche Funktionen"; +App::$strings["Feature/Addon settings"] = "Plugin-Einstellungen"; +App::$strings["Display settings"] = "Anzeige-Einstellungen"; +App::$strings["Manage locations"] = "Klon-Adressen verwalten"; +App::$strings["Export channel"] = "Kanal exportieren"; +App::$strings["Connected apps"] = "Verbundene Apps"; +App::$strings["Premium Channel Settings"] = "Premium-Kanal-Einstellungen"; +App::$strings["Private Mail Menu"] = "Private Nachrichten"; +App::$strings["Combined View"] = "Kombinierte Anzeige"; +App::$strings["Conversations"] = "Konversationen"; +App::$strings["Received Messages"] = "Erhaltene Nachrichten"; +App::$strings["Sent Messages"] = "Gesendete Nachrichten"; +App::$strings["No messages."] = "Keine Nachrichten."; +App::$strings["Delete conversation"] = "Unterhaltung löschen"; +App::$strings["Events Tools"] = "Kalenderwerkzeuge"; +App::$strings["Export Calendar"] = "Kalender exportieren"; +App::$strings["Import Calendar"] = "Kalender importieren"; +App::$strings["Overview"] = "Übersicht"; +App::$strings["Chat Members"] = "Chatmitglieder"; +App::$strings["Wiki List"] = "Wikiliste"; +App::$strings["Wiki Pages"] = "Wikiseiten"; +App::$strings["Bookmarked Chatrooms"] = "Gespeicherte Chatrooms"; +App::$strings["Suggested Chatrooms"] = "Chatraum-Vorschläge"; +App::$strings["photo/image"] = "Foto/Bild"; +App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Rating Tools"] = "Bewertungswerkzeuge"; +App::$strings["Rate Me"] = "Bewerte mich"; +App::$strings["View Ratings"] = "Bewertungen ansehen"; +App::$strings["Forums"] = "Foren"; +App::$strings["Tasks"] = "Aufgaben"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["Member registrations waiting for confirmation"] = "Nutzer-Anmeldungen, die auf Bestätigung warten"; +App::$strings["Inspect queue"] = "Warteschlange kontrollieren"; +App::$strings["DB updates"] = "DB-Aktualisierungen"; +App::$strings["Plugin Features"] = "Plug-In Funktionen"; +App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; +App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; +App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; +App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$strings["General Features"] = "Allgemeine Funktionen"; App::$strings["Content Expiration"] = "Verfall von Inhalten"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum."; @@ -2021,8 +2257,7 @@ App::$strings["Profile Import/Export"] = "Profil-Import/Export"; App::$strings["Save and load profile details across sites/channels"] = "Ermöglicht das Speichern von Profilen, um sie in einen anderen Kanal zu importieren"; App::$strings["Web Pages"] = "Webseiten"; App::$strings["Provide managed web pages on your channel"] = "Ermöglicht das Erstellen von Webseiten in Deinem Kanal"; -App::$strings["Hide Rating"] = "Bewertung verbergen"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verberge die Buttons zur Bewertung auf deiner Profil-Seite und deinem Kanal. Hinweis: Leute können dich weiterhin andernorts bewerten."; +App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Kanal zur Verfügung"; App::$strings["Private Notes"] = "Private Notizen"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)"; App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; @@ -2033,10 +2268,6 @@ App::$strings["Access Controlled Chatrooms"] = "Zugriffskontrollierte Chaträume App::$strings["Provide chatrooms and chat services with access control."] = "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an."; App::$strings["Smart Birthdays"] = "Smarte Geburtstage"; App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind."; -App::$strings["Expert Mode"] = "Expertenmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Aktiviert den Expertenmodus, der fortgeschrittene Konfigurationsoptionen zur Verfügung stellt"; -App::$strings["Premium Channel"] = "Premium-Kanal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; App::$strings["Post Composition Features"] = "Nachbearbeitungsfunktionen"; App::$strings["Large Photos"] = "Große Fotos"; App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet."; @@ -2045,6 +2276,8 @@ App::$strings["Even More Encryption"] = "Noch mehr Verschlüsselung"; App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)"; App::$strings["Enable Voting Tools"] = "Umfragewerkzeuge aktivieren"; App::$strings["Provide a class of post which others can vote on"] = "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)"; +App::$strings["Disable Comments"] = "Kommentare deaktivieren"; +App::$strings["Provide the option to disable comments for a post"] = "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten"; App::$strings["Delayed Posting"] = "Verzögertes Senden"; App::$strings["Allow posts to be published at a later date"] = "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen"; App::$strings["Suppress Duplicate Posts/Comments"] = "Doppelte Beiträge unterdrücken"; @@ -2052,7 +2285,6 @@ App::$strings["Prevent posts with identical content to be published with less th App::$strings["Network and Stream Filtering"] = "Netzwerk- und Stream-Filter"; App::$strings["Search by Date"] = "Suche nach Datum"; App::$strings["Ability to select posts by date ranges"] = "Möglichkeit, Beiträge nach Zeiträumen auszuwählen"; -App::$strings["Privacy Groups"] = "Gruppen"; App::$strings["Enable management and selection of privacy groups"] = "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren"; App::$strings["Save search terms for re-use"] = "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung"; App::$strings["Network Personal Tab"] = "Persönlicher Netzwerkreiter"; @@ -2061,9 +2293,7 @@ App::$strings["Network New Tab"] = "Netzwerkreiter Neu"; App::$strings["Enable tab to display all new Network activity"] = "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt"; App::$strings["Affinity Tool"] = "Beziehungs-Tool"; App::$strings["Filter stream activity by depth of relationships"] = "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann"; -App::$strings["Connection Filtering"] = "Filter für Verbindungen"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; -App::$strings["Show channel suggestions"] = "Kanalvorschläge anzeigen"; +App::$strings["Show friend and connection suggestions"] = "Freund- und Verbindungsvorschläge anzeigen"; App::$strings["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; @@ -2078,186 +2308,16 @@ App::$strings["Star Posts"] = "Beiträge mit Sternchen versehen"; App::$strings["Ability to mark special posts with a star indicator"] = "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol"; App::$strings["Tag Cloud"] = "Schlagwort-Wolke"; App::$strings["Provide a personal tag cloud on your channel page"] = "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite"; -App::$strings["Embedded content"] = "Eingebetteter Inhalt"; -App::$strings["Embedding disabled"] = "Einbetten ausgeschaltet"; -App::$strings["Who can see this?"] = "Wer kann das sehen?"; -App::$strings["Custom selection"] = "Benutzerdefinierte Auswahl"; -App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "Wähle \"Anzeigen\", um Betrachtung zuzulassen. \"Nicht anzeigen\" überstimmt und limitiert den Aktionsradius von \"Anzeigen\" für Ausnahmen."; -App::$strings["Show"] = "Anzeigen"; -App::$strings["Don't show"] = "Nicht anzeigen"; -App::$strings["Other networks and post services"] = "Andere Netzwerke und Platformen"; -App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "Beitragsberechtigungen %s können nicht geändert werden %s, nachdem der Beitrag gesendet wurde.
    Diese Berechtigungen bestimmen, wer den Beitrag sehen kann."; -App::$strings["Logged out."] = "Ausgeloggt."; -App::$strings["Failed authentication"] = "Authentifizierung fehlgeschlagen"; -App::$strings["Birthday"] = "Geburtstag"; -App::$strings["Age: "] = "Alter:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-TT oder MM-TT"; -App::$strings["never"] = "Nie"; -App::$strings["less than a second ago"] = "Vor weniger als einer Sekunde"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "vor %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "Jahr", - 1 => "Jahre", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "Monat", - 1 => "Monate", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "Woche", - 1 => "Wochen", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "Tag", - 1 => "Tage", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "Stunde", - 1 => "Stunden", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "Minute", - 1 => "Minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "Sekunde", - 1 => "Sekunden", -); -App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; -App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; -App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; -App::$strings["edit"] = "Bearbeiten"; -App::$strings["Edit group"] = "Gruppe ändern"; -App::$strings["Add privacy group"] = "Gruppe hinzufügen"; -App::$strings["Channels not in any privacy group"] = "Kanäle, die in keiner Gruppe sind"; -App::$strings["Delete this item?"] = "Dieses Element löschen?"; -App::$strings["[-] show less"] = "[-] Weniger anzeigen"; -App::$strings["[+] expand"] = "[+] aufklappen"; -App::$strings["[-] collapse"] = "[-] einklappen"; -App::$strings["Password too short"] = "Kennwort zu kurz"; -App::$strings["Passwords do not match"] = "Kennwörter stimmen nicht überein"; -App::$strings["everybody"] = "alle"; -App::$strings["Secret Passphrase"] = "geheime Passphrase"; -App::$strings["Passphrase hint"] = "Hinweis zur Passphrase"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Achtung: Berechtigungen wurden verändert, aber noch nicht gespeichert."; -App::$strings["close all"] = "Alle schließen"; -App::$strings["Nothing new here"] = "Nichts Neues hier"; -App::$strings["Rate This Channel (this is public)"] = "Diesen Kanal bewerten (öffentlich sichtbar)"; -App::$strings["Describe (optional)"] = "Beschreibung (optional)"; -App::$strings["Please enter a link URL"] = "Gib eine URL ein:"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Ungespeicherte Änderungen. Bist Du sicher, dass Du diese Seite verlassen möchtest?"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = " "; -App::$strings["ago"] = "her"; -App::$strings["from now"] = "von jetzt"; -App::$strings["less than a minute"] = "weniger als eine Minute"; -App::$strings["about a minute"] = "ungefähr eine Minute"; -App::$strings["%d minutes"] = "%d Minuten"; -App::$strings["about an hour"] = "ungefähr eine Stunde"; -App::$strings["about %d hours"] = "ungefähr %d Stunden"; -App::$strings["a day"] = "ein Tag"; -App::$strings["%d days"] = "%d Tage"; -App::$strings["about a month"] = "ungefähr ein Monat"; -App::$strings["%d months"] = "%d Monate"; -App::$strings["about a year"] = "ungefähr ein Jahr"; -App::$strings["%d years"] = "%d Jahre"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["__ctx:long__ May"] = "Mai"; -App::$strings["Jan"] = "Jan"; -App::$strings["Feb"] = "Feb"; -App::$strings["Mar"] = "Mär"; -App::$strings["Apr"] = "Apr"; -App::$strings["__ctx:short__ May"] = "Mai"; -App::$strings["Jun"] = "Jun"; -App::$strings["Jul"] = "Jul"; -App::$strings["Aug"] = "Aug"; -App::$strings["Sep"] = "Sep"; -App::$strings["Oct"] = "Okt"; -App::$strings["Nov"] = "Nov"; -App::$strings["Dec"] = "Dez"; -App::$strings["Sun"] = "So"; -App::$strings["Mon"] = "Mo"; -App::$strings["Tue"] = "Di"; -App::$strings["Wed"] = "Mi"; -App::$strings["Thu"] = "Do"; -App::$strings["Fri"] = "Fr"; -App::$strings["Sat"] = "Sa"; -App::$strings["__ctx:calendar__ today"] = "heute"; -App::$strings["__ctx:calendar__ month"] = "Monat"; -App::$strings["__ctx:calendar__ week"] = "Woche"; -App::$strings["__ctx:calendar__ day"] = "Tag"; -App::$strings["__ctx:calendar__ All day"] = "Ganztägig"; -App::$strings["view full size"] = "In Vollbildansicht anschauen"; -App::$strings["No Subject"] = "Kein Betreff"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU-Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot!"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "Bild überschreitet das Webseitenlimit von %lu Bytes"; -App::$strings["Image file is empty."] = "Bilddatei ist leer."; -App::$strings["Photo storage failed."] = "Fotospeicherung fehlgeschlagen."; -App::$strings["a new photo"] = "ein neues Foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s hat %2\$s auf %3\$s veröffentlicht"; -App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; -App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; -App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; -App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; -App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; -App::$strings["New Page"] = "Neue Seite"; -App::$strings["Title"] = "Titel"; -App::$strings["Can view my normal stream and posts"] = "Kann meine normalen Beiträge sehen"; -App::$strings["Can view my default channel profile"] = "Kann mein Standardprofil sehen"; -App::$strings["Can view my connections"] = "Kann meine Verbindungen sehen"; -App::$strings["Can view my file storage and photos"] = "Kann meine Datei- und Bilderordner sehen"; -App::$strings["Can view my webpages"] = "Kann meine Webseiten sehen"; -App::$strings["Can send me their channel stream and posts"] = "Kann mir die Beiträge aus seinem/ihrem Kanal schicken"; -App::$strings["Can post on my channel page (\"wall\")"] = "Kann auf meiner Kanal-Seite (\"wall\") Beiträge veröffentlichen"; -App::$strings["Can comment on or like my posts"] = "Darf meine Beiträge kommentieren und mögen/nicht mögen"; -App::$strings["Can send me private mail messages"] = "Kann mir private Nachrichten schicken"; -App::$strings["Can like/dislike stuff"] = "Kann andere Elemente mögen/nicht mögen"; -App::$strings["Profiles and things other than posts/comments"] = "Profile und alles außer Beiträge und Kommentare"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Kann an alle meine Kontakte via @-Erwähnung Nachrichten weiterleiten"; -App::$strings["Advanced - useful for creating group forum channels"] = "Fortgeschritten - sinnvoll, um Gruppen-Kanäle/-Foren zu erstellen"; -App::$strings["Can chat with me (when available)"] = "Kann mit mir chatten (wenn verfügbar)"; -App::$strings["Can write to my file storage and photos"] = "Kann in meine Datei- und Bilderordner schreiben"; -App::$strings["Can edit my webpages"] = "Kann meine Webseiten bearbeiten"; -App::$strings["Can source my public posts in derived channels"] = "Kann meine öffentlichen Beiträge als Quellen für Kanäle verwenden"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Etwas fortgeschritten – sehr nützlich in offenen Gemeinschaften"; -App::$strings["Can administer my channel resources"] = "Kann meine Kanäle administrieren"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Sehr fortgeschritten. Bearbeite das nur, wenn Du genau weißt, was Du tust"; -App::$strings["Social Networking"] = "Soziales Netzwerk"; -App::$strings["Social - Mostly Public"] = "Soziales Netzwerk - Weitgehend öffentlich"; -App::$strings["Social - Restricted"] = "Soziales Netzwerk - Beschränkt"; -App::$strings["Social - Private"] = "Soziales Netzwerk - Privat"; -App::$strings["Community Forum"] = "Forum"; -App::$strings["Forum - Mostly Public"] = "Forum - Weitgehend öffentlich"; -App::$strings["Forum - Restricted"] = "Forum - Beschränkt"; -App::$strings["Forum - Private"] = "Forum - Privat"; -App::$strings["Feed Republish"] = "Teilen von Feeds"; -App::$strings["Feed - Mostly Public"] = "Feeds - Weitgehend öffentlich"; -App::$strings["Feed - Restricted"] = "Feeds - Beschränkt"; -App::$strings["Special Purpose"] = "Für besondere Zwecke"; -App::$strings["Special - Celebrity/Soapbox"] = "Speziell - Mitteilungs-Kanal (keine Kommentare)"; -App::$strings["Special - Group Repository"] = "Speziell - Gruppenarchiv"; -App::$strings["Custom/Expert Mode"] = "Benutzerdefiniert/Expertenmodus"; -App::$strings[" and "] = "und"; -App::$strings["public profile"] = "öffentliches Profil"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s hat %2\$s auf “%3\$s” geändert"; -App::$strings["Visit %1\$s's %2\$s"] = "Besuche %1\$s's %2\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s hat ein aktualisiertes %2\$s, %3\$s wurde verändert."; -App::$strings["Attachments:"] = "Anhänge:"; -App::$strings["\$Projectname event notification:"] = "\$Projectname-Terminbenachrichtigung:"; +App::$strings["Connection Filtering"] = "Filter für Verbindungen"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)"; +App::$strings["Premium Channel"] = "Premium-Kanal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Ermöglicht es, Einschränkungen und Bedingungen für Verbindungen dieses Kanals festzulegen"; +App::$strings["Advanced Directory Search"] = "Erweiterte Verzeichnissuche"; +App::$strings["Allows creation of complex directory search queries"] = "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen"; +App::$strings["Advanced Theme and Layout Settings"] = "Erweiterte Design- und Layout-Einstellungen"; +App::$strings["Allows fine tuning of themes and page layouts"] = "Erlaubt die Feineinstellung von Designs und Seitenlayouts"; App::$strings["Focus (Hubzilla default)"] = "Focus (Voreinstellung für Hubzilla)"; App::$strings["Theme settings"] = "Theme-Einstellungen"; -App::$strings["Select scheme"] = "Schema wählen"; App::$strings["Narrow navbar"] = "Schmale Navigationsleiste"; App::$strings["Navigation bar background color"] = "Hintergrundfarbe der Navigationsleiste"; App::$strings["Navigation bar gradient top color"] = "Farbverlauf der Navigationsleiste: Farbe oben"; @@ -2294,6 +2354,7 @@ App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Update %s failed. See error logs."] = "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen."; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; App::$strings["Create an account to access services and applications within the Hubzilla"] = "Erstelle ein Konto, um Anwendungen und Dienste innerhalb von Hubzilla nutzen zu können."; +App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; -- cgit v1.2.3 From 26138ac46d5cb553dde3f37d00d502f26908bea5 Mon Sep 17 00:00:00 2001 From: Wave72 Date: Thu, 22 Sep 2016 17:22:03 +0200 Subject: Updated Italian strings --- view/it/hmessages.po | 12297 +++++++++++++++++++++++++------------------------ view/it/hstrings.php | 2006 ++++---- 2 files changed, 7174 insertions(+), 7129 deletions(-) (limited to 'view') diff --git a/view/it/hmessages.po b/view/it/hmessages.po index f1476e6c0..72da81a4a 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-09-02 00:02-0700\n" -"PO-Revision-Date: 2016-09-07 13:28+0000\n" +"POT-Creation-Date: 2016-09-17 14:51-0700\n" +"PO-Revision-Date: 2016-09-21 08:59+0000\n" "Last-Translator: Paolo Wave \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -92,10 +92,11 @@ msgstr "Speciale - Repository di gruppo" #: ../../Zotlabs/Access/PermissionRoles.php:204 #: ../../Zotlabs/Module/Register.php:213 -#: ../../Zotlabs/Module/Settings.php:1245 -#: ../../Zotlabs/Module/New_channel.php:132 ../../include/permissions.php:949 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Settings/Channel.php:442 +#: ../../include/permissions.php:949 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 msgid "Other" msgstr "Altro" @@ -172,7 +173,7 @@ msgstr "Può amministrare il mio canale" msgid "parent" msgstr "cartella superiore" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2665 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 msgid "Collection" msgstr "Cartella" @@ -196,17 +197,17 @@ msgstr "Appuntamenti ricevuti" msgid "Schedule Outbox" msgstr "Appuntamenti inviati" -#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:800 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:789 #: ../../Zotlabs/Module/Photos.php:1249 #: ../../Zotlabs/Module/Embedphotos.php:147 ../../Zotlabs/Lib/Apps.php:490 #: ../../Zotlabs/Lib/Apps.php:565 ../../include/conversation.php:1033 -#: ../../include/widgets.php:1646 +#: ../../include/widgets.php:1679 msgid "Unknown" msgstr "Sconosciuto" #: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:217 ../../include/conversation.php:1674 -#: ../../include/nav.php:96 +#: ../../Zotlabs/Lib/Apps.php:217 ../../include/nav.php:96 +#: ../../include/conversation.php:1678 msgid "Files" msgstr "Archivio file" @@ -219,7 +220,7 @@ msgid "Shared" msgstr "Condiviso" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:237 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Webpages.php:239 #: ../../Zotlabs/Module/New_channel.php:147 #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 msgid "Create" @@ -227,15 +228,17 @@ msgstr "Crea" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:325 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:827 ../../Zotlabs/Module/Photos.php:1370 #: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1659 +#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 +#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1692 msgid "Upload" msgstr "Carica" -#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Settings.php:694 -#: ../../Zotlabs/Module/Settings.php:720 ../../Zotlabs/Module/Admin.php:1236 +#: ../../Zotlabs/Storage/Browser.php:235 +#: ../../Zotlabs/Module/Admin/Channels.php:163 #: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Chat.php:250 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 msgid "Name" msgstr "Nome" @@ -244,7 +247,7 @@ msgid "Type" msgstr "Tipo" #: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1326 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 msgid "Size" msgstr "Dimensione" @@ -253,32 +256,35 @@ msgstr "Dimensione" msgid "Last Modified" msgstr "Ultima modifica" -#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Settings.php:754 -#: ../../Zotlabs/Module/Admin.php:2135 +#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Connections.php:290 #: ../../Zotlabs/Module/Connections.php:310 #: ../../Zotlabs/Module/Editblock.php:109 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Webpages.php:238 ../../Zotlabs/Module/Blocks.php:160 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Blocks.php:160 #: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Editpost.php:84 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/Apps.php:341 -#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/channel.php:959 -#: ../../include/channel.php:963 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 ../../include/menu.php:113 +#: ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/ThreadItem.php:106 ../../include/page_widgets.php:9 +#: ../../include/page_widgets.php:39 ../../include/channel.php:959 +#: ../../include/channel.php:963 ../../include/menu.php:113 msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Settings.php:755 -#: ../../Zotlabs/Module/Admin.php:1052 ../../Zotlabs/Module/Admin.php:1226 -#: ../../Zotlabs/Module/Admin.php:2136 +#: ../../Zotlabs/Storage/Browser.php:241 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Editblock.php:134 #: ../../Zotlabs/Module/Editlayout.php:137 #: ../../Zotlabs/Module/Editwebpage.php:170 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Photos.php:1179 ../../Zotlabs/Module/Webpages.php:240 -#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Connedit.php:607 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/Apps.php:342 +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Connedit.php:607 ../../Zotlabs/Module/Thing.php:261 +#: ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 ../../Zotlabs/Lib/Apps.php:342 #: ../../Zotlabs/Lib/ThreadItem.php:126 ../../include/conversation.php:660 msgid "Delete" msgstr "Elimina" @@ -310,12 +316,10 @@ msgid "Drop files here to immediately upload" msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Setup.php:220 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Api.php:12 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Settings.php:674 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:33 #: ../../Zotlabs/Module/Cover_photo.php:277 #: ../../Zotlabs/Module/Cover_photo.php:290 #: ../../Zotlabs/Module/Editblock.php:67 @@ -325,43 +329,45 @@ msgstr "Trascina i file qui per caricarli al volo" #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:104 #: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Pdledit.php:29 +#: ../../Zotlabs/Module/Appman.php:75 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Settings.php:59 #: ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 #: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Invite.php:17 #: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Item.php:214 ../../Zotlabs/Module/Item.php:222 -#: ../../Zotlabs/Module/Item.php:1073 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Profiles.php:203 ../../Zotlabs/Module/Profiles.php:601 -#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Events.php:264 +#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Profiles.php:203 +#: ../../Zotlabs/Module/Profiles.php:601 ../../Zotlabs/Module/Api.php:12 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Item.php:214 +#: ../../Zotlabs/Module/Item.php:222 ../../Zotlabs/Module/Item.php:1073 #: ../../Zotlabs/Module/New_channel.php:77 #: ../../Zotlabs/Module/New_channel.php:104 #: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 -#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 -#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 -#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Setup.php:220 ../../Zotlabs/Module/Profile.php:68 +#: ../../Zotlabs/Module/Profile.php:76 ../../Zotlabs/Module/Blocks.php:73 +#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 #: ../../Zotlabs/Module/Profile_photo.php:265 #: ../../Zotlabs/Module/Profile_photo.php:278 -#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Mail.php:121 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Pdledit.php:29 #: ../../Zotlabs/Module/Connedit.php:395 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:228 ../../Zotlabs/Module/Channel.php:269 #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 #: ../../Zotlabs/Module/Thing.php:335 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Suggest.php:30 -#: ../../Zotlabs/Module/Channel.php:104 ../../Zotlabs/Module/Channel.php:227 -#: ../../Zotlabs/Module/Channel.php:268 +#: ../../Zotlabs/Module/Photos.php:73 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 #: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../include/items.php:3496 ../../include/photos.php:27 +#: ../../include/photos.php:27 ../../include/items.php:3496 #: ../../include/attach.php:142 ../../include/attach.php:190 #: ../../include/attach.php:253 ../../include/attach.php:267 #: ../../include/attach.php:274 ../../include/attach.php:339 @@ -371,13 +377,13 @@ msgstr "Trascina i file qui per caricarli al volo" msgid "Permission denied." msgstr "Permesso negato." -#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:95 +#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:53 msgid "Not Found" msgstr "Non disponibile" #: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Page.php:94 #: ../../Zotlabs/Module/Display.php:120 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Module/Help.php:98 +#: ../../include/help.php:56 msgid "Page not found." msgstr "Pagina non trovata." @@ -404,11 +410,10 @@ msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." #: ../../Zotlabs/Module/Editblock.php:31 #: ../../Zotlabs/Module/Editlayout.php:31 #: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Connect.php:17 #: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Connect.php:17 -#: ../../include/channel.php:859 +#: ../../Zotlabs/Module/Layouts.php:31 ../../include/channel.php:859 msgid "Requested profile is not available." msgstr "Il profilo richiesto non è disponibile." @@ -424,6128 +429,6184 @@ msgstr "Assente" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" - -#: ../../Zotlabs/Module/Setup.php:188 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Dreport.php:44 +msgid "Invalid message" +msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Setup.php:192 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." +#: ../../Zotlabs/Module/Dreport.php:76 +msgid "no results" +msgstr "nessun risultato" -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Dreport.php:91 +msgid "channel sync processed" +msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Dreport.php:95 +msgid "queued" +msgstr "in coda" -#: ../../Zotlabs/Module/Setup.php:208 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." +#: ../../Zotlabs/Module/Dreport.php:99 +msgid "posted" +msgstr "inviato" -#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 -#: ../../Zotlabs/Module/Setup.php:734 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Leggi il file 'install/INSTALL.txt'." +#: ../../Zotlabs/Module/Dreport.php:103 +msgid "accepted for delivery" +msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Setup.php:268 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "updated" +msgstr "aggiornato" -#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Photos.php:960 -#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 -#: ../../Zotlabs/Module/Cal.php:333 ../../Zotlabs/Module/Cal.php:340 -msgid "Next" -msgstr "Successivo" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "update ignored" +msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "permission denied" +msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Dreport.php:117 +msgid "recipient not found" +msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." +#: ../../Zotlabs/Module/Dreport.php:120 +msgid "mail recalled" +msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." +#: ../../Zotlabs/Module/Dreport.php:123 +msgid "duplicate mail received" +msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." +#: ../../Zotlabs/Module/Dreport.php:126 +msgid "mail delivered" +msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Dreport.php:146 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Dreport.php:149 +msgid "Options" +msgstr "Opzioni" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Dreport.php:150 +msgid "Redeliver" +msgstr "Reinvia" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Register.php:55 +msgid "" +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Register.php:131 +msgid "" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Please use SSL (https) URL if available." -msgstr "Se disponibile, usa l'indirizzo SSL (https)." +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 -msgid "Please select a default timezone for your website" -msgstr "Seleziona il fuso orario predefinito per il tuo hub" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." -#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 -#: ../../Zotlabs/Module/Settings.php:692 ../../Zotlabs/Module/Settings.php:815 -#: ../../Zotlabs/Module/Settings.php:906 ../../Zotlabs/Module/Settings.php:932 -#: ../../Zotlabs/Module/Settings.php:955 -#: ../../Zotlabs/Module/Settings.php:1060 -#: ../../Zotlabs/Module/Settings.php:1255 ../../Zotlabs/Module/Admin.php:498 -#: ../../Zotlabs/Module/Admin.php:699 ../../Zotlabs/Module/Admin.php:784 -#: ../../Zotlabs/Module/Admin.php:1045 ../../Zotlabs/Module/Admin.php:1224 -#: ../../Zotlabs/Module/Admin.php:1443 ../../Zotlabs/Module/Admin.php:1670 -#: ../../Zotlabs/Module/Admin.php:1755 ../../Zotlabs/Module/Admin.php:2138 -#: ../../Zotlabs/Module/Appman.php:126 ../../Zotlabs/Module/Pdledit.php:74 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Photos.php:679 ../../Zotlabs/Module/Photos.php:1058 -#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 -#: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Profiles.php:687 ../../Zotlabs/Module/Events.php:484 -#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Mail.php:370 -#: ../../Zotlabs/Module/Connedit.php:779 ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Lib/ThreadItem.php:712 -#: ../../include/js_strings.php:22 ../../include/widgets.php:796 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" -msgstr "Salva" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." -#: ../../Zotlabs/Module/Setup.php:336 ../../Zotlabs/Module/Admin.php:485 -msgid "Basic/Minimal Social Networking" -msgstr "Social network basilare" +#: ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Setup.php:337 ../../Zotlabs/Module/Admin.php:486 -msgid "Standard Configuration (default)" -msgstr "Configurazione standard (predefinita)" +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../Zotlabs/Module/Setup.php:338 ../../Zotlabs/Module/Admin.php:487 -msgid "Professional" -msgstr "Professionale" +#: ../../Zotlabs/Module/Register.php:229 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ho più di 13 anni e accetto le %s di questo sito" -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" -msgstr "Impostazioni del hub" +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Setup.php:359 ../../Zotlabs/Module/Admin.php:508 -msgid "Server Configuration/Role" -msgstr "Configurazione del server" +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../Zotlabs/Module/Setup.php:400 -msgid "PHP version 5.5 or greater is required." -msgstr "E' necessario PHP versione 5.5 o superiore." +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../Zotlabs/Module/Setup.php:416 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Name or caption" +msgstr "Nome o titolo" -#: ../../Zotlabs/Module/Setup.php:417 -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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." +#: ../../Zotlabs/Module/Register.php:237 +#: ../../Zotlabs/Module/New_channel.php:134 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" -#: ../../Zotlabs/Module/Setup.php:421 +#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Module/New_channel.php:136 +#, php-format msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" -#: ../../Zotlabs/Module/Setup.php:435 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." -#: ../../Zotlabs/Module/Setup.php:436 -msgid "This is required for message delivery to work." -msgstr "E' necessario perché funzioni la consegna dei messaggi." +#: ../../Zotlabs/Module/Register.php:240 +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Setup.php:457 -#, 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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Setup.php:462 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puoi regolare queste impostazioni sul server in php.ini" +#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Admin/Site.php:268 +msgid "Registration" +msgstr "Registrazione" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Setup.php:487 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" +#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 +#: ../../boot.php:1721 +msgid "Register" +msgstr "Registrati" -#: ../../Zotlabs/Module/Setup.php:488 +#: ../../Zotlabs/Module/Register.php:271 msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." +msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#, php-format +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "Modificato il blocco su %s account" +msgstr[1] "Modificato il blocco verso %s" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Admin/Accounts.php:79 +msgid "Account not found" +msgstr "Account non trovato" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Admin/Accounts.php:90 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Plugins.php:336 +#: ../../Zotlabs/Module/Admin/Plugins.php:427 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Themes.php:120 +#: ../../Zotlabs/Module/Admin/Themes.php:154 +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Administration" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1557 +msgid "Accounts" +msgstr "Account" -#: ../../Zotlabs/Module/Setup.php:512 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Channels.php:151 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Plugins.php:429 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Import.php:560 ../../Zotlabs/Module/Appman.php:126 +#: ../../Zotlabs/Module/Mail.php:370 ../../Zotlabs/Module/Filestorage.php:165 +#: ../../Zotlabs/Module/Connect.php:98 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import_items.php:122 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Profiles.php:687 +#: ../../Zotlabs/Module/Events.php:484 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Setup.php:317 ../../Zotlabs/Module/Setup.php:365 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Photos.php:668 ../../Zotlabs/Module/Photos.php:1058 +#: ../../Zotlabs/Module/Photos.php:1098 ../../Zotlabs/Module/Photos.php:1216 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:241 +#: ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Settings/Account.php:126 +#: ../../Zotlabs/Module/Settings/Channel.php:452 +#: ../../Zotlabs/Module/Settings/Display.php:194 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:712 ../../include/js_strings.php:22 +#: ../../include/widgets.php:796 ../../view/theme/redbasic/php/config.php:106 +msgid "Submit" +msgstr "Salva" -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "select all" +msgstr "seleziona tutti" -#: ../../Zotlabs/Module/Setup.php:518 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" +msgstr "Data richiesta" -#: ../../Zotlabs/Module/Setup.php:530 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2208 +msgid "Email" +msgstr "Email" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: openssl PHP module required but not installed." -msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." +msgstr "Nessuna registrazione." -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Approva" -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" +msgstr "Nega" -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Block" +msgstr "Blocca" -#: ../../Zotlabs/Module/Setup.php:564 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:575 +msgid "Unblock" +msgstr "Sblocca" -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" +msgstr "ID" -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 +msgid "All Channels" +msgstr "Tutti i canali" -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" +msgstr "Data registrazione" -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" +msgstr "Ultimo accesso" -#: ../../Zotlabs/Module/Setup.php:584 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" +msgstr "Con scadenza" -#: ../../Zotlabs/Module/Setup.php:585 -#, php-format +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" +msgstr "Classe dell'account" + +#: ../../Zotlabs/Module/Admin/Accounts.php:189 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 "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +#: ../../Zotlabs/Module/Admin/Accounts.php:190 msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Setup.php:587 +#: ../../Zotlabs/Module/Admin/Channels.php:30 #, 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 bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "Censura modificata per %s canale" +msgstr[1] "Censura modificata per %s canali" -#: ../../Zotlabs/Module/Setup.php:590 +#: ../../Zotlabs/Module/Admin/Channels.php:39 #, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s canale permette/non permette codice nei contenuti" +msgstr[1] "%s canali permettono/non permettono codice nei contenuti" -#: ../../Zotlabs/Module/Setup.php:606 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the Red top " -"level folder" -msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" +#: ../../Zotlabs/Module/Admin/Channels.php:45 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canale è stato rimosso" +msgstr[1] "%s canali sono stati rimossi" -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Admin/Channels.php:66 +msgid "Channel not found" +msgstr "Canale non trovato" -#: ../../Zotlabs/Module/Setup.php:643 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." +#: ../../Zotlabs/Module/Admin/Channels.php:76 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" -#: ../../Zotlabs/Module/Setup.php:644 -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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." +#: ../../Zotlabs/Module/Admin/Channels.php:88 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" -#: ../../Zotlabs/Module/Setup.php:646 -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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." +#: ../../Zotlabs/Module/Admin/Channels.php:99 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." +#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1558 +msgid "Channels" +msgstr "Canali" -#: ../../Zotlabs/Module/Setup.php:650 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." -msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." +#: ../../Zotlabs/Module/Admin/Channels.php:154 +msgid "Censor" +msgstr "Applica censura" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Admin/Channels.php:155 +msgid "Uncensor" +msgstr "Rimuovi censura" -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" +#: ../../Zotlabs/Module/Admin/Channels.php:156 +msgid "Allow Code" +msgstr "Permetti codice" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Admin/Channels.php:157 +msgid "Disallow Code" +msgstr "Non permettere codice" -#: ../../Zotlabs/Module/Setup.php:671 -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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." +#: ../../Zotlabs/Module/Admin/Channels.php:158 +#: ../../include/conversation.php:1650 +msgid "Channel" +msgstr "Canale" -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "UID" +msgstr "UID" -#: ../../Zotlabs/Module/Setup.php:732 -msgid "

    What next

    " -msgstr "

    I prossimi passi

    " +#: ../../Zotlabs/Module/Admin/Channels.php:164 +#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 +msgid "Address" +msgstr "Indirizzo" -#: ../../Zotlabs/Module/Setup.php:733 +#: ../../Zotlabs/Module/Admin/Channels.php:166 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." +"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 "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#: ../../Zotlabs/Module/Admin/Channels.php:167 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "La chiamata all'URL restituisce questo errore: %1$s" +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" -msgstr "Canale sconosciuto" +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" -msgstr "Cerca risultati con:" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " -msgstr "Gruppo di canali:" +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." -msgstr "Contatto non valido." +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "Off" -#: ../../Zotlabs/Module/Register.php:55 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio." +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "On" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "La registrazione è terminata correttamente. Per continuare controlla l'email che ti è stata inviata." +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." -msgstr "La tua richiesta è in attesa di approvazione da parte dell'amministratore di questo hub." +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1583 +#: ../../include/widgets.php:1593 +msgid "Logs" +msgstr "Log" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Pulisci" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Debugging" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "File di log" -#: ../../Zotlabs/Module/Register.php:204 +#: ../../Zotlabs/Module/Admin/Logs.php:92 msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Questo hub ha superato il numero di registrazioni giornaliere consentite. Prova di nuovo domani." +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "Relativo alla directory base del server web. Deve essere scrivibile." -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "Livello di log" -#: ../../Zotlabs/Module/Register.php:227 +#: ../../Zotlabs/Module/Admin/Plugins.php:254 +#: ../../Zotlabs/Module/Admin/Themes.php:69 +#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Filestorage.php:32 +#: ../../Zotlabs/Module/Thing.php:89 ../../Zotlabs/Module/Viewsrc.php:24 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3417 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../Zotlabs/Module/Admin/Plugins.php:284 #, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." -#: ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Admin/Plugins.php:289 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ho più di 13 anni e accetto le %s di questo sito" +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Module/Admin/Plugins.php:305 +#: ../../Zotlabs/Module/Admin/Themes.php:93 +msgid "Disable" +msgstr "Disattiva" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Module/Admin/Plugins.php:308 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Enable" +msgstr "Attiva" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Module/Admin/Plugins.php:337 +#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1561 +msgid "Plugins" +msgstr "Plugin" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" - -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Name or caption" -msgstr "Nome o titolo" - -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Per esempio: \"Mario Rossi\", \"Lisa e le sue ricette\", \"Il campionato\", \"Il gruppo di escursionismo\"" - -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" - -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Il nome breve sarà usato per creare un indirizzo facile da ricordare per il tuo canale, per esempio nickname%s" +#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +msgid "Toggle" +msgstr "Attiva/disattiva" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Module/Admin/Plugins.php:339 +#: ../../Zotlabs/Module/Admin/Themes.php:123 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/nav.php:213 ../../include/widgets.php:680 +msgid "Settings" +msgstr "Impostazioni" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Select a channel role with your privacy requirements." -msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." +#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Themes.php:132 +msgid "Author: " +msgstr "Autore:" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Themes.php:133 +msgid "Maintainer: " +msgstr "Gestore:" -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Module/Admin/Plugins.php:348 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" -msgstr "sì" +#: ../../Zotlabs/Module/Admin/Plugins.php:349 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" -#: ../../Zotlabs/Module/Register.php:253 ../../Zotlabs/Module/Admin.php:499 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Admin/Plugins.php:350 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +msgid "Compatible Server Roles: " +msgstr "Ruoli compatibili per questo server" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1720 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +msgid "Requires: " +msgstr "Necessita di:" -#: ../../Zotlabs/Module/Register.php:271 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." -msgstr "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare." +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +#: ../../Zotlabs/Module/Admin/Plugins.php:433 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Admin/Plugins.php:402 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." -#: ../../Zotlabs/Module/Api.php:61 -msgid "Return to your app and insert this Security Code:" -msgstr "Ritorna alla tua app e inserisci questo Security Code:" +#: ../../Zotlabs/Module/Admin/Plugins.php:403 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" -#: ../../Zotlabs/Module/Api.php:83 -msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" +#: ../../Zotlabs/Module/Admin/Plugins.php:404 +msgid "(optional)" +msgstr "(facoltativo)" -#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Settings.php:683 -#: ../../Zotlabs/Module/Admin.php:461 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Removeme.php:63 ../../include/dir_fns.php:143 -#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 -#: ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "Yes" -msgstr "Sì" +#: ../../Zotlabs/Module/Admin/Plugins.php:405 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" -#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Settings.php:683 -#: ../../Zotlabs/Module/Admin.php:459 ../../Zotlabs/Module/Menu.php:100 -#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 -#: ../../Zotlabs/Module/Photos.php:664 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 -#: ../../Zotlabs/Module/Events.php:462 ../../Zotlabs/Module/Events.php:463 -#: ../../Zotlabs/Module/Events.php:472 ../../Zotlabs/Module/Connedit.php:408 -#: ../../Zotlabs/Module/Connedit.php:686 ../../Zotlabs/Module/Removeme.php:63 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1742 -msgid "No" -msgstr "No" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Install new repo" +msgstr "Installa un nuovo repository" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 +msgid "Install" +msgstr "Installa" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 +#: ../../Zotlabs/Module/Wiki.php:171 ../../Zotlabs/Module/Wiki.php:211 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../include/conversation.php:1247 ../../include/conversation.php:1296 +msgid "Cancel" +msgstr "Annulla" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Admin/Plugins.php:435 +msgid "Manage Repos" +msgstr "Gestisci i repository" -#: ../../Zotlabs/Module/Settings.php:64 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" -#: ../../Zotlabs/Module/Settings.php:68 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" -#: ../../Zotlabs/Module/Settings.php:72 ../../Zotlabs/Module/Settings.php:718 -#: ../../Zotlabs/Module/Admin.php:1457 ../../Zotlabs/Lib/Apps.php:334 +#: ../../Zotlabs/Module/Admin/Plugins.php:443 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:334 msgid "Update" msgstr "Aggiorna" -#: ../../Zotlabs/Module/Settings.php:138 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" +#: ../../Zotlabs/Module/Admin/Plugins.php:444 +msgid "Switch branch" +msgstr "Cambia branch" -#: ../../Zotlabs/Module/Settings.php:144 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:989 +msgid "Remove" +msgstr "Rimuovi" -#: ../../Zotlabs/Module/Settings.php:184 -msgid "Token saved." -msgstr "Token salvato." +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" -#: ../../Zotlabs/Module/Settings.php:316 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" +msgstr "Nome breve del campo" -#: ../../Zotlabs/Module/Settings.php:319 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" +msgstr "Nome di sistema del campo" -#: ../../Zotlabs/Module/Settings.php:328 -msgid "System failure storing new email. Please try again." -msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" +msgstr "Tipo di dati" -#: ../../Zotlabs/Module/Settings.php:336 -msgid "Technical skill level updated" -msgstr "Livello tecnico aggiornato" +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" +msgstr "Nome del campo" -#: ../../Zotlabs/Module/Settings.php:352 -msgid "Password verification failed." -msgstr "Verifica della password fallita." +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" +msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../Zotlabs/Module/Settings.php:359 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" +msgstr "Testo di aiuto" -#: ../../Zotlabs/Module/Settings.php:363 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" -#: ../../Zotlabs/Module/Settings.php:377 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Module/Rbmark.php:32 ../../Zotlabs/Module/Rbmark.php:104 +#: ../../include/text.php:972 ../../include/text.php:984 +#: ../../include/widgets.php:201 +msgid "Save" +msgstr "Salva" -#: ../../Zotlabs/Module/Settings.php:379 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" -#: ../../Zotlabs/Module/Settings.php:440 ../../Zotlabs/Module/Settings.php:444 -#: ../../Zotlabs/Module/Settings.php:445 ../../Zotlabs/Module/Settings.php:448 -#: ../../Zotlabs/Module/Settings.php:459 ../../Zotlabs/Module/Connedit.php:627 -#: ../../include/channel.php:402 ../../include/channel.php:403 -#: ../../include/channel.php:410 ../../include/selectors.php:123 -#: ../../include/widgets.php:531 -msgid "Friends" -msgstr "Amici" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" -#: ../../Zotlabs/Module/Settings.php:628 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1564 +msgid "Profile Fields" +msgstr "Campi del profilo" -#: ../../Zotlabs/Module/Settings.php:691 ../../Zotlabs/Module/Settings.php:717 -#: ../../Zotlabs/Module/Settings.php:753 -msgid "Add application" -msgstr "Aggiungi una app" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" -#: ../../Zotlabs/Module/Settings.php:693 ../../Zotlabs/Module/Settings.php:719 -#: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Admin.php:1428 ../../Zotlabs/Module/Wiki.php:171 -#: ../../Zotlabs/Module/Wiki.php:211 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1243 -#: ../../include/conversation.php:1292 -msgid "Cancel" -msgstr "Annulla" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" -#: ../../Zotlabs/Module/Settings.php:694 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" -#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:721 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" +msgstr "Tutti i campi disponibili" -#: ../../Zotlabs/Module/Settings.php:695 ../../Zotlabs/Module/Settings.php:696 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" +msgstr "Campi personalizzati" -#: ../../Zotlabs/Module/Settings.php:696 ../../Zotlabs/Module/Settings.php:722 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" -#: ../../Zotlabs/Module/Settings.php:697 ../../Zotlabs/Module/Settings.php:723 -msgid "Redirect" -msgstr "Redirect" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Queue Statistics" +msgstr "Statistiche della coda" -#: ../../Zotlabs/Module/Settings.php:697 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Total Entries" +msgstr "Totale" -#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Settings.php:724 -msgid "Icon url" -msgstr "Url icona" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Priority" +msgstr "Priorità" -#: ../../Zotlabs/Module/Settings.php:698 ../../Zotlabs/Module/Sources.php:112 -#: ../../Zotlabs/Module/Sources.php:147 -msgid "Optional" -msgstr "Facoltativo" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Destination URL" +msgstr "URL di destinazione" -#: ../../Zotlabs/Module/Settings.php:709 -msgid "Application not found." -msgstr "Applicazione non trovata." +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" -#: ../../Zotlabs/Module/Settings.php:752 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" -#: ../../Zotlabs/Module/Settings.php:756 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../Zotlabs/Module/Admin/Queue.php:42 +msgid "Last known contact" +msgstr "Ultimo scambio dati" -#: ../../Zotlabs/Module/Settings.php:757 -msgid "No name" -msgstr "Nessun nome" +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently" +" insecure." +msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." -#: ../../Zotlabs/Module/Settings.php:758 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" +msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" -#: ../../Zotlabs/Module/Settings.php:771 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"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/
    " -#: ../../Zotlabs/Module/Settings.php:778 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, unless " +"embedded content from that site is explicitly blocked." +msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." -#: ../../Zotlabs/Module/Settings.php:798 -msgid "Beginner/Basic" -msgstr "Principiante" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1559 +msgid "Security" +msgstr "Sicurezza" -#: ../../Zotlabs/Module/Settings.php:799 -msgid "Novice - not skilled but willing to learn" -msgstr "Novizio - disposto a imparare" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Blocca pagine pubbliche" -#: ../../Zotlabs/Module/Settings.php:800 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermedio - con alcune conoscenze tecniche" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:801 -msgid "Advanced - very comfortable" -msgstr "Avanzato - a mio agio con gli aspetti tecnici" +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:802 -msgid "Expert - I can write computer code" -msgstr "Esperto - posso scrivere codice" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" -#: ../../Zotlabs/Module/Settings.php:803 -msgid "Wizard - I probably know more than you do" -msgstr "Genio - probabilmente ne so più di te" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Domini email consentiti" -#: ../../Zotlabs/Module/Settings.php:810 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" -#: ../../Zotlabs/Module/Settings.php:811 -msgid "Current Password" -msgstr "Password attuale" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" -#: ../../Zotlabs/Module/Settings.php:812 -msgid "Enter New Password" -msgstr "Nuova password" +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:813 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" -#: ../../Zotlabs/Module/Settings.php:813 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" -#: ../../Zotlabs/Module/Settings.php:814 -msgid "Your technical skill level" -msgstr "Il tuo livello tecnico" +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" -#: ../../Zotlabs/Module/Settings.php:814 -msgid "Used to provide a member experience matched to your comfort level" -msgstr "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" -#: ../../Zotlabs/Module/Settings.php:816 -#: ../../Zotlabs/Module/Settings.php:1262 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" -#: ../../Zotlabs/Module/Settings.php:817 -#: ../../Zotlabs/Module/Removeaccount.php:61 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi canali" -#: ../../Zotlabs/Module/Settings.php:818 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." +msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." -#: ../../Zotlabs/Module/Settings.php:852 -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." -msgstr "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" +msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" -#: ../../Zotlabs/Module/Settings.php:854 -msgid "" -"You may also provide dropbox style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" -msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." +msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." -#: ../../Zotlabs/Module/Settings.php:889 ../../include/widgets.php:647 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" -#: ../../Zotlabs/Module/Settings.php:896 -msgid "Login Name" -msgstr "Nome utente" +#: ../../Zotlabs/Module/Admin/Site.php:135 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." -#: ../../Zotlabs/Module/Settings.php:897 -msgid "Login Password" -msgstr "Password" +#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 +msgid "Default" +msgstr "Predefinito" -#: ../../Zotlabs/Module/Settings.php:898 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../Zotlabs/Module/Admin/Site.php:172 +#: ../../Zotlabs/Module/Settings/Display.php:141 +msgid "mobile" +msgstr "mobile" -#: ../../Zotlabs/Module/Settings.php:899 ../../Zotlabs/Module/Connedit.php:782 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Admin/Site.php:174 +msgid "experimental" +msgstr "sperimentale" -#: ../../Zotlabs/Module/Settings.php:900 ../../Zotlabs/Module/Connedit.php:783 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Admin/Site.php:176 +msgid "unsupported" +msgstr "non supportato" -#: ../../Zotlabs/Module/Settings.php:902 ../../Zotlabs/Module/Connedit.php:778 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Admin/Site.php:221 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:85 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Connedit.php:686 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "No" +msgstr "No" -#: ../../Zotlabs/Module/Settings.php:904 ../../Zotlabs/Module/Connedit.php:785 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Admin/Site.php:222 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" -#: ../../Zotlabs/Module/Settings.php:905 ../../Zotlabs/Module/Connedit.php:786 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." +#: ../../Zotlabs/Module/Admin/Site.php:223 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:647 +#: ../../Zotlabs/Module/Api.php:84 ../../Zotlabs/Module/Events.php:462 +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:408 ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Photos.php:653 +#: ../../Zotlabs/Module/Settings/Channel.php:289 +#: ../../Zotlabs/Module/Settings/Display.php:101 ../../include/dir_fns.php:143 +#: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 +#: ../../view/theme/redbasic/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1743 +msgid "Yes" +msgstr "Sì" -#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:689 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Admin/Site.php:228 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" -#: ../../Zotlabs/Module/Settings.php:923 ../../Zotlabs/Module/Admin.php:688 -#: ../../Zotlabs/Module/Admin.php:689 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Admin/Site.php:229 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" -#: ../../Zotlabs/Module/Settings.php:930 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Admin/Site.php:230 +msgid "My site has free access only" +msgstr "È un servizio gratuito" -#: ../../Zotlabs/Module/Settings.php:954 -msgid "Connector Settings" -msgstr "Impostazioni del connettore" +#: ../../Zotlabs/Module/Admin/Site.php:231 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../Zotlabs/Module/Settings.php:1001 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 +msgid "Basic/Minimal Social Networking" +msgstr "Social network minimale" -#: ../../Zotlabs/Module/Settings.php:1004 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" +#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 +msgid "Standard Configuration (default)" +msgstr "Configurazione standard (predefinita)" -#: ../../Zotlabs/Module/Settings.php:1007 ../../Zotlabs/Module/Admin.php:410 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 +msgid "Professional" +msgstr "Professionale" -#: ../../Zotlabs/Module/Settings.php:1055 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Settings/Account.php:105 +msgid "Beginner/Basic" +msgstr "Principiante" -#: ../../Zotlabs/Module/Settings.php:1056 -msgid "Theme Settings" -msgstr "Impostazioni del tema" +#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Settings/Account.php:106 +msgid "Novice - not skilled but willing to learn" +msgstr "Novizio - disposto a imparare" -#: ../../Zotlabs/Module/Settings.php:1057 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" +#: ../../Zotlabs/Module/Admin/Site.php:251 +#: ../../Zotlabs/Module/Settings/Account.php:107 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio - con alcune conoscenze tecniche" -#: ../../Zotlabs/Module/Settings.php:1058 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Account.php:108 +msgid "Advanced - very comfortable" +msgstr "Avanzato - a mio agio con gli aspetti tecnici" -#: ../../Zotlabs/Module/Settings.php:1064 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../Zotlabs/Module/Admin/Site.php:253 +#: ../../Zotlabs/Module/Settings/Account.php:109 +msgid "Expert - I can write computer code" +msgstr "Esperto - posso scrivere codice" -#: ../../Zotlabs/Module/Settings.php:1065 -msgid "Select scheme" -msgstr "Scegli uno schema" +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Account.php:110 +msgid "Wizard - I probably know more than you do" +msgstr "Genio - probabilmente ne so più di te" -#: ../../Zotlabs/Module/Settings.php:1067 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1556 +msgid "Site" +msgstr "Sito" -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" +#: ../../Zotlabs/Module/Admin/Site.php:269 +msgid "File upload" +msgstr "Caricamento file" -#: ../../Zotlabs/Module/Settings.php:1068 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" +#: ../../Zotlabs/Module/Admin/Site.php:270 +msgid "Policies" +msgstr "Politiche" -#: ../../Zotlabs/Module/Settings.php:1069 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" -#: ../../Zotlabs/Module/Settings.php:1070 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Site name" +msgstr "Nome del sito" -#: ../../Zotlabs/Module/Settings.php:1070 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 +msgid "Server Configuration/Role" +msgstr "Configurazione del server" -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Maximum number of conversations to load at any time:" -msgstr "Massimo numero di conversazioni da mostrare ogni volta:" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Site default technical skill level" +msgstr "Livello tecnico predefinito per gli utenti del sito" -#: ../../Zotlabs/Module/Settings.php:1071 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Used to provide a member experience matched to technical comfort level" +msgstr "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze" -#: ../../Zotlabs/Module/Settings.php:1072 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Lock the technical skill level setting" +msgstr "Il livello tecnico non potrà essere modificato" -#: ../../Zotlabs/Module/Settings.php:1073 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" +#: ../../Zotlabs/Module/Admin/Site.php:281 +msgid "Members can set their own technical comfort level by default" +msgstr "Gli utenti possono scegliere il livello tecnico preferito" -#: ../../Zotlabs/Module/Settings.php:1074 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../Zotlabs/Module/Admin/Site.php:284 +msgid "Banner/Logo" +msgstr "Banner o logo" -#: ../../Zotlabs/Module/Settings.php:1077 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" -#: ../../Zotlabs/Module/Settings.php:1077 -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../Zotlabs/Module/Admin/Site.php:285 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" -#: ../../Zotlabs/Module/Settings.php:1078 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../Zotlabs/Module/Admin/Site.php:286 +msgid "System language" +msgstr "Lingua di sistema" -#: ../../Zotlabs/Module/Settings.php:1079 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "System theme" +msgstr "Tema di sistema" -#: ../../Zotlabs/Module/Settings.php:1079 -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "click to expand content exceeding this height" -msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" +#: ../../Zotlabs/Module/Admin/Site.php:287 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" -#: ../../Zotlabs/Module/Settings.php:1080 -msgid "Grid page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti della tua rete (in pixel)" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:1110 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../Zotlabs/Module/Admin/Site.php:288 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" -#: ../../Zotlabs/Module/Settings.php:1111 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" -#: ../../Zotlabs/Module/Settings.php:1112 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../Zotlabs/Module/Admin/Site.php:290 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../Zotlabs/Module/Settings.php:1113 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" -#: ../../Zotlabs/Module/Settings.php:1114 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." -#: ../../Zotlabs/Module/Settings.php:1115 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../Zotlabs/Module/Settings.php:1116 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "Invitation only" +msgstr "Solo con invito" -#: ../../Zotlabs/Module/Settings.php:1117 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../Zotlabs/Module/Admin/Site.php:293 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." -#: ../../Zotlabs/Module/Settings.php:1193 -msgid "Publish your default profile in the network directory" -msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" +#: ../../Zotlabs/Module/Admin/Site.php:294 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../Zotlabs/Module/Settings.php:1198 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Vuoi essere suggerito come amico ai nuovi membri?" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Register text" +msgstr "Testo di registrazione" -#: ../../Zotlabs/Module/Settings.php:1202 -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Admin/Site.php:295 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../Zotlabs/Module/Settings.php:1207 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../Zotlabs/Module/Settings.php:1253 -msgid "Channel Settings" -msgstr "Impostazioni del canale" +#: ../../Zotlabs/Module/Admin/Site.php:296 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." -#: ../../Zotlabs/Module/Settings.php:1260 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" -#: ../../Zotlabs/Module/Settings.php:1261 ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../Zotlabs/Module/Admin/Site.php:297 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." -#: ../../Zotlabs/Module/Settings.php:1263 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../Zotlabs/Module/Admin/Site.php:298 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." -#: ../../Zotlabs/Module/Settings.php:1264 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" -#: ../../Zotlabs/Module/Settings.php:1265 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." -#: ../../Zotlabs/Module/Settings.php:1267 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../Zotlabs/Module/Admin/Site.php:300 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" -#: ../../Zotlabs/Module/Settings.php:1267 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../Zotlabs/Module/Settings.php:1269 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" -#: ../../Zotlabs/Module/Settings.php:1272 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" -#: ../../Zotlabs/Module/Settings.php:1274 -msgid "Prevents displaying in your profile that you are online" -msgstr "Non mostrare sul tuo profilo quando sei online" +#: ../../Zotlabs/Module/Admin/Site.php:302 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." -#: ../../Zotlabs/Module/Settings.php:1276 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Login on Homepage" +msgstr "Login sulla homepage" -#: ../../Zotlabs/Module/Settings.php:1277 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" -#: ../../Zotlabs/Module/Settings.php:1278 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" -#: ../../Zotlabs/Module/Settings.php:1279 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Directory Server URL" +msgstr "URL del directory server" -#: ../../Zotlabs/Module/Settings.php:1280 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "Default directory server" +msgstr "Directory server predefinito" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Proxy user" +msgstr "Utente proxy" -#: ../../Zotlabs/Module/Settings.php:1282 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../Zotlabs/Module/Admin/Site.php:309 +msgid "Proxy URL" +msgstr "URL proxy" -#: ../../Zotlabs/Module/Settings.php:1284 -msgid "Channel Permission Limits" -msgstr "Limiti sui permessi del canale" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Network timeout" +msgstr "Timeout rete" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "Expire other channel content after this many days" -msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Delivery interval" +msgstr "Recapito ritardato" -#: ../../Zotlabs/Module/Settings.php:1286 -#, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " +#: ../../Zotlabs/Module/Admin/Site.php:311 +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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" -#: ../../Zotlabs/Module/Settings.php:1286 -msgid "The website limit takes precedence if lower than your limit." -msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." +#: ../../Zotlabs/Module/Admin/Site.php:312 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Poll interval" +msgstr "Intervallo di polling" -#: ../../Zotlabs/Module/Settings.php:1287 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." -#: ../../Zotlabs/Module/Settings.php:1288 -msgid "Default Access Control List (ACL)" -msgstr "Lista di accesso ai contenuti (ACL)" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" -#: ../../Zotlabs/Module/Settings.php:1289 ../../Zotlabs/Module/Mitem.php:154 -#: ../../Zotlabs/Module/Mitem.php:231 -msgid "(click to open/close)" -msgstr "(clicca per aprire/chiudere)" +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." -#: ../../Zotlabs/Module/Settings.php:1290 -msgid "Use my default audience setting for the type of object published" -msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../Zotlabs/Module/Settings.php:1297 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../Zotlabs/Module/Admin/Site.php:315 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Maximum private messages per day from unknown people:" -msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" +#: ../../Zotlabs/Module/Admin/Themes.php:18 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." -#: ../../Zotlabs/Module/Settings.php:1303 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../Zotlabs/Module/Admin/Themes.php:58 +msgid "No themes found." +msgstr "Nessun tema trovato." -#: ../../Zotlabs/Module/Settings.php:1306 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../Zotlabs/Module/Admin/Themes.php:114 +msgid "Screenshot" +msgstr "Istantanea dello schermo" -#: ../../Zotlabs/Module/Settings.php:1307 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../Zotlabs/Module/Admin/Themes.php:121 +#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1562 +msgid "Themes" +msgstr "Temi" -#: ../../Zotlabs/Module/Settings.php:1308 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../Zotlabs/Module/Admin/Themes.php:160 +msgid "[Experimental]" +msgstr "[Sperimentale]" -#: ../../Zotlabs/Module/Settings.php:1309 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../Zotlabs/Module/Admin/Themes.php:161 +msgid "[Unsupported]" +msgstr "[Non supportato]" -#: ../../Zotlabs/Module/Settings.php:1310 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../Zotlabs/Module/Import.php:33 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Il tuo account permette di creare al massimo %d canali." -#: ../../Zotlabs/Module/Settings.php:1311 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." -#: ../../Zotlabs/Module/Settings.php:1312 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../Zotlabs/Module/Import.php:95 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1313 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../Zotlabs/Module/Import.php:101 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." -#: ../../Zotlabs/Module/Settings.php:1314 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../Zotlabs/Module/Import.php:123 +#: ../../Zotlabs/Module/Import_items.php:88 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." -#: ../../Zotlabs/Module/Settings.php:1315 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" +#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../Zotlabs/Module/Settings.php:1316 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../Zotlabs/Module/Import.php:163 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." -#: ../../Zotlabs/Module/Settings.php:1317 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../Zotlabs/Module/Import.php:520 +#: ../../include/Import/import_diaspora.php:142 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." -#: ../../Zotlabs/Module/Settings.php:1318 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" +#: ../../Zotlabs/Module/Import.php:542 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." -#: ../../Zotlabs/Module/Settings.php:1319 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" +#: ../../Zotlabs/Module/Import.php:547 +msgid "Import Channel" +msgstr "Importa un canale" -#: ../../Zotlabs/Module/Settings.php:1322 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../Zotlabs/Module/Import.php:548 +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 "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." -#: ../../Zotlabs/Module/Settings.php:1324 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" +#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import_items.php:121 +msgid "File to Upload" +msgstr "File da caricare" -#: ../../Zotlabs/Module/Settings.php:1325 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../Zotlabs/Module/Import.php:550 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1326 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../Zotlabs/Module/Import.php:551 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" -#: ../../Zotlabs/Module/Settings.php:1326 -#: ../../Zotlabs/Module/Settings.php:1331 -#: ../../Zotlabs/Module/Settings.php:1332 -#: ../../Zotlabs/Module/Settings.php:1333 -msgid "Recommended" -msgstr "Consigliato" +#: ../../Zotlabs/Module/Import.php:552 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1327 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../Zotlabs/Module/Import.php:553 +msgid "Your old login password" +msgstr "La password per il vecchio hub" -#: ../../Zotlabs/Module/Settings.php:1328 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../Zotlabs/Module/Import.php:554 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." -#: ../../Zotlabs/Module/Settings.php:1329 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../Zotlabs/Module/Import.php:555 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" -#: ../../Zotlabs/Module/Settings.php:1329 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../Zotlabs/Module/Import.php:556 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" -#: ../../Zotlabs/Module/Settings.php:1330 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../Zotlabs/Module/Import.php:557 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." -#: ../../Zotlabs/Module/Settings.php:1331 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Ratings.php:83 +#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Photos.php:509 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Settings.php:1332 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../Zotlabs/Module/Directory.php:243 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Settings.php:1333 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Settings.php:1334 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Settings.php:1335 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Settings.php:1337 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 +msgid "Age:" +msgstr "Età:" -#: ../../Zotlabs/Module/Settings.php:1337 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/event.php:52 +#: ../../include/event.php:84 ../../include/bb2diaspora.php:507 +#: ../../include/channel.php:1049 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Settings.php:1339 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Settings.php:1340 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambia il funzionamento di questo account per necessità particolari" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Settings.php:1342 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Settings.php:1343 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/channel.php:1034 +#: ../../include/connections.php:78 ../../include/conversation.php:957 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Settings.php:1343 -#: ../../Zotlabs/Module/Settings.php:1344 -msgid "%Y - current year, %m - current month" -msgstr "%Y - anno corrente, %m - mese corrente" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Settings.php:1344 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Settings.php:1346 -msgid "Personal menu to display in your channel pages" -msgstr "Menu personale da mostrare sulle pagine del tuo canale" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Settings.php:1347 ../../Zotlabs/Module/Removeme.php:64 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Contatti in comune:" -#: ../../Zotlabs/Module/Settings.php:1348 -msgid "Remove this channel." -msgstr "Elimina questo canale." +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Settings.php:1349 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Settings.php:1350 -msgid "Start calendar week on monday" -msgstr "La settimana inizia il lunedì" +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/conversation.php:1667 ../../include/nav.php:95 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." -msgstr "Elemento non valido." +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 -#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 -msgid "Channel not found." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Page.php:131 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "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." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin.php:2055 -#: ../../Zotlabs/Module/Admin.php:2075 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:926 -#: ../../include/text.php:938 ../../include/widgets.php:201 -msgid "Save" -msgstr "Salva" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Admin.php:77 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Admin.php:164 ../../Zotlabs/Module/Admin.php:1268 -#: ../../Zotlabs/Module/Admin.php:1583 ../../Zotlabs/Module/Filestorage.php:32 -#: ../../Zotlabs/Module/Display.php:40 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3417 -msgid "Item not found." -msgstr "Elemento non trovato." +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Admin.php:197 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Admin.php:198 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../Zotlabs/Module/Admin.php:199 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Admin.php:200 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../Zotlabs/Module/Admin.php:211 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Admin.php:212 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Admin.php:213 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:960 +msgid "Ratings" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Admin.php:219 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../Zotlabs/Module/Admin.php:236 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" -#: ../../Zotlabs/Module/Admin.php:241 ../../Zotlabs/Module/Admin.php:496 -#: ../../Zotlabs/Module/Admin.php:722 ../../Zotlabs/Module/Admin.php:766 -#: ../../Zotlabs/Module/Admin.php:1043 ../../Zotlabs/Module/Admin.php:1222 -#: ../../Zotlabs/Module/Admin.php:1350 ../../Zotlabs/Module/Admin.php:1441 -#: ../../Zotlabs/Module/Admin.php:1634 ../../Zotlabs/Module/Admin.php:1668 -#: ../../Zotlabs/Module/Admin.php:1753 -msgid "Administration" -msgstr "Amministrazione" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Admin.php:242 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 +#: ../../include/nav.php:95 ../../include/conversation.php:1671 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Admin.php:245 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." +msgstr "Elemento non valido." -#: ../../Zotlabs/Module/Admin.php:246 ../../Zotlabs/Module/Admin.php:726 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Block.php:43 +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Admin.php:247 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Module/Page.php:131 +msgid "" +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "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." -#: ../../Zotlabs/Module/Admin.php:248 ../../Zotlabs/Module/Admin.php:727 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" -#: ../../Zotlabs/Module/Admin.php:249 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- scegli -" -#: ../../Zotlabs/Module/Admin.php:250 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloccati" -#: ../../Zotlabs/Module/Admin.php:251 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignorati" -#: ../../Zotlabs/Module/Admin.php:373 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Nascosti" -#: ../../Zotlabs/Module/Admin.php:400 ../../include/text.php:2896 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archiviati" -#: ../../Zotlabs/Module/Admin.php:412 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1572 +msgid "New" +msgstr "Novità" -#: ../../Zotlabs/Module/Admin.php:414 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 +msgid "All" +msgstr "Tutti" -#: ../../Zotlabs/Module/Admin.php:460 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Admin.php:466 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" -#: ../../Zotlabs/Module/Admin.php:467 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Admin.php:468 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" -#: ../../Zotlabs/Module/Admin.php:469 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" -#: ../../Zotlabs/Module/Admin.php:497 ../../include/widgets.php:1523 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" -#: ../../Zotlabs/Module/Admin.php:500 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostra solo i contatti archiviati" -#: ../../Zotlabs/Module/Admin.php:501 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Admin.php:502 ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Admin.php:506 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Admin.php:510 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../Zotlabs/Module/Admin.php:511 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Admin.php:512 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Network" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Stato" -#: ../../Zotlabs/Module/Admin.php:513 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema" +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "In contatto" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Admin.php:514 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignora il contatto" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Notifications.php:55 +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Ignore" +msgstr "Ignora" -#: ../../Zotlabs/Module/Admin.php:516 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 +#: ../../include/nav.php:191 ../../include/text.php:901 +msgid "Connections" +msgstr "Contatti" -#: ../../Zotlabs/Module/Admin.php:517 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite." +#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/nav.php:170 +#: ../../include/acl_selectors.php:174 ../../include/text.php:971 +#: ../../include/text.php:983 ../../include/widgets.php:315 +msgid "Search" +msgstr "Cerca" -#: ../../Zotlabs/Module/Admin.php:518 -msgid "Does this site allow new member registration?" -msgstr "Questo sito permette a nuovi utenti di registrarsi?" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Ricerca tra i contatti" -#: ../../Zotlabs/Module/Admin.php:519 -msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:61 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../Zotlabs/Module/Admin.php:520 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Come descriveresti il tipo di servizio proposto da questo server?" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Copertine del canale" -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:135 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Admin.php:521 -msgid "Will be displayed prominently on the registration page." -msgstr "Sarà mostrato ben visibile nella pagina di registrazione." +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../Zotlabs/Module/Admin.php:522 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:223 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Admin.php:522 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file." +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:242 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Admin.php:523 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 +msgid "female" +msgstr "femmina" -#: ../../Zotlabs/Module/Admin.php:523 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect." +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Admin.php:524 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 +msgid "male" +msgstr "maschio" -#: ../../Zotlabs/Module/Admin.php:524 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo." +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Admin.php:525 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio." +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 +msgid "cover photo" +msgstr "Copertina del canale" -#: ../../Zotlabs/Module/Admin.php:526 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:300 +#: ../../Zotlabs/Module/Profile_photo.php:341 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../Zotlabs/Module/Admin.php:526 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:387 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:388 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../Zotlabs/Module/Admin.php:527 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito." +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Carica una copertina" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +#: ../../Zotlabs/Module/Settings/Channel.php:399 +msgid "or" +msgstr "o" -#: ../../Zotlabs/Module/Admin.php:528 -msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione." +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "skip this step" +msgstr "salta questo passaggio" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:396 +msgid "select a photo from your photo albums" +msgstr "seleziona una foto dai tuoi album" -#: ../../Zotlabs/Module/Admin.php:529 -msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:415 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../Zotlabs/Module/Admin.php:530 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:416 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../Zotlabs/Module/Admin.php:530 -msgid "" -"Display contextual help for the current page when the help button is " -"pressed." -msgstr "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:418 +msgid "Done Editing" +msgstr "Modifica terminata" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Admin.php:532 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Name" +msgstr "Nome del block" -#: ../../Zotlabs/Module/Admin.php:534 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Editblock.php:111 +#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 +#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 +#: ../../include/conversation.php:1148 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" -#: ../../Zotlabs/Module/Admin.php:535 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1259 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../Zotlabs/Module/Editblock.php:133 +msgid "Edit Block" +msgstr "Modifica il block" -#: ../../Zotlabs/Module/Admin.php:536 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." +#: ../../Zotlabs/Module/Editlayout.php:127 +#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Admin.php:537 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:131 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Admin.php:537 -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 "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati." +#: ../../Zotlabs/Module/Editlayout.php:136 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Editwebpage.php:142 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Admin.php:538 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5" +#: ../../Zotlabs/Module/Editwebpage.php:169 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Admin.php:539 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Admin.php:539 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'." +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Admin.php:540 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Admin.php:540 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50." +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Admin.php:541 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" - -#: ../../Zotlabs/Module/Admin.php:689 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" -#: ../../Zotlabs/Module/Admin.php:697 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Admin.php:714 -msgid "No server found" -msgstr "Server non trovato" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Puoi salvare i segnalibri nei menù" -#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Admin.php:1059 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../Zotlabs/Module/Admin.php:721 -msgid "for channel" -msgstr "per il canale" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 +msgid "Menus" +msgstr "Menù" -#: ../../Zotlabs/Module/Admin.php:721 -msgid "on server" -msgstr "sul server" +#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 +msgid "Drop" +msgstr "Elimina" -#: ../../Zotlabs/Module/Admin.php:721 ../../Zotlabs/Module/Connections.php:270 -msgid "Status" -msgstr "Stato" +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:251 +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 +#: ../../include/page_widgets.php:47 +msgid "Created" +msgstr "Creato" -#: ../../Zotlabs/Module/Admin.php:723 -msgid "Server" -msgstr "Server" +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:252 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 +#: ../../include/page_widgets.php:48 +msgid "Edited" +msgstr "Modificato" -#: ../../Zotlabs/Module/Admin.php:757 -msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently" -" insecure." -msgstr "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura." +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" -#: ../../Zotlabs/Module/Admin.php:760 -msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" -msgstr "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../Zotlabs/Module/Admin.php:761 -msgid "" -"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/
    " +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../Zotlabs/Module/Admin.php:762 -msgid "" -"All other embedded content will be filtered, unless " -"embedded content from that site is explicitly blocked." -msgstr "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato." +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../Zotlabs/Module/Admin.php:767 ../../include/widgets.php:1526 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../Zotlabs/Module/Admin.php:769 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../Zotlabs/Module/Admin.php:769 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../Zotlabs/Module/Admin.php:770 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Aggiungi o rimuovi elementi di questo menù" -#: ../../Zotlabs/Module/Admin.php:771 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Deve essere unico, lo vedrai solo tu" -#: ../../Zotlabs/Module/Admin.php:772 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../Zotlabs/Module/Admin.php:773 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio." +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" -#: ../../Zotlabs/Module/Admin.php:774 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." -#: ../../Zotlabs/Module/Admin.php:774 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti" +#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 +msgid "App installed." +msgstr "App installata" -#: ../../Zotlabs/Module/Admin.php:775 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Appman.php:46 +msgid "Malformed app." +msgstr "L'app contiene errori" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Appman.php:104 +msgid "Embed code" +msgstr "Inserisci il codice" -#: ../../Zotlabs/Module/Admin.php:776 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali" +#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 +msgid "Edit App" +msgstr "Modifica app" -#: ../../Zotlabs/Module/Admin.php:777 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Appman.php:110 +msgid "Create App" +msgstr "Crea una app" -#: ../../Zotlabs/Module/Admin.php:778 -msgid "Only allow embeds from secure (SSL) websites and links." -msgstr "Permetti di incorporare contenuti solamente da siti sicuri (SSL)." +#: ../../Zotlabs/Module/Appman.php:115 +msgid "Name of app" +msgstr "Nome app" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "Allow unfiltered embedded HTML content only from these domains" -msgstr "Incorpora i contenuti HTML non filtrati solo da questi domini" +#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 +#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 +#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 +#: ../../include/datetime.php:245 +msgid "Required" +msgstr "Obbligatorio" -#: ../../Zotlabs/Module/Admin.php:779 -msgid "One site per line. By default embedded content is filtered." -msgstr "Un sito per riga. Normalmente i contenuti incorporati sono filtrati." +#: ../../Zotlabs/Module/Appman.php:116 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" -#: ../../Zotlabs/Module/Admin.php:780 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descrizione" -#: ../../Zotlabs/Module/Admin.php:798 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "Photo icon URL" +msgstr "URL icona" -#: ../../Zotlabs/Module/Admin.php:808 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Appman.php:118 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" -#: ../../Zotlabs/Module/Admin.php:811 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Appman.php:119 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../Zotlabs/Module/Admin.php:815 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente." +#: ../../Zotlabs/Module/Appman.php:120 +msgid "Version ID" +msgstr "ID versione" -#: ../../Zotlabs/Module/Admin.php:818 -#, php-format -msgid "Update function %s could not be found." -msgstr "Impossibile trovare la funzione di aggiornamento %s" +#: ../../Zotlabs/Module/Appman.php:121 +msgid "Price of app" +msgstr "Prezzo app" -#: ../../Zotlabs/Module/Admin.php:834 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" -#: ../../Zotlabs/Module/Admin.php:838 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../Zotlabs/Module/Admin.php:840 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Mail.php:45 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:841 -msgid "Attempt to execute this update step automatically" -msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." +#: ../../Zotlabs/Module/Mail.php:52 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../Zotlabs/Module/Admin.php:872 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/Mail.php:70 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." -#: ../../Zotlabs/Module/Admin.php:873 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/Mail.php:135 +msgid "Messages" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Admin.php:874 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Mail.php:170 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../Zotlabs/Module/Admin.php:875 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Mail.php:183 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../Zotlabs/Module/Admin.php:876 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../Zotlabs/Module/Admin.php:877 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Admin.php:878 -msgid "Last known contact" -msgstr "Ultimo scambio dati" - -#: ../../Zotlabs/Module/Admin.php:914 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "Modificato il blocco su %s account" -msgstr[1] "Modificato il blocco verso %s" +#: ../../Zotlabs/Module/Mail.php:226 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" -#: ../../Zotlabs/Module/Admin.php:921 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account eliminato" -msgstr[1] "%s account eliminati" +#: ../../Zotlabs/Module/Mail.php:234 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../Zotlabs/Module/Admin.php:957 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 +msgid "To:" +msgstr "A:" -#: ../../Zotlabs/Module/Admin.php:968 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../Zotlabs/Module/Admin.php:976 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../Zotlabs/Module/Admin.php:984 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 +#: ../../include/conversation.php:1243 +msgid "Attach file" +msgstr "Allega file" -#: ../../Zotlabs/Module/Admin.php:1044 ../../Zotlabs/Module/Admin.php:1057 -#: ../../include/widgets.php:1524 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Send" +msgstr "Invia" -#: ../../Zotlabs/Module/Admin.php:1046 ../../Zotlabs/Module/Admin.php:1225 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 +#: ../../include/conversation.php:1288 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../Zotlabs/Module/Admin.php:1047 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 +#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 +#: ../../include/conversation.php:1293 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" -#: ../../Zotlabs/Module/Admin.php:1048 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Mail.php:332 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../Zotlabs/Module/Admin.php:1048 ../../Zotlabs/Module/Admin.php:1060 -#: ../../include/network.php:2208 -msgid "Email" -msgstr "Email" +#: ../../Zotlabs/Module/Mail.php:333 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Admin.php:1049 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Mail.php:334 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../Zotlabs/Module/Admin.php:1050 -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Approve" -msgstr "Approva" +#: ../../Zotlabs/Module/Mail.php:336 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../Zotlabs/Module/Admin.php:1051 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Mail.php:353 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../Zotlabs/Module/Admin.php:1053 ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Mail.php:355 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." -#: ../../Zotlabs/Module/Admin.php:1054 ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "Sblocca" +#: ../../Zotlabs/Module/Mail.php:359 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../Zotlabs/Module/Admin.php:1061 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Mail.php:364 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" -#: ../../Zotlabs/Module/Admin.php:1062 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." -#: ../../Zotlabs/Module/Admin.php:1063 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" -#: ../../Zotlabs/Module/Admin.php:1064 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Admin.php:1065 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Help.php:27 +msgid "Documentation Search" +msgstr "Ricerca nella guida" -#: ../../Zotlabs/Module/Admin.php:1067 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Help.php:57 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" -#: ../../Zotlabs/Module/Admin.php:1068 -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 "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Module/Siteinfo.php:48 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Admin.php:1104 +#: ../../Zotlabs/Module/Home.php:92 #, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "Censura modificata per %s canale" -msgstr[1] "Censura modificata per %s canali" +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../Zotlabs/Module/Admin.php:1113 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s canale permette/non permette codice nei contenuti" -msgstr[1] "%s canali permettono/non permettono codice nei contenuti" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." +msgstr "Le informazioni remote sulla privacy non sono disponibili." -#: ../../Zotlabs/Module/Admin.php:1119 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" +msgstr "Visibile a:" -#: ../../Zotlabs/Module/Admin.php:1139 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Admin.php:1149 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "File non trovato." -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../Zotlabs/Module/Admin.php:1161 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 +#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:658 +#: ../../Zotlabs/Module/Photos.php:1047 ../../Zotlabs/Module/Chat.php:234 +#: ../../include/acl_selectors.php:179 +msgid "Permissions" +msgstr "Permessi" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Admin.php:1172 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../Zotlabs/Module/Admin.php:1223 ../../include/widgets.php:1525 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../Zotlabs/Module/Admin.php:1227 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copia/incolla questo codice per far comparire il file in un post" -#: ../../Zotlabs/Module/Admin.php:1228 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" -#: ../../Zotlabs/Module/Admin.php:1229 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "Condividi questo file" -#: ../../Zotlabs/Module/Admin.php:1230 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" -#: ../../Zotlabs/Module/Admin.php:1231 ../../include/conversation.php:1646 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "Notifica ai contatti che hai caricato questo file" -#: ../../Zotlabs/Module/Admin.php:1235 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." +msgstr "Hub non trovato." -#: ../../Zotlabs/Module/Admin.php:1237 ../../Zotlabs/Module/Locs.php:118 -#: ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" +msgstr "Continua" + +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" +msgstr "Canale premium - configurazione" + +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" +msgstr "Abilita le restrizioni del canale premium" -#: ../../Zotlabs/Module/Admin.php:1239 +#: ../../Zotlabs/Module/Connect.php:93 msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." -#: ../../Zotlabs/Module/Admin.php:1240 +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" -#: ../../Zotlabs/Module/Admin.php:1298 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." - -#: ../../Zotlabs/Module/Admin.php:1303 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../Zotlabs/Module/Connect.php:96 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" -#: ../../Zotlabs/Module/Admin.php:1319 ../../Zotlabs/Module/Admin.php:1607 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." -#: ../../Zotlabs/Module/Admin.php:1322 ../../Zotlabs/Module/Admin.php:1609 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" -#: ../../Zotlabs/Module/Admin.php:1351 ../../Zotlabs/Module/Admin.php:1442 -#: ../../include/widgets.php:1528 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" -#: ../../Zotlabs/Module/Admin.php:1352 ../../Zotlabs/Module/Admin.php:1636 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." -#: ../../Zotlabs/Module/Admin.php:1353 ../../Zotlabs/Module/Admin.php:1637 -#: ../../Zotlabs/Lib/Apps.php:216 ../../include/widgets.php:680 -#: ../../include/nav.php:213 -msgid "Settings" -msgstr "Impostazioni" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:1360 ../../Zotlabs/Module/Admin.php:1646 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3950 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." -#: ../../Zotlabs/Module/Admin.php:1361 ../../Zotlabs/Module/Admin.php:1647 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." -#: ../../Zotlabs/Module/Admin.php:1362 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:1363 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" -#: ../../Zotlabs/Module/Admin.php:1364 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" -#: ../../Zotlabs/Module/Admin.php:1365 -msgid "Compatible Server Roles: " -msgstr "Ruoli compatibili per questo server" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." -#: ../../Zotlabs/Module/Admin.php:1366 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." -#: ../../Zotlabs/Module/Admin.php:1367 ../../Zotlabs/Module/Admin.php:1447 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" -#: ../../Zotlabs/Module/Admin.php:1416 -msgid "Enter the public git repository URL of the plugin repo." -msgstr "Inserisci lo URL del repository git dei plugin." +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Membri" -#: ../../Zotlabs/Module/Admin.php:1417 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Admin.php:1418 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" +msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Admin.php:1419 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" +msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Admin.php:1426 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" +msgstr "Esporta gli elementi della pagina web" -#: ../../Zotlabs/Module/Admin.php:1427 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" +msgstr "Esporta i selezionati" -#: ../../Zotlabs/Module/Admin.php:1449 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 +#: ../../include/nav.php:109 ../../include/conversation.php:1724 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Admin.php:1450 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Photos.php:1078 +#: ../../include/conversation.php:1231 +msgid "Share" +msgstr "Condividi" -#: ../../Zotlabs/Module/Admin.php:1451 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Events.php:680 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Layouts.php:197 +#: ../../Zotlabs/Module/Pubsites.php:59 ../../include/page_widgets.php:42 +msgid "View" +msgstr "Guarda" -#: ../../Zotlabs/Module/Admin.php:1458 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Lib/ThreadItem.php:721 +#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 +msgid "Preview" +msgstr "Anteprima" -#: ../../Zotlabs/Module/Admin.php:1459 ../../Zotlabs/Module/Photos.php:1000 -#: ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Module/Admin.php:1572 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Admin.php:1628 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Titolo della pagina" -#: ../../Zotlabs/Module/Admin.php:1635 ../../Zotlabs/Module/Admin.php:1669 -#: ../../include/widgets.php:1529 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Tipo di file non valido." -#: ../../Zotlabs/Module/Admin.php:1674 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Errore nell'apertura del file zip" -#: ../../Zotlabs/Module/Admin.php:1675 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "La cartella indicata non è valida." -#: ../../Zotlabs/Module/Admin.php:1699 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Nella pagina web non sono presenti elementi." -#: ../../Zotlabs/Module/Admin.php:1754 ../../include/widgets.php:1550 -#: ../../include/widgets.php:1560 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Importazione completata." -#: ../../Zotlabs/Module/Admin.php:1756 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 +msgid "webpage" +msgstr "pagina web" -#: ../../Zotlabs/Module/Admin.php:1762 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Admin.php:1763 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Admin.php:1763 -msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." -msgstr "Relativo alla directory base del server web. Deve essere scrivibile." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Admin.php:1764 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Impel.php:191 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Admin.php:2050 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Impel.php:194 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" -#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" +msgstr "Importazione completata" -#: ../../Zotlabs/Module/Admin.php:2051 ../../Zotlabs/Module/Admin.php:2071 -msgid "System name of field" -msgstr "Nome di sistema del campo" +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "Importa i contenuti" -#: ../../Zotlabs/Module/Admin.php:2052 ../../Zotlabs/Module/Admin.php:2072 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../Zotlabs/Module/Admin.php:2053 ../../Zotlabs/Module/Admin.php:2073 -msgid "Label on profile pages" -msgstr "Etichetta da mostrare sulla pagina del profilo" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" -#: ../../Zotlabs/Module/Admin.php:2054 ../../Zotlabs/Module/Admin.php:2074 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../Zotlabs/Module/Admin.php:2064 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../Zotlabs/Module/Admin.php:2070 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../Zotlabs/Module/Admin.php:2128 ../../include/widgets.php:1531 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../Zotlabs/Module/Admin.php:2129 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../Zotlabs/Module/Admin.php:2130 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../Zotlabs/Module/Admin.php:2130 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." -#: ../../Zotlabs/Module/Admin.php:2132 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" -#: ../../Zotlabs/Module/Admin.php:2133 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" -#: ../../Zotlabs/Module/Admin.php:2137 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "oppure visita" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1568 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:629 ../../include/widgets.php:533 -msgid "All" -msgstr "Tutti" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 +#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 +#: ../../Zotlabs/Module/Pubsites.php:51 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "forum" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Network.php:218 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Network" +#: ../../Zotlabs/Module/Network.php:227 +msgid "Privacy group: " +msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "In contatto" +#: ../../Zotlabs/Module/Network.php:253 +msgid "Invalid connection." +msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignora il contatto" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Notifications.php:55 -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:855 ../../include/nav.php:191 -msgid "Connections" -msgstr "Contatti" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "il canale" -#: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/acl_selectors.php:174 -#: ../../include/text.php:925 ../../include/text.php:937 -#: ../../include/widgets.php:315 ../../include/nav.php:170 -msgid "Search" -msgstr "Cerca" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "Oggetto" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Il comando precedente è stato annullato." -#: ../../Zotlabs/Module/Connections.php:309 -#: ../../Zotlabs/Module/Directory.php:388 -#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "Cerca" +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1991 +msgid "photo" +msgstr "la foto" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." -msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." +#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1997 +msgid "status" +msgstr "il messaggio di stato" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Copertine del canale" +#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:958 +#: ../../include/conversation.php:123 ../../include/text.php:1994 +msgid "event" +msgstr "l'evento" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:196 ../../include/photos.php:148 -msgid "Unable to process image" -msgstr "Impossibile elaborare l'immagine" - -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4331 -msgid "female" -msgstr "femmina" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non è d'accordo" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4332 +#: ../../Zotlabs/Module/Like.php:427 #, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non si esprime" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4333 -msgid "male" -msgstr "maschio" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4334 +#: ../../Zotlabs/Module/Like.php:431 #, php-format -msgid "%1$s updated his %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s non partecipa" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4336 +#: ../../Zotlabs/Module/Like.php:433 #, php-format -msgid "%1$s updated their %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1720 -msgid "cover photo" -msgstr "Copertina del canale" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." +msgstr "Comando completato." -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:300 -#: ../../Zotlabs/Module/Profile_photo.php:341 -msgid "Photo not available." -msgstr "Foto non disponibile." +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." +msgstr "Grazie." -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Carica una copertina" +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 +#: ../../Zotlabs/Module/Chat.php:255 +msgid "Create New" +msgstr "Crea nuova" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 +#: ../../include/nav.php:211 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "select a photo from your photo albums" -msgstr "seleziona una foto dai tuoi album" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:416 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../Zotlabs/Module/Dreport.php:44 -msgid "Invalid message" -msgstr "Messaggio non valido" +#: ../../Zotlabs/Module/Manage.php:172 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Dreport.php:76 -msgid "no results" -msgstr "nessun risultato" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Dreport.php:91 -msgid "channel sync processed" -msgstr "sincronizzazione del canale effettuata" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Dreport.php:95 -msgid "queued" -msgstr "in coda" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../Zotlabs/Module/Dreport.php:99 -msgid "posted" -msgstr "inviato" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../Zotlabs/Module/Dreport.php:103 -msgid "accepted for delivery" -msgstr "accettato per la spedizione" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." -#: ../../Zotlabs/Module/Dreport.php:107 -msgid "updated" -msgstr "aggiornato" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" -#: ../../Zotlabs/Module/Dreport.php:110 -msgid "update ignored" -msgstr "aggiornamento ignorato" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" -#: ../../Zotlabs/Module/Dreport.php:113 -msgid "permission denied" -msgstr "permessi non sufficienti" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" -#: ../../Zotlabs/Module/Dreport.php:117 -msgid "recipient not found" -msgstr "Destinatario non trovato" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" -#: ../../Zotlabs/Module/Dreport.php:120 -msgid "mail recalled" -msgstr "messaggio richiamato dal mittente" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" -#: ../../Zotlabs/Module/Dreport.php:123 -msgid "duplicate mail received" -msgstr "ricevuto messaggio duplicato" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" +msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" -#: ../../Zotlabs/Module/Dreport.php:126 -msgid "mail delivered" -msgstr "messaggio recapitato" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" +msgstr "Apri il link in una nuova finestra" -#: ../../Zotlabs/Module/Dreport.php:146 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Rapporto di consegna - %1$s" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" -#: ../../Zotlabs/Module/Dreport.php:149 -msgid "Options" -msgstr "Opzioni" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" +msgstr "I numeri più alti andranno in fondo all'elenco" -#: ../../Zotlabs/Module/Dreport.php:150 -msgid "Redeliver" -msgstr "Reinvia" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:17 -#: ../../Zotlabs/Module/Photos.php:520 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Viewconnections.php:23 -msgid "Public access denied." -msgstr "Accesso pubblico negato." +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" - -#: ../../Zotlabs/Module/Directory.php:311 ../../include/channel.php:1049 -#: ../../include/bb2diaspora.php:507 ../../include/event.php:52 -#: ../../include/event.php:84 -msgid "Location:" -msgstr "Luogo:" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" -#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 -#: ../../Zotlabs/Module/Suggest.php:56 ../../include/connections.php:78 -#: ../../include/channel.php:1034 ../../include/conversation.php:957 -#: ../../include/widgets.php:147 ../../include/widgets.php:184 -msgid "Connect" -msgstr "Aggiungi" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sito web:" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Nessun account valido trovato." -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Utente del sito (%s)" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "È stato richiesto di reimpostare password su %s" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" -msgstr "Questo non è un directory server" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1747 +msgid "Password Reset" +msgstr "Reimposta la password" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "La password è stata reimpostata come richiesto." -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" -msgstr "Elemento non trovato" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "La tua nuova password è" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Salva o copia la tua nuova password, quindi" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:244 -#: ../../Zotlabs/Module/Mail.php:369 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1148 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "clicca qui per accedere" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1255 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "La tua password su %s è cambiata" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Indirizzo email" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reimposta" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 +msgid "Mood" +msgstr "Umore" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 +#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nome unico (non visibile sulla pagina) - obbligatorio" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 +msgid "Profile-" +msgstr "Profilo-" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visibile sulla pagina - lascia vuoto per non avere un titolo" +#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Profiles.php:110 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" -msgstr "Puoi salvare i segnalibri nei menù" +#: ../../Zotlabs/Module/Profiles.php:151 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Profiles.php:256 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2263 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Profiles.php:427 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Profiles.php:431 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:249 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:190 -#: ../../include/page_widgets.php:47 -msgid "Created" -msgstr "Creato" +#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:250 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:191 -#: ../../include/page_widgets.php:48 -msgid "Edited" -msgstr "Modificato" +#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 +msgid "Work/Employment" +msgstr "Lavoro/impiego" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Profiles.php:446 +msgid "Religion" +msgstr "Religione" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Profiles.php:450 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Profiles.php:454 +msgid "Gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Profiles.php:458 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Profiles.php:462 +msgid "Homepage" +msgstr "Home page" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Profiles.php:466 +msgid "Interests" +msgstr "Interessi" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" -msgstr "Aggiungi o rimuovi elementi di questo menù" +#: ../../Zotlabs/Module/Profiles.php:560 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Profiles.php:644 +msgid "Hide your connections list from viewers of this profile" +msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" -msgstr "Deve essere unico, lo vedrai solo tu" +#: ../../Zotlabs/Module/Profiles.php:686 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Profiles.php:688 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 +#: ../../include/channel.php:981 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Profile Tools" +msgstr "Gestione del profilo" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." -msgstr "Non trovato." +#: ../../Zotlabs/Module/Profiles.php:691 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Profiles.php:693 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Profiles.php:695 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1563 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Personali" -#: ../../Zotlabs/Module/Appman.php:115 ../../Zotlabs/Module/Appman.php:116 -#: ../../Zotlabs/Module/Profiles.php:709 ../../Zotlabs/Module/Profiles.php:713 -#: ../../Zotlabs/Module/Events.php:452 ../../Zotlabs/Module/Events.php:457 -#: ../../include/datetime.php:245 -msgid "Required" -msgstr "Obbligatorio" +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Relation" +msgstr "Relazione" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Events.php:465 -#: ../../Zotlabs/Module/Rbmark.php:101 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Profiles.php:703 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Profiles.php:704 +msgid "Your gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Marital status" +msgstr "Stato civile" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Sexual preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Profile name" +msgstr "Nome del profilo" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Profiles.php:711 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Profiles.php:713 +msgid "Your full name" +msgstr "Il tuo nome completo" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "Title/Description" +msgstr "Titolo/descrizione" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." +#: ../../Zotlabs/Module/Profiles.php:718 +msgid "Locality/City" +msgstr "Località" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Profiles.php:719 +msgid "Region/State" +msgstr "Regione/stato" -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." -msgstr "Layout non trovato." - -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Postal/Zip code" +msgstr "CAP" -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Country" +msgstr "Nazione" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Profiles.php:726 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "Since (date)" +msgstr "dal (data)" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Profiles.php:731 +msgid "Homepage URL" +msgstr "Indirizzo home page" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Hometown" +msgstr "Città dove vivo" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Political views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Religious views" +msgstr "Orientamento religioso" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" -#: ../../Zotlabs/Module/Filestorage.php:152 -#: ../../Zotlabs/Module/Photos.php:669 ../../Zotlabs/Module/Photos.php:1047 -#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 -#: ../../Zotlabs/Module/Chat.php:234 ../../include/acl_selectors.php:179 -msgid "Permissions" -msgstr "Permessi" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Profiles.php:739 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Profiles.php:740 +msgid "Television" +msgstr "Televisione" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copia/incolla questo codice per far comparire il file in un post" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copia/incolla questo indirizzo in una pagina web per avere un link al file" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Love/Romance" +msgstr "Amore" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "School/Education" +msgstr "Scuola/educazione" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Contact information and social networks" +msgstr "Contatti e social network" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Profiles.php:747 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Profiles.php:777 ../../include/nav.php:91 +#: ../../include/channel.php:959 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:98 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3950 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:102 +msgid "System Notifications" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profili corrispondenti" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "interessi personali:" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" -msgstr "I membri potranno vedere gli altri canali del gruppo" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Nessun risultato" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." +#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 +msgid "Authorize application connection" +msgstr "Autorizza la app" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." +#: ../../Zotlabs/Module/Api.php:61 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" +#: ../../Zotlabs/Module/Api.php:71 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Membri" +#: ../../Zotlabs/Module/Api.php:83 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Le voci del calendario sono state importate." -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." -msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Non sono state trovate voci del calendario." -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:745 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:212 -#: ../../Zotlabs/Module/Profile_photo.php:311 -#: ../../include/photo/photo_driver.php:718 -msgid "Profile Photos" -msgstr "Foto del profilo" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:147 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." -#: ../../Zotlabs/Module/Photos.php:130 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento non trovato." -#: ../../Zotlabs/Module/Photos.php:151 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " +#: ../../Zotlabs/Module/Events.php:452 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" -#: ../../Zotlabs/Module/Photos.php:208 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Module/Events.php:452 +msgid "Event title" +msgstr "Titolo dell'evento" -#: ../../Zotlabs/Module/Photos.php:531 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" -#: ../../Zotlabs/Module/Photos.php:580 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Edit Category" +msgstr "Modifica la categoria" -#: ../../Zotlabs/Module/Photos.php:619 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." +#: ../../Zotlabs/Module/Events.php:455 +msgid "Category" +msgstr "Categoria" -#: ../../Zotlabs/Module/Photos.php:622 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." +#: ../../Zotlabs/Module/Events.php:458 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" -#: ../../Zotlabs/Module/Photos.php:658 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Module/Events.php:458 +msgid "Start date and time" +msgstr "Data e ora di inizio" -#: ../../Zotlabs/Module/Photos.php:662 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 +msgid "Finish date and time are not known or not relevant" +msgstr "La data e l'ora di fine non sono necessarie" -#: ../../Zotlabs/Module/Photos.php:663 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" -#: ../../Zotlabs/Module/Photos.php:664 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Finish date and time" +msgstr "Data e ora di fine" -#: ../../Zotlabs/Module/Photos.php:665 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" -#: ../../Zotlabs/Module/Photos.php:666 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Module/Events.php:463 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." -#: ../../Zotlabs/Module/Photos.php:697 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Module/Events.php:465 +msgid "Edit Description" +msgstr "Modifica la descrizione" -#: ../../Zotlabs/Module/Photos.php:745 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Module/Events.php:467 +msgid "Edit Location" +msgstr "Modifica il luogo" -#: ../../Zotlabs/Module/Photos.php:768 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 +msgid "Share this event" +msgstr "Condividi questo evento" -#: ../../Zotlabs/Module/Photos.php:770 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1263 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" -#: ../../Zotlabs/Module/Photos.php:794 ../../Zotlabs/Module/Photos.php:1337 -#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1640 -msgid "View Photo" -msgstr "Guarda la foto" +#: ../../Zotlabs/Module/Events.php:485 +msgid "Advanced Options" +msgstr "Opzioni avanzate" -#: ../../Zotlabs/Module/Photos.php:825 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1657 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 +msgid "l, F j" +msgstr "l j F" -#: ../../Zotlabs/Module/Photos.php:872 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." +#: ../../Zotlabs/Module/Events.php:619 +msgid "Edit event" +msgstr "Modifica l'evento" -#: ../../Zotlabs/Module/Photos.php:874 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Module/Events.php:621 +msgid "Delete event" +msgstr "Elimina l'evento" -#: ../../Zotlabs/Module/Photos.php:932 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 +#: ../../include/text.php:1762 +msgid "Link to Source" +msgstr "Link al sito d'origine" -#: ../../Zotlabs/Module/Photos.php:933 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Module/Events.php:655 +msgid "calendar" +msgstr "calendario" -#: ../../Zotlabs/Module/Photos.php:940 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Edit Event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 +msgid "Create Event" +msgstr "Crea un evento" -#: ../../Zotlabs/Module/Photos.php:951 ../../Zotlabs/Module/Events.php:675 -#: ../../Zotlabs/Module/Events.php:684 ../../Zotlabs/Module/Cal.php:332 -#: ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Events.php:675 ../../Zotlabs/Module/Events.php:684 +#: ../../Zotlabs/Module/Cal.php:332 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Photos.php:940 msgid "Previous" msgstr "Precendente" -#: ../../Zotlabs/Module/Photos.php:955 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Module/Events.php:676 ../../Zotlabs/Module/Events.php:685 +#: ../../Zotlabs/Module/Setup.php:272 ../../Zotlabs/Module/Cal.php:333 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Photos.php:949 +msgid "Next" +msgstr "Successivo" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 +msgid "Export" +msgstr "Esporta" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Module/Events.php:681 +msgid "Month" +msgstr "Mese" -#: ../../Zotlabs/Module/Photos.php:1037 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Module/Events.php:682 +msgid "Week" +msgstr "Settimana" -#: ../../Zotlabs/Module/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Module/Events.php:683 +msgid "Day" +msgstr "Giorno" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 +msgid "Today" +msgstr "Oggi" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Module/Events.php:717 +msgid "Event removed" +msgstr "Evento eliminato" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Module/Events.php:720 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Item.php:180 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Module/Item.php:433 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Module/Item.php:473 +msgid "Executable content type not permitted to this channel." +msgstr "I contenuti eseguibili non sono permessi su questo canale." -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Module/Item.php:858 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." -#: ../../Zotlabs/Module/Photos.php:1078 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Layouts.php:193 -#: ../../include/conversation.php:1227 -msgid "Share" -msgstr "Condividi" +#: ../../Zotlabs/Module/Item.php:991 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 -#: ../../include/conversation.php:743 -msgid "Please wait" -msgstr "Attendere" +#: ../../Zotlabs/Module/Item.php:1112 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:709 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../Zotlabs/Module/Item.php:1119 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." -#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 -#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "Commento" +#: ../../Zotlabs/Module/Item.php:1126 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." -#: ../../Zotlabs/Module/Photos.php:1099 ../../Zotlabs/Module/Webpages.php:245 -#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Lib/ThreadItem.php:721 -#: ../../include/page_widgets.php:43 ../../include/conversation.php:1200 -msgid "Preview" -msgstr "Anteprima" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" +msgstr "Crea un canale" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Module/Ping.php:265 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Module/Ping.php:313 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Module/Ping.php:323 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" - -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Module/Ping.php:346 +msgid "[today]" +msgstr "[oggi]" -#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 -#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 -#: ../../include/conversation.php:1758 -msgid "View all" -msgstr "Vedi tutto" +#: ../../Zotlabs/Module/Ping.php:355 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 -#: ../../include/channel.php:1182 ../../include/conversation.php:1782 -#: ../../include/taxonomy.php:403 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "L'identificativo della richiesta non è valido." -#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/conversation.php:1785 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Rifiuta" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 +msgid "Mark all system notifications seen" +msgstr "Segna come lette le notifiche di sistema" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 +#: ../../include/conversation.php:961 +msgid "Poke" +msgstr "Poke" -#: ../../Zotlabs/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Manda un poke" -#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Rendi privato questo post" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" +#: ../../Zotlabs/Module/Setup.php:184 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" +#: ../../Zotlabs/Module/Setup.php:188 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" +#: ../../Zotlabs/Module/Setup.php:192 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS." -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Setup.php:199 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" +#: ../../Zotlabs/Module/Setup.php:204 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" +#: ../../Zotlabs/Module/Setup.php:208 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db." -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:71 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +#: ../../Zotlabs/Module/Setup.php:209 ../../Zotlabs/Module/Setup.php:271 +#: ../../Zotlabs/Module/Setup.php:734 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:95 -msgid "Unable to download data from old server" -msgstr "Impossibile importare i dati dal vecchio hub" +#: ../../Zotlabs/Module/Setup.php:268 +msgid "System check" +msgstr "Verifica del sistema" -#: ../../Zotlabs/Module/Import_items.php:72 -#: ../../Zotlabs/Module/Import.php:101 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../Zotlabs/Module/Setup.php:273 +msgid "Check again" +msgstr "Verifica di nuovo" -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:123 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database connection" +msgstr "Connessione al database" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Per poter installare $Projectname è necessario fornire i parametri di connessione al tuo database." -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni." -#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Setup.php:298 msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza." +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "Il database deve già esistere. Se non esiste, crealo prima di continuare." -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:549 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Database Server Name" +msgstr "Server del database" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." +#: ../../Zotlabs/Module/Setup.php:302 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Database Port" +msgstr "Port del database" -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" +#: ../../Zotlabs/Module/Setup.php:303 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" -#: ../../Zotlabs/Module/Invite.php:74 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." +#: ../../Zotlabs/Module/Setup.php:304 +msgid "Database Login Name" +msgstr "Utente database" -#: ../../Zotlabs/Module/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." +#: ../../Zotlabs/Module/Setup.php:305 +msgid "Database Login Password" +msgstr "Password database" -#: ../../Zotlabs/Module/Invite.php:83 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d messaggio inviato." -msgstr[1] "%d messaggi inviati." +#: ../../Zotlabs/Module/Setup.php:306 +msgid "Database Name" +msgstr "Nome database" -#: ../../Zotlabs/Module/Invite.php:102 -msgid "You have no more invitations available" -msgstr "Non hai altri inviti disponibili" +#: ../../Zotlabs/Module/Setup.php:307 +msgid "Database Type" +msgstr "Tipo database" -#: ../../Zotlabs/Module/Invite.php:133 -msgid "Send invitations" -msgstr "Spedisci inviti" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" -#: ../../Zotlabs/Module/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla." -#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:241 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Please join my community on $Projectname." -msgstr "Entra nella mia comunità su $Projectname." - -#: ../../Zotlabs/Module/Invite.php:138 -msgid "You will need to supply this invitation code:" -msgstr "Dovrai fornire questo codice invito:" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Website URL" +msgstr "URL completo del sito" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" +#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." -#: ../../Zotlabs/Module/Invite.php:141 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Inserisci il mio indirizzo $Projectname nel riquadro di ricerca del sito." +#: ../../Zotlabs/Module/Setup.php:311 ../../Zotlabs/Module/Setup.php:361 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" +#: ../../Zotlabs/Module/Setup.php:344 +msgid "Site settings" +msgstr "Impostazioni del hub" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../Zotlabs/Module/Setup.php:400 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../Zotlabs/Module/Setup.php:401 +msgid "PHP version" +msgstr "Versione PHP" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." +#: ../../Zotlabs/Module/Setup.php:416 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web" -#: ../../Zotlabs/Module/Locs.php:66 +#: ../../Zotlabs/Module/Setup.php:417 msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Prima di rimuovere il tuo canale primario assicurati di avere scelto una sua copia (clone) come primaria." - -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" -msgstr "Sincronizzazione tra hub" +"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 "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron." -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." +#: ../../Zotlabs/Module/Setup.php:421 +msgid "PHP executable path" +msgstr "Path del comando PHP" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione." -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Profiles.php:477 -#: ../../Zotlabs/Module/Profiles.php:698 ../../Zotlabs/Module/Events.php:467 -#: ../../Zotlabs/Module/Pubsites.php:46 ../../include/js_strings.php:25 -msgid "Location" -msgstr "Posizione geografica" +#: ../../Zotlabs/Module/Setup.php:426 +msgid "Command line PHP" +msgstr "PHP da riga di comando" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../Zotlabs/Module/Setup.php:435 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"." -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." -msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." +#: ../../Zotlabs/Module/Setup.php:439 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../Zotlabs/Module/Locs.php:124 +#: ../../Zotlabs/Module/Setup.php:457 +#, php-format msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli." - -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante." - -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." +"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 dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta." -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" -msgstr "Mi piace/Non mi piace" +#: ../../Zotlabs/Module/Setup.php:462 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puoi regolare queste impostazioni sul server in php.ini" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." -msgstr "Questa funzionalità è riservata agli iscritti." +#: ../../Zotlabs/Module/Setup.php:464 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Setup.php:487 msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Per continuare devi accedere con il tuo identificativo $Projectname o registrarti come nuovo utente $Projectname." +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." -msgstr "Richiesta non valida." +#: ../../Zotlabs/Module/Setup.php:488 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" -msgstr "il canale" +#: ../../Zotlabs/Module/Setup.php:491 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" -msgstr "Oggetto" +#: ../../Zotlabs/Module/Setup.php:503 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." -msgstr "Canale non trovato." +#: ../../Zotlabs/Module/Setup.php:504 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." -msgstr "Il comando precedente è stato annullato." +#: ../../Zotlabs/Module/Setup.php:505 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1945 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "la foto" +#: ../../Zotlabs/Module/Setup.php:506 +msgid "mysqli or postgres PHP module" +msgstr "modulo PHP per mysqli oppure prostgres" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/text.php:1951 ../../include/conversation.php:148 -msgid "status" -msgstr "il messaggio di stato" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:253 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1948 -#: ../../include/conversation.php:123 ../../include/event.php:958 -msgid "event" -msgstr "l'evento" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "xml PHP module" +msgstr "modulo xml PHP" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s è d'accordo" +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 +msgid "proc_open" +msgstr "proc_open" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non è d'accordo" +#: ../../Zotlabs/Module/Setup.php:518 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non si esprime" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s partecipa" +#: ../../Zotlabs/Module/Setup.php:530 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s non partecipa" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s di %2$s: %1$s forse partecipa" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." -msgstr "Comando completato." +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." -msgstr "Grazie." +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Errore: il modulo xml PHP è richiesto per DAV ma non è installato." -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Hai creato %1$.0f dei %2$.0f canali permessi." +#: ../../Zotlabs/Module/Setup.php:564 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo." -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Setup.php:565 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi." -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Setup.php:566 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla." -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:211 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Setup.php:567 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni." -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Setup.php:570 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." -msgstr "Seleziona l'altro canale a cui vuoi passare." +#: ../../Zotlabs/Module/Setup.php:584 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP." -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Setup.php:585 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." +msgstr "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Setup.php:586 ../../Zotlabs/Module/Setup.php:607 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)." -#: ../../Zotlabs/Module/Manage.php:172 +#: ../../Zotlabs/Module/Setup.php:587 #, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +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 bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene." -#: ../../Zotlabs/Module/Manage.php:173 +#: ../../Zotlabs/Module/Setup.php:590 #, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +msgid "%s is writable" +msgstr "%s è scrivibile" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Setup.php:606 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the Red top " +"level folder" +msgstr "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../Zotlabs/Module/Setup.php:610 +msgid "store is writable" +msgstr "l'archivio è scrivibile" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Setup.php:643 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito." -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Setup.php:644 +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 "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Inserisci l'indirizzo del link o scegli il nome di un sottomenu" +#: ../../Zotlabs/Module/Setup.php:645 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server." -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "Usa l'autenticazione tramite il tuo hub, se disponibile" +#: ../../Zotlabs/Module/Setup.php:646 +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 "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser." -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "Apri il link in una nuova finestra" +#: ../../Zotlabs/Module/Setup.php:647 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto." -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../Zotlabs/Module/Setup.php:648 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser." -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "I numeri più alti andranno in fondo all'elenco" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server." -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Setup.php:671 +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 "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito." -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Setup.php:695 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Setup.php:732 +msgid "

    What next

    " +msgstr "

    I prossimi passi

    " -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Setup.php:733 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling." -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visibile a" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 +#: ../../include/widgets.php:102 +msgid "Apps" +msgstr "App" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Module/Siteinfo.php:19 +#, php-format +msgid "Version %s" +msgstr "Versione %s" -#: ../../Zotlabs/Module/Item.php:473 -msgid "Executable content type not permitted to this channel." -msgstr "I contenuti eseguibili non sono permessi su questo canale." +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Installed plugins/addons/apps:" +msgstr "App e componenti installati:" -#: ../../Zotlabs/Module/Item.php:858 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Module/Siteinfo.php:36 +msgid "No installed plugins/addons/apps" +msgstr "Nessuna app o componente installato" -#: ../../Zotlabs/Module/Item.php:991 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Module/Siteinfo.php:49 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " -#: ../../Zotlabs/Module/Item.php:1112 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." +#: ../../Zotlabs/Module/Siteinfo.php:51 +msgid "Tag: " +msgstr "Tag: " -#: ../../Zotlabs/Module/Item.php:1119 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale." +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "Last background fetch: " +msgstr "Ultima acquisizione:" -#: ../../Zotlabs/Module/Item.php:1126 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Hai raggiunto il limite massimo di %1$.0f pagine web." +#: ../../Zotlabs/Module/Siteinfo.php:55 +msgid "Current load average: " +msgstr "Carico medio attuale:" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." -msgstr "Nessun account valido trovato." +#: ../../Zotlabs/Module/Siteinfo.php:58 +msgid "Running at web location" +msgstr "In esecuzione sull'indirizzo web" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." -msgstr "La richiesta per reimpostare la password è stata inviata. Controlla la tua email." +#: ../../Zotlabs/Module/Siteinfo.php:59 +msgid "" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 -#, php-format -msgid "Site Member (%s)" -msgstr "Utente del sito (%s)" +#: ../../Zotlabs/Module/Siteinfo.php:60 +msgid "Bug reports and issues: please visit" +msgstr "Per segnalare bug e problemi: visita" -#: ../../Zotlabs/Module/Lostpass.php:44 -#, php-format -msgid "Password reset requested at %s" -msgstr "È stato richiesto di reimpostare password su %s" +#: ../../Zotlabs/Module/Siteinfo.php:62 +msgid "$projectname issues" +msgstr "Problematiche note su $projectname" -#: ../../Zotlabs/Module/Lostpass.php:67 +#: ../../Zotlabs/Module/Siteinfo.php:63 msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La richiesta non può essere verificata (potresti averla già usata precedentemente). La password non sarà reimpostata." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" -#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1746 -msgid "Password Reset" -msgstr "Reimposta la password" +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "Site Administrators" +msgstr "Amministratori del sito" -#: ../../Zotlabs/Module/Lostpass.php:91 -msgid "Your password has been reset as requested." -msgstr "La password è stata reimpostata come richiesto." +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 +msgid "Blocks" +msgstr "Block" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your new password is" -msgstr "La tua nuova password è" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titolo del block" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Save or copy your new password - and then" -msgstr "Salva o copia la tua nuova password, quindi" +#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 +msgid "Layouts" +msgstr "Layout" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "click here to login" -msgstr "clicca qui per accedere" +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/nav.php:164 ../../include/help.php:44 +#: ../../include/help.php:49 +msgid "Help" +msgstr "Guida" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puoi cambiare la tua password dalla pagina delle Impostazioni dopo aver effettuato l'accesso." +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" -#: ../../Zotlabs/Module/Lostpass.php:112 -#, php-format -msgid "Your password has changed at %s" -msgstr "La tua password su %s è cambiata" +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Description" +msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Lostpass.php:127 -msgid "Forgot your Password?" -msgstr "Hai dimenticato la password?" +#: ../../Zotlabs/Module/Layouts.php:194 +msgid "Download PDL file" +msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Lostpass.php:128 +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:212 +#: ../../Zotlabs/Module/Profile_photo.php:311 +#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:734 +#: ../../include/photo/photo_driver.php:718 +msgid "Profile Photos" +msgstr "Foto del profilo" + +#: ../../Zotlabs/Module/Profile_photo.php:186 msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Inserisci il tuo indirizzo email per reimpostare la password. Dopo aver inviato la richiesta, controlla l'email e troverai le istruzioni per continuare." +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." -#: ../../Zotlabs/Module/Lostpass.php:129 -msgid "Email Address" -msgstr "Indirizzo email" +#: ../../Zotlabs/Module/Profile_photo.php:389 +msgid "Upload Profile Photo" +msgstr "Carica la foto del profilo" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" +#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 +msgid "Import" +msgstr "Importa" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Nessun canale." -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" -msgstr "Scegli il tuo umore attuale per mostrarlo agli amici" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Contatti in comune" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:189 -#: ../../Zotlabs/Module/Profiles.php:246 ../../Zotlabs/Module/Profiles.php:625 -msgid "Profile not found." -msgstr "Profilo non trovato." +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." +#: ../../Zotlabs/Module/Acl.php:313 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profilo-" +#: ../../Zotlabs/Module/Acl.php:323 +msgid "RSS" +msgstr "RSS" + +#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." +#: ../../Zotlabs/Module/Pubsites.php:27 +msgid "" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Stato sentimentale" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partner affettivo" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" +msgstr "Valuta" -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aggiornato." -#: ../../Zotlabs/Module/Profiles.php:443 ../../Zotlabs/Module/Profiles.php:744 -msgid "Work/Employment" -msgstr "Lavoro/impiego" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../Zotlabs/Module/Profiles.php:446 -msgid "Religion" -msgstr "Religione" +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" -#: ../../Zotlabs/Module/Profiles.php:450 -msgid "Political Views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." +msgstr "Layout non trovato." -#: ../../Zotlabs/Module/Profiles.php:454 -msgid "Gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" +msgstr "Nome del modulo:" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" +msgstr "Guida al layout" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Home page" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessi" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Connedit.php:256 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Nascondi la tua lista di contatti ai visitatori di questo profilo" +#: ../../Zotlabs/Module/Connedit.php:258 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../Zotlabs/Module/Connedit.php:308 +msgid "is now connected to" +msgstr "ha come nuovo contatto" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../Zotlabs/Module/Connedit.php:440 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../Zotlabs/Module/Connedit.php:460 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestione del profilo" +#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 +#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 +#: ../../Zotlabs/Module/Connedit.php:515 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" +#: ../../Zotlabs/Module/Connedit.php:538 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:89 ../../include/conversation.php:955 +msgid "View Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../Zotlabs/Module/Connedit.php:557 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../Zotlabs/Module/Connedit.php:564 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Recent Activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1559 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personali" +#: ../../Zotlabs/Module/Connedit.php:571 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relazione" +#: ../../Zotlabs/Module/Connedit.php:578 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:48 -msgid "Miscellaneous" -msgstr "Altro" +#: ../../Zotlabs/Module/Connedit.php:579 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../Zotlabs/Module/Connedit.php:583 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" +#: ../../Zotlabs/Module/Connedit.php:586 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Connedit.php:587 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Stato civile" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Connedit.php:591 +msgid "Archive" +msgstr "Archivia" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nome del profilo" +#: ../../Zotlabs/Module/Connedit.php:594 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." +#: ../../Zotlabs/Module/Connedit.php:595 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Il tuo nome completo" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Unhide" +msgstr "Non nascondere" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titolo/descrizione" +#: ../../Zotlabs/Module/Connedit.php:599 +msgid "Hide" +msgstr "Nascondi" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" +#: ../../Zotlabs/Module/Connedit.php:602 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" -#: ../../Zotlabs/Module/Profiles.php:718 -msgid "Locality/City" -msgstr "Località" +#: ../../Zotlabs/Module/Connedit.php:603 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" + +#: ../../Zotlabs/Module/Connedit.php:610 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Regione/stato" +#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 +msgid "Me" +msgstr "Me" -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "CAP" +#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 +msgid "Family" +msgstr "Famiglia" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Nazione" +#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Settings/Channel.php:61 +#: ../../Zotlabs/Module/Settings/Channel.php:65 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:80 +#: ../../include/selectors.php:123 ../../include/channel.php:402 +#: ../../include/channel.php:403 ../../include/channel.php:410 +#: ../../include/widgets.php:531 +msgid "Friends" +msgstr "Amici" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Con chi (se possibile)" +#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "dal (data)" +#: ../../Zotlabs/Module/Connedit.php:686 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." +#: ../../Zotlabs/Module/Connedit.php:691 +msgid "Set Affinity" +msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" +#: ../../Zotlabs/Module/Connedit.php:694 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Città dove vivo" +#: ../../Zotlabs/Module/Connedit.php:697 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Connedit.php:746 +msgid "none" +msgstr "--" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Orientamento religioso" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" +#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../Zotlabs/Module/Connedit.php:751 +msgid "Connection requests will be approved without your interaction" +msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../Zotlabs/Module/Connedit.php:753 +msgid "This connection's primary address is" +msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisione" +#: ../../Zotlabs/Module/Connedit.php:754 +msgid "Available locations:" +msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" +#: ../../Zotlabs/Module/Connedit.php:758 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../Zotlabs/Module/Connedit.php:759 +msgid "Connection Tools" +msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amore" +#: ../../Zotlabs/Module/Connedit.php:761 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Scuola/educazione" +#: ../../Zotlabs/Module/Connedit.php:763 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contatti e social network" +#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 +msgid "Optionally explain your rating" +msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../Zotlabs/Module/Connedit.php:766 +msgid "Custom Filter" +msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../Zotlabs/Module/Connedit.php:767 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:91 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" +#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 +msgid "" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" +msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../Zotlabs/Module/Connedit.php:768 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Module/Connedit.php:770 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Match.php:35 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche." +#: ../../Zotlabs/Module/Connedit.php:778 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +msgid "inherited" +msgstr "derivato" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../Zotlabs/Module/Connedit.php:780 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." +msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../Zotlabs/Module/Connedit.php:782 +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +msgid "Their Settings" +msgstr "Permessi concessi a te" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" -msgstr "Importa gli elementi della pagina web" +#: ../../Zotlabs/Module/Connedit.php:783 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +msgid "My Settings" +msgstr "Permessi che concedo" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" -msgstr "Importa i selezionati" +#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Settings/Tokens.php:165 +msgid "Individual Permissions" +msgstr "Permessi individuali" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" -msgstr "Esporta gli elementi della pagina web" +#: ../../Zotlabs/Module/Connedit.php:786 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle." -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" -msgstr "Esporta i selezionati" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." -#: ../../Zotlabs/Module/Webpages.php:235 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/conversation.php:1720 ../../include/nav.php:109 -msgid "Webpages" -msgstr "Pagine web" +#: ../../Zotlabs/Module/Connedit.php:788 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Events.php:680 -#: ../../Zotlabs/Module/Pubsites.php:54 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../include/page_widgets.php:42 -msgid "View" -msgstr "Guarda" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" -#: ../../Zotlabs/Module/Webpages.php:246 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Module/Webpages.php:247 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL del segnalibro" -#: ../../Zotlabs/Module/Webpages.php:248 -msgid "Page Title" -msgstr "Titolo della pagina" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O inserisci il nome di una nuova cartella di segnalibri" -#: ../../Zotlabs/Module/Webpages.php:278 -msgid "Invalid file type." -msgstr "Tipo di file non valido." +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" +msgstr "Questo non è un directory server" -#: ../../Zotlabs/Module/Webpages.php:290 -msgid "Error opening zip file" -msgstr "Errore nell'apertura del file zip" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Autenticazione fallita." -#: ../../Zotlabs/Module/Webpages.php:301 -msgid "Invalid folder path." -msgstr "La cartella indicata non è valida." +#: ../../Zotlabs/Module/Rmagic.php:75 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" -#: ../../Zotlabs/Module/Webpages.php:328 -msgid "No webpage elements detected." -msgstr "Nella pagina web non sono presenti elementi." +#: ../../Zotlabs/Module/Rmagic.php:76 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" -#: ../../Zotlabs/Module/Webpages.php:403 -msgid "Import complete." -msgstr "Importazione completata." +#: ../../Zotlabs/Module/Rmagic.php:77 +msgid "Authenticate" +msgstr "Accedi" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Effettua l'accesso." -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Events.php:104 -msgid "Event can not end before it has started." -msgstr "Un evento non può terminare prima del suo inizio." +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Elimina questo account" -#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 -#: ../../Zotlabs/Module/Events.php:135 -msgid "Unable to generate preview." -msgstr "Impossibile creare un'anteprima." +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "WARNING: " +msgstr "ATTENZIONE:" -#: ../../Zotlabs/Module/Events.php:113 -msgid "Event title and start time are required." -msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This action is permanent and can not be undone!" +msgstr "Questo comando è definitivo e non può essere annullato!" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" -msgstr "Titolo dell'evento" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" -msgstr "Modifica la categoria" +#: ../../Zotlabs/Module/Removeaccount.php:61 +#: ../../Zotlabs/Module/Settings/Account.php:128 +msgid "Remove Account" +msgstr "Elimina l'account" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" -msgstr "Categoria" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" -msgstr "Data e ora di inizio" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " +msgstr "Questo canale sarà completamente eliminato dalla rete." -#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:462 -msgid "Finish date and time are not known or not relevant" -msgstr "La data e l'ora di fine non sono necessarie" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" +msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" -msgstr "Data e ora di fine" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "Remove Channel" +msgstr "Elimina questo canale" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Module/Events.php:463 +#: ../../Zotlabs/Module/Uexport.php:57 msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante per eventi che avvengono online ma con un certo fuso orario." - -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" -msgstr "Modifica la descrizione" +"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 "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" -msgstr "Modifica il luogo" +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Esporta i contenuti" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1259 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" -msgstr "Opzioni avanzate" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." -#: ../../Zotlabs/Module/Events.php:597 ../../Zotlabs/Module/Cal.php:259 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" -msgstr "Elimina l'evento" +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" -#: ../../Zotlabs/Module/Events.php:646 ../../Zotlabs/Module/Cal.php:308 -#: ../../include/text.php:1716 -msgid "Link to Source" -msgstr "Link al sito d'origine" +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Module/Search.php:216 +#, php-format +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Edit Event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Module/Search.php:218 +#, php-format +msgid "Search results for: %s" +msgstr "Risultati ricerca: %s" -#: ../../Zotlabs/Module/Events.php:674 ../../Zotlabs/Module/Cal.php:331 -msgid "Create Event" -msgstr "Crea un evento" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Wiki.php:20 +#: ../../Zotlabs/Module/Chat.php:25 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." -#: ../../Zotlabs/Module/Events.php:677 ../../Zotlabs/Module/Cal.php:334 -msgid "Export" -msgstr "Esporta" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Post e commenti" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" -msgstr "Mese" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo post" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Settimana" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Giorno" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Non esistono restrizioni su questa classe di account." -#: ../../Zotlabs/Module/Events.php:686 ../../Zotlabs/Module/Cal.php:341 -msgid "Today" -msgstr "Oggi" +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Evento eliminato" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" -#: ../../Zotlabs/Module/Import.php:33 +#: ../../Zotlabs/Module/Thing.php:196 #, php-format -msgid "Your service plan only allows %d channels." -msgstr "Il tuo account permette di creare al massimo %d canali." - -#: ../../Zotlabs/Module/Import.php:153 ../../include/import.php:107 -msgid "Cloned channel not found. Import failed." -msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostra l'oggetto" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "non trovato." -#: ../../Zotlabs/Module/Import.php:542 -msgid "You must be logged in to use this feature." -msgstr "Per questa funzionalità devi aver effettuato l'accesso." +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" +msgstr "Scegli un profilo" -#: ../../Zotlabs/Module/Import.php:548 -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 "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza." +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" +msgstr "Pubblica un'attività" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi può vedere il profilo scelto" -#: ../../Zotlabs/Module/Import.php:551 -msgid "Your old identity address (xyz@example.com)" -msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" -#: ../../Zotlabs/Module/Import.php:554 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc." +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Import.php:556 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importa i contenuti pubblicati, se possibile (sperimentale)" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "File: condivisi con me" -#: ../../Zotlabs/Module/Import.php:557 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito." +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NOVITÀ" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Elimina tutti i file" -#: ../../Zotlabs/Module/New_channel.php:141 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati." +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Elimina questo file" -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or import an existing channel from another location." -msgstr "oppure importa un canale esistente da un altro server/hub." +#: ../../Zotlabs/Module/Wiki.php:34 +msgid "Not found" +msgstr "Non trovato" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 +#: ../../include/nav.php:111 ../../include/conversation.php:1734 +#: ../../include/conversation.php:1737 ../../include/features.php:57 +msgid "Wiki" +msgstr "Wiki" -#: ../../Zotlabs/Module/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Module/Wiki.php:98 +msgid "Sandbox" +msgstr "Sandbox" -#: ../../Zotlabs/Module/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Wiki.php:100 +msgid "" +"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" +" saved*.\"" +msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../Zotlabs/Module/Wiki.php:169 +msgid "Revision Comparison" +msgstr "Confronto tra revisioni" -#: ../../Zotlabs/Module/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../Zotlabs/Module/Wiki.php:170 +msgid "Revert" +msgstr "Ripristina" -#: ../../Zotlabs/Module/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../Zotlabs/Module/Wiki.php:201 +msgid "Enter the name of your new wiki:" +msgstr "Nome della tua nuova pagina wiki:" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" +#: ../../Zotlabs/Module/Wiki.php:202 +msgid "Enter the name of the new page:" +msgstr "Nome della tua nuova pagina:" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:196 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" +#: ../../Zotlabs/Module/Wiki.php:203 +msgid "Enter the new name:" +msgstr "Nuovo nome:" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:961 -msgid "Poke" -msgstr "Poke" +#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 +msgid "Embed image from photo albums" +msgstr "Inserisci un'immagine dall'album foto" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" +#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1246 +msgid "Embed an image from your albums" +msgstr "Inserisci un'immagine dai tuoi album" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1248 +#: ../../include/conversation.php:1295 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" +#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 +msgid "Choose images to embed" +msgstr "Scegli le immagini da inserire" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 +msgid "Choose an album" +msgstr "Scegli un album" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 +msgid "Choose a different album..." +msgstr "Scegli un altro album..." -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" +#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 +msgid "Error getting album list" +msgstr "Errore nell'ottenere l'elenco degli album" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 +msgid "Error getting photo link" +msgstr "Errore nell'ottenere il link alla foto" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" +#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 +msgid "Error getting album" +msgstr "Errore nell'ottenere l'album" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../Zotlabs/Module/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../Zotlabs/Module/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" +#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:672 +#: ../../include/features.php:70 +msgid "Channel Sources" +msgstr "Sorgenti del canale" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Questa impostazione è bloccata, richiede criteri di modifica speciali" +#: ../../Zotlabs/Module/Sources.php:97 +msgid "Manage remote sources of content for your channel." +msgstr "Gestisci le sorgenti dei contenuti del tuo canale." -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../Zotlabs/Module/Pconfig.php:49 +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare." +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1384 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Only import content with these words (one per line)" +msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" -#: ../../Zotlabs/Module/Pubsites.php:27 +#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 +msgid "Leave blank to import all public content" +msgstr "Lascia vuoto per importare tutti i contenuti pubblici" + +#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" + +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." +"Add the following categories to posts imported from this source (comma " +"separated)" +msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +msgid "Optional" +msgstr "Facoltativo" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:960 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../Zotlabs/Module/Pubsites.php:43 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s sta seguendo %3$s di %2$s" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Subthread.php:120 #, php-format -msgid "Version %s" -msgstr "Versione %s" +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../Zotlabs/Module/Siteinfo.php:49 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Questo è un hub di $Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. " +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 +msgid "post" +msgstr "il post" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1999 +msgid "comment" +msgstr "il commento" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha taggato %3$s di %2$s con %4$s" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../Zotlabs/Module/Siteinfo.php:59 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Visita hubzilla.org per maggiori informazioni su $Projectname." +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../Zotlabs/Module/Photos.php:82 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" +#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../Zotlabs/Module/Siteinfo.php:63 +#: ../../Zotlabs/Module/Photos.php:112 +msgid "Delete Album" +msgstr "Elimina album" + +#: ../../Zotlabs/Module/Photos.php:133 msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file " -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" +#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2262 -msgid "Blocks" -msgstr "Block" +#: ../../Zotlabs/Module/Photos.php:520 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" +#: ../../Zotlabs/Module/Photos.php:569 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2264 -msgid "Layouts" -msgstr "Layout" +#: ../../Zotlabs/Module/Photos.php:608 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile." -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Help.php:86 -#: ../../Zotlabs/Module/Help.php:91 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/nav.php:164 -msgid "Help" -msgstr "Guida" +#: ../../Zotlabs/Module/Photos.php:611 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" +#: ../../Zotlabs/Module/Photos.php:647 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descrizione del layout" +#: ../../Zotlabs/Module/Photos.php:651 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Scarica il file PDL" +#: ../../Zotlabs/Module/Photos.php:652 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Rate.php:155 ../../Zotlabs/Module/Connedit.php:762 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Photos.php:653 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Module/Photos.php:654 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canale remoto [%s] (non ancora conosciuto da questo sito)" +#: ../../Zotlabs/Module/Photos.php:655 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Module/Photos.php:686 +msgid "Album name could not be decoded" +msgstr "Non è stato possibile leggere il nome dell'album" -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" +#: ../../Zotlabs/Module/Photos.php:734 +msgid "Contact Photos" +msgstr "Foto dei contatti" -#: ../../Zotlabs/Module/Profile_photo.php:186 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente." +#: ../../Zotlabs/Module/Photos.php:757 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../Zotlabs/Module/Photos.php:759 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Photos.php:783 ../../Zotlabs/Module/Photos.php:1337 +#: ../../Zotlabs/Module/Embedphotos.php:141 ../../include/widgets.php:1673 +msgid "View Photo" +msgstr "Guarda la foto" -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2286 -msgid "Import" -msgstr "Importa" +#: ../../Zotlabs/Module/Photos.php:814 +#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1690 +msgid "Edit Album" +msgstr "Modifica album" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." +#: ../../Zotlabs/Module/Photos.php:861 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permesso negato. L'accesso a questo elemento può essere stato limitato." -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" +#: ../../Zotlabs/Module/Photos.php:863 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../Zotlabs/Module/Photos.php:921 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../Zotlabs/Module/Photos.php:922 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../Zotlabs/Module/Photos.php:944 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../Zotlabs/Module/Mail.php:70 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" +#: ../../Zotlabs/Module/Photos.php:1035 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../Zotlabs/Module/Photos.php:1036 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../Zotlabs/Module/Photos.php:1039 +msgid "Move photo to album" +msgstr "Sposta la foto in un album" -#: ../../Zotlabs/Module/Mail.php:197 ../../Zotlabs/Module/Mail.php:306 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1183 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" +#: ../../Zotlabs/Module/Photos.php:1040 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Mail.php:198 ../../Zotlabs/Module/Mail.php:307 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" +#: ../../Zotlabs/Module/Photos.php:1044 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../Zotlabs/Module/Photos.php:1046 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" +#: ../../Zotlabs/Module/Photos.php:1054 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../Zotlabs/Module/Photos.php:1057 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1239 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" +#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:264 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1284 -msgid "Set expiration date" -msgstr "Data di scadenza" +#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:399 +#: ../../include/conversation.php:743 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Mail.php:250 ../../Zotlabs/Module/Mail.php:375 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:724 -#: ../../include/conversation.php:1289 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" +#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 +#: ../../Zotlabs/Lib/ThreadItem.php:709 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../Zotlabs/Module/Photos.php:1097 ../../Zotlabs/Module/Photos.php:1215 +#: ../../Zotlabs/Lib/ThreadItem.php:711 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../Zotlabs/Module/Mail.php:355 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente." +#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Module/Photos.php:1132 ../../Zotlabs/Module/Photos.php:1144 +#: ../../Zotlabs/Lib/ThreadItem.php:181 ../../Zotlabs/Lib/ThreadItem.php:193 +#: ../../include/conversation.php:1762 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Sito web:" +#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../include/channel.php:1182 ../../include/conversation.php:1786 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Module/Photos.php:1141 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/conversation.php:1789 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../Zotlabs/Module/Photos.php:1241 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../Zotlabs/Module/Photos.php:1250 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../Zotlabs/Module/Photos.php:1255 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../Zotlabs/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:388 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "ha come nuovo contatto" +#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:389 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." +#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:394 +#: ../../include/acl_selectors.php:181 +msgid "Close" +msgstr "Chiudi" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." +#: ../../Zotlabs/Module/Photos.php:1343 +msgid "View Album" +msgstr "Guarda l'album" -#: ../../Zotlabs/Module/Connedit.php:475 ../../Zotlabs/Module/Connedit.php:484 -#: ../../Zotlabs/Module/Connedit.php:493 ../../Zotlabs/Module/Connedit.php:502 -#: ../../Zotlabs/Module/Connedit.php:515 -msgid "Unable to set address book parameters." -msgstr "Impossibile impostare i parametri della rubrica." +#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 +#: ../../Zotlabs/Module/Photos.php:1368 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../Zotlabs/Module/Follow.php:34 +msgid "Channel added." +msgstr "Canale aggiunto." -#: ../../Zotlabs/Module/Connedit.php:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/conversation.php:955 ../../include/nav.php:89 -msgid "View Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../Zotlabs/Module/Connedit.php:557 +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../Zotlabs/Module/Connedit.php:561 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" +msgstr "Elenco contatti" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Sorgente" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" -#: ../../Zotlabs/Module/Connedit.php:578 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" -#: ../../Zotlabs/Module/Connedit.php:586 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "New Chatroom" +msgstr "Nuova chat" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Chatroom name" +msgstr "Nome chat" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" -msgstr "Archivia" +#: ../../Zotlabs/Module/Chat.php:233 +msgid "Expiration of chats (minutes)" +msgstr "Scadenza dei messaggi della chat (minuti)" -#: ../../Zotlabs/Module/Connedit.php:594 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archivia questo contatto (abilita/disabilita) - segna il canale come non più attivo ma ne conserva i contenuti" +#: ../../Zotlabs/Module/Chat.php:249 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../Zotlabs/Module/Chat.php:258 +msgid "Expiration" +msgstr "Scadenza" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" -msgstr "Nascondi" +#: ../../Zotlabs/Module/Chat.php:259 +msgid "min" +msgstr "min" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Ricerca canale" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" -msgstr "Elimina questo contatto" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# Accounts" +msgstr "# account" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" -msgstr "Me" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "# blocked accounts" +msgstr "# account bloccati" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" -msgstr "Famiglia" +#: ../../Zotlabs/Module/Admin.php:99 +msgid "# expired accounts" +msgstr "# account scaduti" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../Zotlabs/Module/Admin.php:100 +msgid "# expiring accounts" +msgstr "# account in scadenza" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Admin.php:111 +msgid "# Channels" +msgstr "# canali" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "# primary" +msgstr "# primari" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" -msgstr "Scegli l'affinità" +#: ../../Zotlabs/Module/Admin.php:113 +msgid "# clones" +msgstr "# cloni" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" +#: ../../Zotlabs/Module/Admin.php:119 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" -msgstr "--" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Summary" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3983 -#, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Connection requests will be approved without your interaction" -msgstr "Le richieste di entrare in contatto saranno approvate in automatico" +#: ../../Zotlabs/Module/Admin.php:148 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" -msgstr "Indirizzo primario di questo canale" +#: ../../Zotlabs/Module/Admin.php:149 +msgid "Version" +msgstr "Versione" -#: ../../Zotlabs/Module/Connedit.php:754 -msgid "Available locations:" -msgstr "Indirizzi disponibili" +#: ../../Zotlabs/Module/Admin.php:150 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Connedit.php:758 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "I permessi indicati su questa pagina saranno applicati a tutti i nuovi contatti da ora in poi." +#: ../../Zotlabs/Module/Admin.php:151 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" -msgstr "Gestione dei contatti" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Email non valida." -#: ../../Zotlabs/Module/Connedit.php:761 -msgid "Slide to adjust your degree of friendship" -msgstr "Trascina per restringere il grado di amicizia da mostrare" +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." +msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." +msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" -msgstr "Commento facoltativo" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Livello tecnico aggiornato" -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" -msgstr "Filtro personalizzato" +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." +msgstr "Verifica della password fallita." + +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." +msgstr "Le password non corrispondono. Password non cambiata." -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono queste parole chiave" +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../Zotlabs/Module/Connedit.php:767 ../../Zotlabs/Module/Connedit.php:768 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" -msgstr "per ogni riga: parole, #tag, /pattern/ o lang=xx , lascia vuoto per importare tutto" +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Password cambiata." -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" -msgstr "Non importare i post con queste parole chiave" +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" +#: ../../Zotlabs/Module/Settings/Account.php:120 +msgid "Account Settings" +msgstr "Il tuo account" -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Current Password" +msgstr "Password attuale" -#: ../../Zotlabs/Module/Connedit.php:780 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." -msgstr "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso." +#: ../../Zotlabs/Module/Settings/Account.php:122 +msgid "Enter New Password" +msgstr "Nuova password" -#: ../../Zotlabs/Module/Connedit.php:787 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali." +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../Zotlabs/Module/Settings/Account.php:123 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" -#: ../../Zotlabs/Module/Help.php:26 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Your technical skill level" +msgstr "Il tuo livello tecnico" -#: ../../Zotlabs/Module/Help.php:68 ../../Zotlabs/Module/Help.php:74 -#: ../../Zotlabs/Module/Help.php:80 -msgid "Help:" -msgstr "Guida:" +#: ../../Zotlabs/Module/Settings/Account.php:124 +msgid "Used to provide a member experience matched to your comfort level" +msgstr "Serve a vedere solo gli aspetti tecnici adeguati alle tue conoscenze" -#: ../../Zotlabs/Module/Help.php:121 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Module/Settings/Account.php:127 +#: ../../Zotlabs/Module/Settings/Channel.php:459 +msgid "Email Address:" +msgstr "Indirizzo email:" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/Settings/Account.php:129 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Canale premium - configurazione" +#: ../../Zotlabs/Module/Settings/Channel.php:246 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" +#: ../../Zotlabs/Module/Settings/Channel.php:307 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc." +#: ../../Zotlabs/Module/Settings/Channel.php:308 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:" +#: ../../Zotlabs/Module/Settings/Channel.php:309 +msgid "Approved connections" +msgstr "Contatti approvati" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Il testo seguente comparirà a chi vorrà seguire il canale:" +#: ../../Zotlabs/Module/Settings/Channel.php:310 +msgid "Any connections" +msgstr "Tutti i contatti" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 -msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina." +#: ../../Zotlabs/Module/Settings/Channel.php:311 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Il gestore del canale non ha fornito istruzioni specifiche)" +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Salva segnalibro" +#: ../../Zotlabs/Module/Settings/Channel.php:390 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL del segnalibro" +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" +#: ../../Zotlabs/Module/Settings/Channel.php:404 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Autenticazione fallita." +#: ../../Zotlabs/Module/Settings/Channel.php:450 +msgid "Channel Settings" +msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" +#: ../../Zotlabs/Module/Settings/Channel.php:457 +msgid "Basic Settings" +msgstr "Impostazioni di base" -#: ../../Zotlabs/Module/Rmagic.php:76 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" +#: ../../Zotlabs/Module/Settings/Channel.php:458 +#: ../../include/channel.php:1164 +msgid "Full Name:" +msgstr "Nome completo:" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Accedi" +#: ../../Zotlabs/Module/Settings/Channel.php:460 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Effettua l'accesso." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Default Post Location:" +msgstr "Località predefinita:" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare il tuo account prima di 48 ore dall'ultimo cambio password." +#: ../../Zotlabs/Module/Settings/Channel.php:461 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" +#: ../../Zotlabs/Module/Settings/Channel.php:462 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " -msgstr "ATTENZIONE:" +#: ../../Zotlabs/Module/Settings/Channel.php:464 +msgid "Adult Content" +msgstr "Contenuto per adulti" -#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Settings/Channel.php:464 msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Questo account e tutti i suoi canali saranno completamente eliminati dalla rete." +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" -msgstr "Questo comando è definitivo e non può essere annullato!" +#: ../../Zotlabs/Module/Settings/Channel.php:466 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" -msgstr "Inserisci la tua password per verifica:" +#: ../../Zotlabs/Module/Settings/Channel.php:469 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati." +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" -#: ../../Zotlabs/Module/Removeaccount.php:60 +#: ../../Zotlabs/Module/Settings/Channel.php:471 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" + +#: ../../Zotlabs/Module/Settings/Channel.php:473 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" + +#: ../../Zotlabs/Module/Settings/Channel.php:474 msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" -#: ../../Zotlabs/Module/Removeme.php:35 +#: ../../Zotlabs/Module/Settings/Channel.php:475 msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password." +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Module/Settings/Channel.php:476 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." +#: ../../Zotlabs/Module/Settings/Channel.php:477 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" -msgstr "Elimina questo canale e tutti i suoi cloni dalla rete" +#: ../../Zotlabs/Module/Settings/Channel.php:479 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Settings/Channel.php:479 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Esporta il canale" +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Channel Permission Limits" +msgstr "Limiti sui permessi del canale" -#: ../../Zotlabs/Module/Uexport.php:57 -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 "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "Expire other channel content after this many days" +msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +#, php-format +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " -#: ../../Zotlabs/Module/Uexport.php:59 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Esporta il tuo canale e i contenuti recenti in un file di salvataggio che potrà essere importato su un altro server/hub. Sarà un backup dei tuoi contatti, dei permessi che hai assegnato, dei dati del profilo e dei post degli ultimi mesi. Il file potrebbe essere MOLTO grande. Sarà necessario attendere con pazienza - saranno necessari molti minuti prima che inizi lo scaricamento." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Esporta i tuoi post a partire dall'anno scelto." +#: ../../Zotlabs/Module/Settings/Channel.php:483 +msgid "The website limit takes precedence if lower than your limit." +msgstr "Il limite del server ha la precedenza, se minore di quello impostato da te." -#: ../../Zotlabs/Module/Uexport.php:62 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Puoi anche esportare post e conversazioni di un particolare anno o mese. Modifica la data nella barra dell'indirizzo del browser per scegliere date differenti. Se l'esportazione dovesse fallire (la memoria sul server potrebbe non bastare), riprova scegliendo un intervallo più breve tra le date." +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../Zotlabs/Module/Uexport.php:63 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Per selezionare tutti i post di un anno, come per esempio quello in corso, visita %2$s " +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" -#: ../../Zotlabs/Module/Uexport.php:64 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Per selezionare tutti post di un dato mese, come per esempio gennaio di quest'anno, visita %2$s" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Access Control List (ACL)" +msgstr "Lista di accesso ai contenuti (ACL)" -#: ../../Zotlabs/Module/Uexport.php:65 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Questi contenuti potranno essere importati o ripristinati visitando %2$s su qualsiasi sito/hub dove è presente il tuo canale. Per mantenere l'ordinamento originale fai attenzione ad importare i file secondo la data (prima il più vecchio)" +#: ../../Zotlabs/Module/Settings/Channel.php:487 +msgid "Use my default audience setting for the type of object published" +msgstr "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../Zotlabs/Module/Settings/Channel.php:494 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Risultati ricerca: %s" +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" +#: ../../Zotlabs/Module/Settings/Channel.php:504 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra l'oggetto" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "non trovato." +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" -msgstr "Scegli un profilo" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" -msgstr "Pubblica un'attività" +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" -msgstr "Invia solo a chi può vedere il profilo scelto" +#: ../../Zotlabs/Module/Settings/Channel.php:513 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto (facoltativo)" +#: ../../Zotlabs/Module/Settings/Channel.php:515 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" -msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" +#: ../../Zotlabs/Module/Settings/Channel.php:516 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" -#: ../../Zotlabs/Module/Apps.php:46 ../../include/widgets.php:102 -#: ../../include/nav.php:168 -msgid "Apps" -msgstr "App" +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "File: condivisi con me" +#: ../../Zotlabs/Module/Settings/Channel.php:522 +msgid "Unseen channel activity" +msgstr "Novità nei canali" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NOVITÀ" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Elimina tutti i file" +#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:528 +#: ../../Zotlabs/Module/Settings/Channel.php:529 +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "Recommended" +msgstr "Consigliato" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Elimina questo file" +#: ../../Zotlabs/Module/Settings/Channel.php:524 +msgid "Upcoming events" +msgstr "Prossimi eventi" -#: ../../Zotlabs/Module/Wiki.php:20 ../../Zotlabs/Module/Channel.php:28 -#: ../../Zotlabs/Module/Chat.php:25 -msgid "You must be logged in to see this page." -msgstr "Devi aver effettuato l'accesso per vedere questa pagina." +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Events today" +msgstr "Eventi di oggi" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Non trovato" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" -#: ../../Zotlabs/Module/Wiki.php:97 ../../Zotlabs/Lib/Apps.php:219 -#: ../../include/conversation.php:1730 ../../include/conversation.php:1733 -#: ../../include/features.php:57 ../../include/nav.php:111 -msgid "Wiki" -msgstr "Wiki" +#: ../../Zotlabs/Module/Settings/Channel.php:526 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Module/Settings/Channel.php:527 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" -#: ../../Zotlabs/Module/Wiki.php:100 -msgid "" -"\"# Wiki Sandbox\\n\\nContent you **edit** and **preview** here *will not be" -" saved*.\"" -msgstr "\"# Wiki Sandbox\\n\\nI contenuti che **modifichi** e che vedi in **anteprima** qui *non saranno salvati*.\"" +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "System info messages" +msgstr "Notifiche di sistema" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" -msgstr "Ripristina" +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "New connections" +msgstr "Nuovi contatti" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" -msgstr "Nome della tua nuova pagina wiki:" +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "System Registrations" +msgstr "Registrazioni" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" -msgstr "Nome della tua nuova pagina:" +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "Nuovo nome:" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1152 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1242 -msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1244 -#: ../../include/conversation.php:1291 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1188 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1189 -msgid "Choose an album" -msgstr "Scegli un album" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1190 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." +#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1191 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1192 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1193 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "Remove this channel." +msgstr "Elimina questo canale." -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Start calendar week on monday" +msgstr "La settimana inizia il lunedì" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." +#: ../../Zotlabs/Module/Settings/Display.php:135 +msgid "No special theme for mobile devices" +msgstr "Nessun tema per dispositivi mobili" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../Zotlabs/Module/Settings/Display.php:138 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:70 -#: ../../include/widgets.php:672 -msgid "Channel Sources" -msgstr "Sorgenti del canale" +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Display Settings" +msgstr "Aspetto" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Theme Settings" +msgstr "Impostazioni del tema" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" +#: ../../Zotlabs/Module/Settings/Display.php:191 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" -#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importa nel tuo canale tutti o una parte dei contenuti dal canale seguente." +#: ../../Zotlabs/Module/Settings/Display.php:192 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Only import content with these words (one per line)" -msgstr "Importa solo i contenuti che hanno queste parole (una per riga)" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" -#: ../../Zotlabs/Module/Sources.php:110 ../../Zotlabs/Module/Sources.php:144 -msgid "Leave blank to import all public content" -msgstr "Lascia vuoto per importare tutti i contenuti pubblici" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Select scheme" +msgstr "Scegli uno schema" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Mobile Theme:" +msgstr "Tema per dispositivi mobili:" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" + +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "" -"Add the following categories to posts imported from this source (comma " -"separated)" -msgstr "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)" +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Maximum of 100 items" +msgstr "Massimo 100" -#: ../../Zotlabs/Module/Subthread.php:118 -#, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s sta seguendo %3$s di %2$s" +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" -#: ../../Zotlabs/Module/Subthread.php:120 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s non segue più %3$s di %2$s" +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore." +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" +#: ../../Zotlabs/Module/Settings/Display.php:211 +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1953 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "il commento" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" -#: ../../Zotlabs/Module/Tagger.php:100 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha taggato %3$s di %2$s con %4$s" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../Zotlabs/Module/Settings/Featured.php:24 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Settings/Featured.php:31 +msgid "Feature/Addon Settings" +msgstr "Impostazioni dei componenti aggiuntivi" -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "Il nome è obbligatorio" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canale aggiunto." +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Nessun contatto." +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" +msgstr "Aggiungi una app" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "Nome dell'applicazione" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Elenco contatti" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Sorgente" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chat non trovata" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Lascia la chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "Redirect" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Elimina questa chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Non sono presente" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" +msgstr "Url icona" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Sono online" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." +msgstr "Applicazione non trovata." -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Aggiungi questa chat ai segnalibri" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" +msgstr "App connesse" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "Nuova chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" +msgstr "La client key inizia con" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "Nome chat" +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" +msgstr "Nessun nome" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "Scadenza dei messaggi della chat (minuti)" +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" + +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" +msgstr "Questo canale è limitato a %d token" + +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." +msgstr "Nome e password sono obbligatori." -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token salvato." -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "Nessuna chat disponibile" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +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." +msgstr "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati." -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "Scadenza" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide dropbox style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" +msgstr "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Ricerca canale" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nome utente" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" +msgstr "Password" + +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" +msgstr "Con scadenza (aaaa-mm-gg)" #: ../../Zotlabs/Lib/Chatroom.php:27 msgid "Missing room name" @@ -6864,7 +6925,7 @@ msgid "Suggest Channels" msgstr "Suggerisci canali" #: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 -#: ../../boot.php:1738 +#: ../../boot.php:1739 msgid "Login" msgstr "Accedi" @@ -6876,8 +6937,8 @@ msgstr "Rete" msgid "Channel Home" msgstr "Bacheca del canale" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/conversation.php:1684 -#: ../../include/conversation.php:1687 ../../include/nav.php:206 +#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 +#: ../../include/conversation.php:1688 ../../include/conversation.php:1691 msgid "Events" msgstr "Eventi" @@ -6909,7 +6970,7 @@ msgstr "Canale casuale" msgid "Invite" msgstr "Invita" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1527 +#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1560 msgid "Features" msgstr "Funzionalità" @@ -7068,108 +7129,332 @@ msgstr "Aggiungi al calendario" msgid "Mark all seen" msgstr "Marca tutto come letto" -#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +#: ../../Zotlabs/Lib/ThreadItem.php:423 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostra tutto" + +#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1238 +msgid "Bold" +msgstr "Grassetto" + +#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1239 +msgid "Italic" +msgstr "Corsivo" + +#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1240 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1241 +msgid "Quote" +msgstr "Citazione" + +#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1242 +msgid "Code" +msgstr "Codice" + +#: ../../Zotlabs/Lib/ThreadItem.php:718 +msgid "Image" +msgstr "Immagine" + +#: ../../Zotlabs/Lib/ThreadItem.php:719 +msgid "Insert Link" +msgstr "Collegamento" + +#: ../../Zotlabs/Lib/ThreadItem.php:720 +msgid "Video" +msgstr "Video" + +#: ../../include/Import/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "Impossibile trovare il nome utente nel file da importare." + +#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." + +#: ../../include/dba/dba_driver.php:173 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" + +#: ../../include/network.php:704 +msgid "view full size" +msgstr "guarda nelle dimensioni reali" + +#: ../../include/network.php:1935 ../../include/account.php:326 +#: ../../include/account.php:353 ../../include/account.php:413 +msgid "Administrator" +msgstr "Amministratore" + +#: ../../include/network.php:1949 +msgid "No Subject" +msgstr "Nessun titolo" + +#: ../../include/network.php:2203 ../../include/network.php:2204 +msgid "Friendica" +msgstr "Friendica" + +#: ../../include/network.php:2205 +msgid "OStatus" +msgstr "OStatus" + +#: ../../include/network.php:2206 +msgid "GNU-Social" +msgstr "GNU-Social" + +#: ../../include/network.php:2207 +msgid "RSS/Atom" +msgstr "RSS/Atom" + +#: ../../include/network.php:2209 +msgid "Diaspora" +msgstr "Diaspora" + +#: ../../include/network.php:2210 +msgid "Facebook" +msgstr "Facebook" + +#: ../../include/network.php:2211 +msgid "Zot" +msgstr "Zot" + +#: ../../include/network.php:2212 +msgid "LinkedIn" +msgstr "LinkedIn" + +#: ../../include/network.php:2213 +msgid "XMPP/IM" +msgstr "XMPP/IM" + +#: ../../include/network.php:2214 +msgid "MySpace" +msgstr "MySpace" + +#: ../../include/photos.php:114 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" + +#: ../../include/photos.php:121 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." + +#: ../../include/photos.php:259 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." + +#: ../../include/photos.php:299 +msgid "a new photo" +msgstr "una nuova foto" + +#: ../../include/photos.php:303 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" + +#: ../../include/photos.php:506 ../../include/conversation.php:1674 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Carica nuove foto" + +#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 +msgid "Logout" +msgstr "Esci" + +#: ../../include/nav.php:85 ../../include/nav.php:118 +msgid "End this session" +msgstr "Chiudi questa sessione" + +#: ../../include/nav.php:88 ../../include/nav.php:149 +msgid "Home" +msgstr "Bacheca" + +#: ../../include/nav.php:88 +msgid "Your posts and conversations" +msgstr "I tuoi post e conversazioni" + +#: ../../include/nav.php:89 +msgid "Your profile page" +msgstr "Il tuo profilo" + +#: ../../include/nav.php:91 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" + +#: ../../include/nav.php:93 ../../include/channel.php:963 +msgid "Edit Profile" +msgstr "Modifica il profilo" + +#: ../../include/nav.php:93 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" + +#: ../../include/nav.php:95 +msgid "Your photos" +msgstr "Le tue foto" + +#: ../../include/nav.php:96 +msgid "Your files" +msgstr "I tuoi file" + +#: ../../include/nav.php:99 +msgid "Your chatrooms" +msgstr "Le tue chat" + +#: ../../include/nav.php:105 ../../include/conversation.php:1714 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/nav.php:105 +msgid "Your bookmarks" +msgstr "I tuoi segnalibri" + +#: ../../include/nav.php:109 +msgid "Your webpages" +msgstr "Le tue pagine web" + +#: ../../include/nav.php:111 +msgid "Your wiki" +msgstr "La tua wiki" + +#: ../../include/nav.php:115 +msgid "Sign in" +msgstr "Accedi" + +#: ../../include/nav.php:132 +#, php-format +msgid "%s - click to logout" +msgstr "%s - clicca per uscire" + +#: ../../include/nav.php:135 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" + +#: ../../include/nav.php:135 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" + +#: ../../include/nav.php:149 +msgid "Home Page" +msgstr "Bacheca" + +#: ../../include/nav.php:152 +msgid "Create an account" +msgstr "Crea un account" + +#: ../../include/nav.php:164 +msgid "Help and documentation" +msgstr "Guida e documentazione" + +#: ../../include/nav.php:168 +msgid "Applications, utilities, links, games" +msgstr "Applicazioni, utilità, link, giochi" + +#: ../../include/nav.php:170 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" -#: ../../Zotlabs/Lib/ThreadItem.php:713 ../../include/conversation.php:1234 -msgid "Bold" -msgstr "Grassetto" +#: ../../include/nav.php:172 +msgid "Channel Directory" +msgstr "Elenchi pubblici dei canali" -#: ../../Zotlabs/Lib/ThreadItem.php:714 ../../include/conversation.php:1235 -msgid "Italic" -msgstr "Corsivo" +#: ../../include/nav.php:184 +msgid "Your grid" +msgstr "La tua rete" -#: ../../Zotlabs/Lib/ThreadItem.php:715 ../../include/conversation.php:1236 -msgid "Underline" -msgstr "Sottolineato" +#: ../../include/nav.php:185 +msgid "Mark all grid notifications seen" +msgstr "Segna come lette le notifiche della tua rete" -#: ../../Zotlabs/Lib/ThreadItem.php:716 ../../include/conversation.php:1237 -msgid "Quote" -msgstr "Citazione" +#: ../../include/nav.php:187 +msgid "Channel home" +msgstr "Bacheca del canale" -#: ../../Zotlabs/Lib/ThreadItem.php:717 ../../include/conversation.php:1238 -msgid "Code" -msgstr "Codice" +#: ../../include/nav.php:188 +msgid "Mark all channel notifications seen" +msgstr "Segna come lette le notifiche del canale" -#: ../../Zotlabs/Lib/ThreadItem.php:718 -msgid "Image" -msgstr "Immagine" +#: ../../include/nav.php:194 +msgid "Notices" +msgstr "Avvisi" -#: ../../Zotlabs/Lib/ThreadItem.php:719 -msgid "Insert Link" -msgstr "Collegamento" +#: ../../include/nav.php:194 +msgid "Notifications" +msgstr "Notifiche" -#: ../../Zotlabs/Lib/ThreadItem.php:720 -msgid "Video" -msgstr "Video" +#: ../../include/nav.php:195 +msgid "See all notifications" +msgstr "Vedi tutte le notifiche" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Impossibile trovare il nome utente nel file da importare." +#: ../../include/nav.php:198 +msgid "Private mail" +msgstr "Messaggi privati" -#: ../../include/Import/import_diaspora.php:41 ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." +#: ../../include/nav.php:199 +msgid "See all private messages" +msgstr "Guarda tutti i messaggi privati" -#: ../../include/dba/dba_driver.php:173 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Non trovo le informazioni DNS per il database server '%s'" +#: ../../include/nav.php:200 +msgid "Mark all private messages seen" +msgstr "Segna come letti tutti i messaggi privati" -#: ../../include/network.php:704 -msgid "view full size" -msgstr "guarda nelle dimensioni reali" +#: ../../include/nav.php:201 ../../include/widgets.php:700 +msgid "Inbox" +msgstr "In arrivo" -#: ../../include/network.php:1935 ../../include/account.php:324 -#: ../../include/account.php:351 ../../include/account.php:411 -msgid "Administrator" -msgstr "Amministratore" +#: ../../include/nav.php:202 ../../include/widgets.php:705 +msgid "Outbox" +msgstr "Inviati" -#: ../../include/network.php:1949 -msgid "No Subject" -msgstr "Nessun titolo" +#: ../../include/nav.php:203 ../../include/widgets.php:710 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../include/network.php:2203 ../../include/network.php:2204 -msgid "Friendica" -msgstr "Friendica" +#: ../../include/nav.php:206 +msgid "Event Calendar" +msgstr "Calendario" -#: ../../include/network.php:2205 -msgid "OStatus" -msgstr "OStatus" +#: ../../include/nav.php:207 +msgid "See all events" +msgstr "Guarda tutti gli eventi" -#: ../../include/network.php:2206 -msgid "GNU-Social" -msgstr "GNU-Social" +#: ../../include/nav.php:208 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" -#: ../../include/network.php:2207 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../include/nav.php:211 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" -#: ../../include/network.php:2209 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../include/nav.php:213 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" -#: ../../include/network.php:2210 -msgid "Facebook" -msgstr "Facebook" +#: ../../include/nav.php:221 ../../include/widgets.php:1590 +msgid "Admin" +msgstr "Amministrazione" -#: ../../include/network.php:2211 -msgid "Zot" -msgstr "Zot" +#: ../../include/nav.php:221 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" -#: ../../include/network.php:2212 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../include/nav.php:252 ../../include/conversation.php:855 +msgid "Loading..." +msgstr "Caricamento in corso..." -#: ../../include/network.php:2213 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../include/nav.php:257 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" -#: ../../include/network.php:2214 -msgid "MySpace" -msgstr "MySpace" +#: ../../include/nav.php:258 +msgid "Please wait..." +msgstr "Attendere..." #: ../../include/oembed.php:349 msgid "Embedded content" @@ -7203,209 +7488,101 @@ msgstr "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come msgid "Can forward to all my channel contacts via post @mentions" msgstr "Può inoltrare post a tutti i contatti del canale tramite una @menzione" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" - -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" - -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" - -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" - -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" - -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" - -#: ../../include/permissions.php:55 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" - -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nuova finestra" - -#: ../../include/connections.php:96 -msgid "Open the selected location in a different window or browser tab" -msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" - -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" - -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Diario pubblico" - -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" - -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "Nome vuoto" - -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" - -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" - -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." - -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." - -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." - -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" - -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" - -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." - -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" - -#: ../../include/channel.php:963 ../../include/nav.php:93 -msgid "Edit Profile" -msgstr "Modifica il profilo" - -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" - -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" - -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" - -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" - -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" - -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" +msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" +msgstr "Può aprire una chat con me (se disponibile)" -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" +msgstr "Può modificare il mio archivio file e foto" -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" +msgstr "Può modificare le mie pagine web" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" +msgstr "Può amministrare i contenuti del mio canale" -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/permissions.php:55 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri" -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/import.php:97 +msgid "Channel clone failed. Import failed." +msgstr "Impossibile clonare il canale. L'importazione è fallita." -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/import.php:1441 +msgid "Unable to import element \"" +msgstr "Impossibile importare l'elemento \"" -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/items.php:918 ../../include/items.php:963 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/items.php:1162 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/items.php:1164 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/items.php:1166 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/items.php:1168 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/items.php:1170 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/items.php:1172 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/items.php:1174 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/items.php:1176 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/items.php:3966 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/items.php:3973 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/items.php:3985 +msgid "Connection not found." +msgstr "Contatto non trovato." + +#: ../../include/items.php:4338 +msgid "profile photo" +msgstr "foto del profilo" #: ../../include/datetime.php:135 msgid "Birthday" @@ -7419,7 +7596,7 @@ msgstr "Età:" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/datetime.php:272 ../../boot.php:2577 +#: ../../include/datetime.php:272 ../../boot.php:2578 msgid "never" msgstr "mai" @@ -7492,6 +7669,74 @@ msgstr "Compleanno di %1$s" msgid "Happy Birthday %1$s" msgstr "Buon compleanno %1$s" +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Email non valida" + +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" +msgstr "Il dominio della tua email attualmente non è permesso su questo sito" + +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." + +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "È necessario un invito." + +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." + +#: ../../include/account.php:130 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." + +#: ../../include/account.php:198 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." + +#: ../../include/account.php:258 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" + +#: ../../include/account.php:324 +#, php-format +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" + +#: ../../include/account.php:348 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:351 ../../include/account.php:411 +#, php-format +msgid "Registration details for %s" +msgstr "Dettagli della registrazione di %s" + +#: ../../include/account.php:423 +msgid "Account approved." +msgstr "Account approvato." + +#: ../../include/account.php:463 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" + +#: ../../include/account.php:748 ../../include/account.php:750 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." + +#: ../../include/account.php:756 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." + +#: ../../include/account.php:761 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." + #: ../../include/selectors.php:30 msgid "Frequently" msgstr "Frequentemente" @@ -7740,59 +7985,91 @@ msgstr "Chi se ne frega" msgid "Ask me" msgstr "Chiedimelo" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" -msgstr "(Sconosciuto)" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 +#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 +#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 +#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 +#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 +#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 +#: ../../include/bbcode.php:920 +msgid "Image/photo" +msgstr "Immagine" -#: ../../include/items.php:1162 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." +#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 +msgid "Encrypted content" +msgstr "Contenuto cifrato" -#: ../../include/items.php:1164 -msgid "Visible to you only." -msgstr "Visibile solo a te." +#: ../../include/bbcode.php:178 +#, php-format +msgid "Install %s element: " +msgstr "Installa l'elemento %s:" -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." +#: ../../include/bbcode.php:182 +#, php-format +msgid "" +"This post contains an installable %s element, however you lack permissions " +"to install it on this site." +msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." +#: ../../include/bbcode.php:261 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" + +#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/bbcode.php:346 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:619 ../../include/wiki.php:525 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" + +#: ../../include/bbcode.php:869 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/event.php:22 ../../include/event.php:69 +#: ../../include/bb2diaspora.php:485 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." +#: ../../include/event.php:30 ../../include/event.php:73 +#: ../../include/bb2diaspora.php:491 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/items.php:1172 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." +#: ../../include/event.php:40 ../../include/event.php:77 +#: ../../include/bb2diaspora.php:499 +msgid "Finishes:" +msgstr "Fine:" -#: ../../include/items.php:1174 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." +#: ../../include/event.php:821 +msgid "This event has been added to your calendar." +msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/items.php:1176 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." +#: ../../include/event.php:1021 +msgid "Not specified" +msgstr "Non specificato" -#: ../../include/items.php:3966 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." +#: ../../include/event.php:1022 +msgid "Needs Action" +msgstr "Necessita di un intervento" -#: ../../include/items.php:3973 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" +#: ../../include/event.php:1023 +msgid "Completed" +msgstr "Completato" -#: ../../include/items.php:3985 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../include/event.php:1024 +msgid "In Process" +msgstr "In corso" -#: ../../include/items.php:4338 -msgid "profile photo" -msgstr "foto del profilo" +#: ../../include/event.php:1025 +msgid "Cancelled" +msgstr "Annullato" #: ../../include/security.php:109 msgid "guest:" @@ -7804,22 +8081,9 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto." -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" - -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/zot.php:3706 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../include/help.php:25 +msgid "Help:" +msgstr "Guida:" #: ../../include/bookmarks.php:35 #, php-format @@ -7861,49 +8125,6 @@ msgstr "Canali che non sono in nessun gruppo" msgid "add" msgstr "aggiungi" -#: ../../include/photos.php:114 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "L'immagine supera il limite massimo di %lu bytes" - -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." - -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." - -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" - -#: ../../include/photos.php:303 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s ha pubblicato %2$s su %3$s" - -#: ../../include/photos.php:506 ../../include/conversation.php:1670 -msgid "Photo Albums" -msgstr "Album foto" - -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" - -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" - -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" - -#: ../../include/wiki.php:525 ../../include/bbcode.php:619 -msgid "Different viewers will see this text differently" -msgstr "Ad altri questo testo potrebbe apparire in modo differente" - #: ../../include/attach.php:248 ../../include/attach.php:334 msgid "Item was not found." msgstr "Elemento non trovato." @@ -7966,29 +8187,22 @@ msgstr "scrittura su database fallita." msgid "Empty path" msgstr "La posizione è vuota" +#: ../../include/page_widgets.php:7 +msgid "New Page" +msgstr "Nuova pagina web" + +#: ../../include/page_widgets.php:46 +msgid "Title" +msgstr "Titolo" + #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "Allegati:" -#: ../../include/bb2diaspora.php:485 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - #: ../../include/bb2diaspora.php:487 msgid "$Projectname event notification:" msgstr "Notifica evento $Projectname:" -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" -msgstr "Inizio:" - -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" -msgstr "Fine:" - #: ../../include/js_strings.php:5 msgid "Delete this item?" msgstr "Eliminare questo elemento?" @@ -8129,19 +8343,19 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:45 ../../include/text.php:1243 +#: ../../include/js_strings.php:45 ../../include/text.php:1289 msgid "January" msgstr "gennaio" -#: ../../include/js_strings.php:46 ../../include/text.php:1243 +#: ../../include/js_strings.php:46 ../../include/text.php:1289 msgid "February" msgstr "febbraio" -#: ../../include/js_strings.php:47 ../../include/text.php:1243 +#: ../../include/js_strings.php:47 ../../include/text.php:1289 msgid "March" msgstr "marzo" -#: ../../include/js_strings.php:48 ../../include/text.php:1243 +#: ../../include/js_strings.php:48 ../../include/text.php:1289 msgid "April" msgstr "aprile" @@ -8150,31 +8364,31 @@ msgctxt "long" msgid "May" msgstr "maggio" -#: ../../include/js_strings.php:50 ../../include/text.php:1243 +#: ../../include/js_strings.php:50 ../../include/text.php:1289 msgid "June" msgstr "giugno" -#: ../../include/js_strings.php:51 ../../include/text.php:1243 +#: ../../include/js_strings.php:51 ../../include/text.php:1289 msgid "July" msgstr "luglio" -#: ../../include/js_strings.php:52 ../../include/text.php:1243 +#: ../../include/js_strings.php:52 ../../include/text.php:1289 msgid "August" msgstr "agosto" -#: ../../include/js_strings.php:53 ../../include/text.php:1243 +#: ../../include/js_strings.php:53 ../../include/text.php:1289 msgid "September" msgstr "settembre" -#: ../../include/js_strings.php:54 ../../include/text.php:1243 +#: ../../include/js_strings.php:54 ../../include/text.php:1289 msgid "October" msgstr "ottobre" -#: ../../include/js_strings.php:55 ../../include/text.php:1243 +#: ../../include/js_strings.php:55 ../../include/text.php:1289 msgid "November" msgstr "novembre" -#: ../../include/js_strings.php:56 ../../include/text.php:1243 +#: ../../include/js_strings.php:56 ../../include/text.php:1289 msgid "December" msgstr "dicembre" @@ -8227,31 +8441,31 @@ msgstr "Nov" msgid "Dec" msgstr "Dic" -#: ../../include/js_strings.php:69 ../../include/text.php:1239 +#: ../../include/js_strings.php:69 ../../include/text.php:1285 msgid "Sunday" msgstr "domenica" -#: ../../include/js_strings.php:70 ../../include/text.php:1239 +#: ../../include/js_strings.php:70 ../../include/text.php:1285 msgid "Monday" msgstr "lunedì" -#: ../../include/js_strings.php:71 ../../include/text.php:1239 +#: ../../include/js_strings.php:71 ../../include/text.php:1285 msgid "Tuesday" msgstr "martedì" -#: ../../include/js_strings.php:72 ../../include/text.php:1239 +#: ../../include/js_strings.php:72 ../../include/text.php:1285 msgid "Wednesday" msgstr "mercoledì" -#: ../../include/js_strings.php:73 ../../include/text.php:1239 +#: ../../include/js_strings.php:73 ../../include/text.php:1285 msgid "Thursday" msgstr "giovedì" -#: ../../include/js_strings.php:74 ../../include/text.php:1239 +#: ../../include/js_strings.php:74 ../../include/text.php:1285 msgid "Friday" msgstr "venerdì" -#: ../../include/js_strings.php:75 ../../include/text.php:1239 +#: ../../include/js_strings.php:75 ../../include/text.php:1285 msgid "Saturday" msgstr "sabato" @@ -8293,436 +8507,306 @@ msgctxt "calendar" msgid "month" msgstr "mese" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "settimana" - -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "giorno" - -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Tutto il giorno" - -#: ../../include/follow.php:27 -msgid "Channel is blocked on this site." -msgstr "Il canale è bloccato per questo sito." - -#: ../../include/follow.php:32 -msgid "Channel location missing." -msgstr "Manca l'indirizzo del canale." - -#: ../../include/follow.php:80 -msgid "Response from remote channel was incomplete." -msgstr "La risposta dal canale non è completa." - -#: ../../include/follow.php:97 -msgid "Channel was deleted and no longer exists." -msgstr "Il canale è stato rimosso e non esiste più." - -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." - -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." - -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." - -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" -msgstr "Chi può vederlo?" - -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" -msgstr "Selezione personalizzata" - -#: ../../include/acl_selectors.php:171 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" -" the scope of \"Show\"." -msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." - -#: ../../include/acl_selectors.php:172 -msgid "Show" -msgstr "Mostra" - -#: ../../include/acl_selectors.php:173 -msgid "Don't show" -msgstr "Non mostrare" - -#: ../../include/acl_selectors.php:207 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.
    These" -" permissions set who is allowed to view the post." -msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." - -#: ../../include/text.php:404 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:406 -msgid "first" -msgstr "inizio" - -#: ../../include/text.php:435 -msgid "last" -msgstr "fine" - -#: ../../include/text.php:438 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:448 -msgid "older" -msgstr "più recenti" - -#: ../../include/text.php:450 -msgid "newer" -msgstr "più nuovi" - -#: ../../include/text.php:843 -msgid "No connections" -msgstr "Nessun contatto" - -#: ../../include/text.php:868 -#, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" - -#: ../../include/text.php:1013 ../../include/text.php:1018 -msgid "poke" -msgstr "poke" - -#: ../../include/text.php:1013 ../../include/text.php:1018 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "ha mandato un poke" - -#: ../../include/text.php:1019 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:1019 -msgid "pinged" -msgstr "ha effettuato un ping" - -#: ../../include/text.php:1020 -msgid "prod" -msgstr "spintone" - -#: ../../include/text.php:1020 -msgid "prodded" -msgstr "ha ricevuto uno spintone" - -#: ../../include/text.php:1021 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:1021 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:1022 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1022 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:1023 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:1023 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "settimana" -#: ../../include/text.php:1035 -msgid "happy" -msgstr "felice" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "giorno" -#: ../../include/text.php:1036 -msgid "sad" -msgstr "triste" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Tutto il giorno" -#: ../../include/text.php:1037 -msgid "mellow" -msgstr "calmo" +#: ../../include/follow.php:27 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/text.php:1038 -msgid "tired" -msgstr "stanco" +#: ../../include/follow.php:32 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/text.php:1039 -msgid "perky" -msgstr "vivace" +#: ../../include/follow.php:80 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/text.php:1040 -msgid "angry" -msgstr "arrabbiato" +#: ../../include/follow.php:97 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../include/text.php:1041 -msgid "stupefied" -msgstr "stupito" +#: ../../include/follow.php:147 ../../include/follow.php:183 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/text.php:1042 -msgid "puzzled" -msgstr "confuso" +#: ../../include/follow.php:171 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/text.php:1043 -msgid "interested" -msgstr "attento" +#: ../../include/follow.php:210 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." -#: ../../include/text.php:1044 -msgid "bitter" -msgstr "amaro" +#: ../../include/acl_selectors.php:169 +msgid "Who can see this?" +msgstr "Chi può vederlo?" -#: ../../include/text.php:1045 -msgid "cheerful" -msgstr "allegro" +#: ../../include/acl_selectors.php:170 +msgid "Custom selection" +msgstr "Selezione personalizzata" -#: ../../include/text.php:1046 -msgid "alive" -msgstr "vivace" +#: ../../include/acl_selectors.php:171 +msgid "" +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit" +" the scope of \"Show\"." +msgstr "Scegli \"Mostra\" per permettere la visione. \"Non mostrare\" ha la precedenza e limita l'effetto di \"Mostra\"." -#: ../../include/text.php:1047 -msgid "annoyed" -msgstr "seccato" +#: ../../include/acl_selectors.php:172 +msgid "Show" +msgstr "Mostra" -#: ../../include/text.php:1048 -msgid "anxious" -msgstr "ansioso" +#: ../../include/acl_selectors.php:173 +msgid "Don't show" +msgstr "Non mostrare" -#: ../../include/text.php:1049 -msgid "cranky" -msgstr "irritabile" +#: ../../include/acl_selectors.php:207 +#, php-format +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.
    These" +" permissions set who is allowed to view the post." +msgstr "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post." -#: ../../include/text.php:1050 -msgid "disturbed" -msgstr "turbato" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/text.php:1051 -msgid "frustrated" -msgstr "frustrato" +#: ../../include/channel.php:67 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/text.php:1052 -msgid "depressed" -msgstr "in depressione" +#: ../../include/channel.php:70 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/text.php:1053 -msgid "motivated" -msgstr "motivato" +#: ../../include/channel.php:181 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/text.php:1054 -msgid "relaxed" -msgstr "rilassato" +#: ../../include/channel.php:193 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/text.php:1055 -msgid "surprised" -msgstr "sorpreso" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../include/text.php:1243 -msgid "May" -msgstr "Mag" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Il nome dell'account è già in uso oppure ha dei caratteri non supportati." -#: ../../include/text.php:1320 ../../include/text.php:1324 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" +#: ../../include/channel.php:272 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../include/text.php:1326 -msgid "unknown" -msgstr "sconosciuta" +#: ../../include/channel.php:341 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../include/text.php:1362 -msgid "remove category" -msgstr "rimuovi la categoria" +#: ../../include/channel.php:813 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../include/text.php:1439 -msgid "remove from file" -msgstr "rimuovi dal file" +#: ../../include/channel.php:960 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../include/text.php:1738 ../../include/text.php:1809 -msgid "default" -msgstr "predefinito" +#: ../../include/channel.php:980 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: ../../include/text.php:1746 -msgid "Page layout" -msgstr "Layout della pagina" +#: ../../include/channel.php:1053 ../../include/channel.php:1166 +msgid "Gender:" +msgstr "Sesso:" -#: ../../include/text.php:1746 -msgid "You can create your own with the layouts tool" -msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" +#: ../../include/channel.php:1054 ../../include/channel.php:1210 +msgid "Status:" +msgstr "Stato:" -#: ../../include/text.php:1788 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" +#: ../../include/channel.php:1055 ../../include/channel.php:1221 +msgid "Homepage:" +msgstr "Home page:" -#: ../../include/text.php:1821 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" +#: ../../include/channel.php:1056 +msgid "Online Now" +msgstr "Online adesso" -#: ../../include/text.php:1958 -msgid "activity" -msgstr "l'attività" +#: ../../include/channel.php:1171 +msgid "Like this channel" +msgstr "Mi piace questo canale" -#: ../../include/text.php:2259 -msgid "Design Tools" -msgstr "Strumenti di design" +#: ../../include/channel.php:1195 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/text.php:2265 -msgid "Pages" -msgstr "Pagine" +#: ../../include/channel.php:1196 +msgid "j F" +msgstr "j F" -#: ../../include/text.php:2287 -msgid "Import website..." -msgstr "Importazione sito web..." +#: ../../include/channel.php:1203 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../include/text.php:2288 -msgid "Select folder to import" -msgstr "Scegli la cartella da importare" +#: ../../include/channel.php:1216 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/text.php:2289 -msgid "Import from a zipped folder:" -msgstr "Importa da un file zip:" +#: ../../include/channel.php:1219 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/text.php:2290 -msgid "Import from cloud files:" -msgstr "Importa da un file su cloud:" +#: ../../include/channel.php:1225 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/text.php:2291 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/percorso/alla/cartella" +#: ../../include/channel.php:1227 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/text.php:2292 -msgid "Enter path to website files" -msgstr "Inserisci la posizione dei file del sito web" +#: ../../include/channel.php:1229 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/text.php:2293 -msgid "Select folder" -msgstr "Scegli la cartella" +#: ../../include/channel.php:1233 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../include/text.php:2294 -msgid "Export website..." -msgstr "Esporta il sito web..." +#: ../../include/channel.php:1235 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/text.php:2295 -msgid "Export to a zip file" -msgstr "Esporta come file zip" +#: ../../include/channel.php:1237 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/text.php:2296 -msgid "website.zip" -msgstr "sitoweb.zip" +#: ../../include/channel.php:1239 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/text.php:2297 -msgid "Enter a name for the zip file." -msgstr "Scegli il nome del file zip." +#: ../../include/channel.php:1241 +msgid "My other channels:" +msgstr "I miei altri canali:" -#: ../../include/text.php:2298 -msgid "Export to cloud files" -msgstr "Esporta nell'archivio cloud" +#: ../../include/channel.php:1243 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../include/text.php:2299 -msgid "/path/to/export/folder" -msgstr "/percorso/alla/cartella" +#: ../../include/channel.php:1245 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../include/text.php:2300 -msgid "Enter a path to a cloud files destination." -msgstr "Scegli la posizione su una cartella cloud." +#: ../../include/channel.php:1247 +msgid "Television:" +msgstr "Televisione:" + +#: ../../include/channel.php:1249 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" -#: ../../include/text.php:2301 -msgid "Specify folder" -msgstr "Scegli la cartella" +#: ../../include/channel.php:1251 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita." +#: ../../include/channel.php:1253 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../include/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." +#: ../../include/channel.php:1255 +msgid "School/education:" +msgstr "Scuola:" -#: ../../include/import.php:1441 -msgid "Unable to import element \"" -msgstr "Impossibile importare l'elemento \"" +#: ../../include/channel.php:1276 +msgid "Like this thing" +msgstr "Mi piace" -#: ../../include/account.php:35 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../include/connections.php:95 +msgid "New window" +msgstr "Nuova finestra" -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" -msgstr "Il dominio della tua email attualmente non è permesso su questo sito" +#: ../../include/connections.php:96 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../include/connections.php:214 +#, php-format +msgid "User '%s' deleted" +msgstr "Utente '%s' eliminato" -#: ../../include/account.php:75 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../include/contact_widgets.php:11 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invito disponibile" +msgstr[1] "%d inviti disponibili" -#: ../../include/account.php:79 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../include/account.php:129 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../include/account.php:196 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Aggiungi" -#: ../../include/account.php:256 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../include/account.php:322 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Profilo casuale" -#: ../../include/account.php:346 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../include/account.php:349 ../../include/account.php:409 -#, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" -#: ../../include/account.php:421 -msgid "Account approved." -msgstr "Account approvato." +#: ../../include/contact_widgets.php:53 ../../include/widgets.php:346 +#: ../../include/features.php:97 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../include/account.php:461 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +#: ../../include/widgets.php:349 ../../include/widgets.php:468 +msgid "Everything" +msgstr "Tutto" -#: ../../include/account.php:746 ../../include/account.php:748 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../include/contact_widgets.php:91 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/widgets.php:46 +#: ../../include/widgets.php:465 +msgid "Categories" +msgstr "Categorie" -#: ../../include/account.php:754 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../include/contact_widgets.php:122 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d contatto in comune" +msgstr[1] "%d contatti in comune" -#: ../../include/account.php:759 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../include/contact_widgets.php:127 +msgid "show more" +msgstr "mostra tutto" #: ../../include/auth.php:148 msgid "Logged out." @@ -8769,6 +8853,11 @@ msgstr "%1$s adesso è connesso con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha mandato un poke a %2$s" +#: ../../include/conversation.php:243 ../../include/text.php:1059 +#: ../../include/text.php:1064 +msgid "poked" +msgstr "ha mandato un poke" + #: ../../include/conversation.php:694 #, php-format msgid "View %s's profile @ %s" @@ -8790,10 +8879,6 @@ msgstr "Vedi nel contesto" msgid "remove" msgstr "rimuovi" -#: ../../include/conversation.php:855 ../../include/nav.php:252 -msgid "Loading..." -msgstr "Caricamento in corso..." - #: ../../include/conversation.php:856 msgid "Delete Selected Items" msgstr "Elimina gli oggetti selezionati" @@ -8891,167 +8976,157 @@ msgstr "Commenti abilitati" msgid "Comments disabled" msgstr "Commenti disabilitati" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1233 msgid "Page link name" msgstr "Nome del link alla pagina" -#: ../../include/conversation.php:1232 +#: ../../include/conversation.php:1236 msgid "Post as" msgstr "Pubblica come " -#: ../../include/conversation.php:1246 +#: ../../include/conversation.php:1250 msgid "Toggle voting" msgstr "Abilita/disabilita il voto" -#: ../../include/conversation.php:1249 +#: ../../include/conversation.php:1253 msgid "Disable comments" msgstr "Disabilita i commenti" -#: ../../include/conversation.php:1250 +#: ../../include/conversation.php:1254 msgid "Toggle comments" msgstr "Abilita/disabilita i commenti" -#: ../../include/conversation.php:1258 +#: ../../include/conversation.php:1262 msgid "Categories (optional, comma-separated list)" msgstr "Categorie (facoltative, lista separata da virgole)" -#: ../../include/conversation.php:1281 +#: ../../include/conversation.php:1285 msgid "Other networks and post services" msgstr "Invio ad altre reti o a siti esterni" -#: ../../include/conversation.php:1287 +#: ../../include/conversation.php:1291 msgid "Set publish date" msgstr "Data di uscita programmata" -#: ../../include/conversation.php:1536 +#: ../../include/conversation.php:1540 msgid "Discover" msgstr "Scopri" -#: ../../include/conversation.php:1539 +#: ../../include/conversation.php:1543 msgid "Imported public streams" msgstr "Contenuti pubblici importati" -#: ../../include/conversation.php:1544 +#: ../../include/conversation.php:1548 msgid "Commented Order" msgstr "Commenti recenti" -#: ../../include/conversation.php:1547 +#: ../../include/conversation.php:1551 msgid "Sort by Comment Date" msgstr "Per data del commento" -#: ../../include/conversation.php:1551 +#: ../../include/conversation.php:1555 msgid "Posted Order" msgstr "Post recenti" -#: ../../include/conversation.php:1554 +#: ../../include/conversation.php:1558 msgid "Sort by Post Date" msgstr "Per data di creazione" -#: ../../include/conversation.php:1562 +#: ../../include/conversation.php:1566 msgid "Posts that mention or involve you" msgstr "Post che ti riguardano" -#: ../../include/conversation.php:1571 +#: ../../include/conversation.php:1575 msgid "Activity Stream - by date" msgstr "Elenco attività - per data" -#: ../../include/conversation.php:1577 +#: ../../include/conversation.php:1581 msgid "Starred" msgstr "Preferiti" -#: ../../include/conversation.php:1580 +#: ../../include/conversation.php:1584 msgid "Favourite Posts" msgstr "Post preferiti" -#: ../../include/conversation.php:1587 +#: ../../include/conversation.php:1591 msgid "Spam" msgstr "Spam" -#: ../../include/conversation.php:1590 +#: ../../include/conversation.php:1594 msgid "Posts flagged as SPAM" msgstr "Post marcati come spam" -#: ../../include/conversation.php:1649 +#: ../../include/conversation.php:1653 msgid "Status Messages and Posts" msgstr "Post e messaggi di stato" -#: ../../include/conversation.php:1658 +#: ../../include/conversation.php:1662 msgid "About" msgstr "Informazioni" -#: ../../include/conversation.php:1661 +#: ../../include/conversation.php:1665 msgid "Profile Details" msgstr "Dettagli del profilo" -#: ../../include/conversation.php:1677 +#: ../../include/conversation.php:1681 msgid "Files and Storage" msgstr "Archivio file" -#: ../../include/conversation.php:1697 ../../include/conversation.php:1700 +#: ../../include/conversation.php:1701 ../../include/conversation.php:1704 #: ../../include/widgets.php:883 msgid "Chatrooms" msgstr "Chat" -#: ../../include/conversation.php:1710 ../../include/nav.php:105 -msgid "Bookmarks" -msgstr "Segnalibri" - -#: ../../include/conversation.php:1713 +#: ../../include/conversation.php:1717 msgid "Saved Bookmarks" msgstr "Segnalibri salvati" -#: ../../include/conversation.php:1723 +#: ../../include/conversation.php:1727 msgid "Manage Webpages" msgstr "Gestisci le pagine web" -#: ../../include/conversation.php:1788 +#: ../../include/conversation.php:1792 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "Partecipa" msgstr[1] "Partecipano" -#: ../../include/conversation.php:1791 +#: ../../include/conversation.php:1795 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "Non partecipa" msgstr[1] "Non partecipano" -#: ../../include/conversation.php:1794 +#: ../../include/conversation.php:1798 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "Indeciso" msgstr[1] "Indecisi" -#: ../../include/conversation.php:1797 +#: ../../include/conversation.php:1801 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "D'accordo" msgstr[1] "D'accordo" -#: ../../include/conversation.php:1800 +#: ../../include/conversation.php:1804 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "Non d'accordo" msgstr[1] "Non d'accordo" -#: ../../include/conversation.php:1803 +#: ../../include/conversation.php:1807 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "Astenuto" msgstr[1] "Astenuti" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:465 -#: ../../include/contact_widgets.php:91 -msgid "Categories" -msgstr "Categorie" - #: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 msgid "Tags" msgstr "Tag" @@ -9084,303 +9159,314 @@ msgstr "gli piace" msgid "dislikes" msgstr "non gli piace" -#: ../../include/features.php:50 -msgid "General Features" -msgstr "Funzionalità di base" +#: ../../include/text.php:450 +msgid "prev" +msgstr "prec" -#: ../../include/features.php:52 -msgid "Content Expiration" -msgstr "Scadenza" +#: ../../include/text.php:452 +msgid "first" +msgstr "inizio" -#: ../../include/features.php:52 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" +#: ../../include/text.php:481 +msgid "last" +msgstr "fine" -#: ../../include/features.php:53 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../include/text.php:484 +msgid "next" +msgstr "succ" -#: ../../include/features.php:53 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" +#: ../../include/text.php:494 +msgid "older" +msgstr "più recenti" -#: ../../include/features.php:54 -msgid "Advanced Profiles" -msgstr "Profili avanzati" +#: ../../include/text.php:496 +msgid "newer" +msgstr "più nuovi" -#: ../../include/features.php:54 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" +#: ../../include/text.php:889 +msgid "No connections" +msgstr "Nessun contatto" -#: ../../include/features.php:55 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" +#: ../../include/text.php:914 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../include/features.php:55 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" +#: ../../include/text.php:1059 ../../include/text.php:1064 +msgid "poke" +msgstr "poke" -#: ../../include/features.php:56 -msgid "Web Pages" -msgstr "Pagine web" +#: ../../include/text.php:1065 +msgid "ping" +msgstr "ping" -#: ../../include/features.php:56 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" +#: ../../include/text.php:1065 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../include/features.php:57 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" +#: ../../include/text.php:1066 +msgid "prod" +msgstr "spintone" -#: ../../include/features.php:59 -msgid "Private Notes" -msgstr "Note private" +#: ../../include/text.php:1066 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../include/features.php:59 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" +#: ../../include/text.php:1067 +msgid "slap" +msgstr "schiaffo" -#: ../../include/features.php:60 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" +#: ../../include/text.php:1067 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../include/features.php:60 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" +#: ../../include/text.php:1068 +msgid "finger" +msgstr "finger" -#: ../../include/features.php:61 -msgid "Photo Location" -msgstr "Posizione geografica" +#: ../../include/text.php:1068 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../include/features.php:61 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." +#: ../../include/text.php:1069 +msgid "rebuff" +msgstr "rifiuto" -#: ../../include/features.php:62 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" +#: ../../include/text.php:1069 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../include/features.php:62 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato." +#: ../../include/text.php:1081 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:1082 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:1083 +msgid "mellow" +msgstr "calmo" + +#: ../../include/text.php:1084 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:1085 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:1086 +msgid "angry" +msgstr "arrabbiato" -#: ../../include/features.php:63 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" +#: ../../include/text.php:1087 +msgid "stupefied" +msgstr "stupito" -#: ../../include/features.php:63 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." +#: ../../include/text.php:1088 +msgid "puzzled" +msgstr "confuso" -#: ../../include/features.php:68 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../include/text.php:1089 +msgid "interested" +msgstr "attento" -#: ../../include/features.php:69 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../include/text.php:1090 +msgid "bitter" +msgstr "amaro" -#: ../../include/features.php:69 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" +#: ../../include/text.php:1091 +msgid "cheerful" +msgstr "allegro" -#: ../../include/features.php:70 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" +#: ../../include/text.php:1092 +msgid "alive" +msgstr "vivace" -#: ../../include/features.php:71 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" +#: ../../include/text.php:1093 +msgid "annoyed" +msgstr "seccato" -#: ../../include/features.php:71 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" +#: ../../include/text.php:1094 +msgid "anxious" +msgstr "ansioso" -#: ../../include/features.php:72 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" +#: ../../include/text.php:1095 +msgid "cranky" +msgstr "irritabile" -#: ../../include/features.php:72 -msgid "Provide a class of post which others can vote on" -msgstr "Rende possibile la creazione di post in cui sarà possibile votare" +#: ../../include/text.php:1096 +msgid "disturbed" +msgstr "turbato" -#: ../../include/features.php:73 -msgid "Disable Comments" -msgstr "Disabilita i commenti" +#: ../../include/text.php:1097 +msgid "frustrated" +msgstr "frustrato" -#: ../../include/features.php:73 -msgid "Provide the option to disable comments for a post" -msgstr "Permetti di disabilitare i commenti" +#: ../../include/text.php:1098 +msgid "depressed" +msgstr "in depressione" -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" +#: ../../include/text.php:1099 +msgid "motivated" +msgstr "motivato" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Per scegliere una data e un'ora a cui far uscire i post" +#: ../../include/text.php:1100 +msgid "relaxed" +msgstr "rilassato" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" +#: ../../include/text.php:1101 +msgid "surprised" +msgstr "sorpreso" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." +#: ../../include/text.php:1289 +msgid "May" +msgstr "Mag" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../include/text.php:1366 ../../include/text.php:1370 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../include/text.php:1372 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../include/text.php:1408 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" +#: ../../include/text.php:1485 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/features.php:84 ../../include/widgets.php:283 -msgid "Saved Searches" -msgstr "Ricerche salvate" +#: ../../include/text.php:1784 ../../include/text.php:1855 +msgid "default" +msgstr "predefinito" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../include/text.php:1792 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../include/text.php:1792 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" +#: ../../include/text.php:1834 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../include/text.php:1867 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../include/text.php:2004 +msgid "activity" +msgstr "l'attività" -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../include/text.php:2305 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../include/text.php:2311 +msgid "Pages" +msgstr "Pagine" -#: ../../include/features.php:88 -msgid "Show friend and connection suggestions" -msgstr "Mostra suggerimenti di contatti e amici" +#: ../../include/text.php:2333 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/features.php:93 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../include/text.php:2334 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" -#: ../../include/features.php:94 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../include/text.php:2335 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/features.php:94 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../include/text.php:2336 +msgid "Import from cloud files:" +msgstr "Importa da un file su cloud:" -#: ../../include/features.php:95 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../include/text.php:2337 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/posizione/della/cartella" -#: ../../include/features.php:95 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../include/text.php:2338 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/features.php:96 -msgid "Emoji Reactions" -msgstr "Risposte emoji" +#: ../../include/text.php:2339 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/features.php:96 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti di rispondere ai post con degli emoji" +#: ../../include/text.php:2340 +msgid "Export website..." +msgstr "Esporta il sito web..." -#: ../../include/features.php:97 ../../include/widgets.php:346 -#: ../../include/contact_widgets.php:53 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../include/text.php:2341 +msgid "Export to a zip file" +msgstr "Esporta come file zip" -#: ../../include/features.php:97 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../include/text.php:2342 +msgid "website.zip" +msgstr "sitoweb.zip" -#: ../../include/features.php:98 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../include/text.php:2343 +msgid "Enter a name for the zip file." +msgstr "Scegli il nome del file zip." -#: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../include/text.php:2344 +msgid "Export to cloud files" +msgstr "Esporta nell'archivio cloud" -#: ../../include/features.php:99 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../include/text.php:2345 +msgid "/path/to/export/folder" +msgstr "/percorso/alla/cartella" -#: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../include/text.php:2346 +msgid "Enter a path to a cloud files destination." +msgstr "Scegli la posizione su una cartella cloud." -#: ../../include/features.php:100 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../include/text.php:2347 +msgid "Specify folder" +msgstr "Scegli la cartella" -#: ../../include/features.php:100 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" +#: ../../include/api.php:1330 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../include/features.php:109 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Visibilità negli elenchi pubblici" -#: ../../include/features.php:110 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" -#: ../../include/features.php:120 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" -#: ../../include/features.php:121 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo in questo sito" -#: ../../include/features.php:128 -msgid "Advanced Directory Search" -msgstr "Ricerca avanzata sugli elenchi pubblici" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../include/features.php:129 -msgid "Allows creation of complex directory search queries" -msgstr "Permette la creazione di ricerche complesse negli elenchi" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../include/features.php:135 -msgid "Advanced Theme and Layout Settings" -msgstr "Impostazioni avanzate del tema e dei layout" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../include/features.php:136 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permette una personalizzazione accurata del tema e dei layout" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." #: ../../include/widgets.php:103 msgid "System" @@ -9423,10 +9509,9 @@ msgstr "Note" msgid "Remove term" msgstr "Rimuovi termine" -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" -msgstr "Tutto" +#: ../../include/widgets.php:283 ../../include/features.php:84 +msgid "Saved Searches" +msgstr "Ricerche salvate" #: ../../include/widgets.php:390 msgid "Archives" @@ -9458,7 +9543,7 @@ msgstr "Aspetto" #: ../../include/widgets.php:627 msgid "Manage locations" -msgstr "Gestione repliche" +msgstr "Gestione cloni" #: ../../include/widgets.php:634 msgid "Export channel" @@ -9480,18 +9565,6 @@ msgstr "Menu messaggi privati" msgid "Combined View" msgstr "Vista combinata" -#: ../../include/widgets.php:700 ../../include/nav.php:201 -msgid "Inbox" -msgstr "In arrivo" - -#: ../../include/widgets.php:705 ../../include/nav.php:202 -msgid "Outbox" -msgstr "Inviati" - -#: ../../include/widgets.php:710 ../../include/nav.php:203 -msgid "New Message" -msgstr "Nuovo messaggio" - #: ../../include/widgets.php:727 ../../include/widgets.php:739 msgid "Conversations" msgstr "Conversazioni" @@ -9544,387 +9617,363 @@ msgstr "Pagine wiki" msgid "Bookmarked Chatrooms" msgstr "Chat nei segnalibri" -#: ../../include/widgets.php:1012 +#: ../../include/widgets.php:1020 msgid "Suggested Chatrooms" msgstr "Chat suggerite" -#: ../../include/widgets.php:1158 ../../include/widgets.php:1270 +#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 msgid "photo/image" msgstr "foto/immagine" -#: ../../include/widgets.php:1213 +#: ../../include/widgets.php:1221 msgid "Click to show more" msgstr "Clicca per mostrare tutto" -#: ../../include/widgets.php:1364 +#: ../../include/widgets.php:1372 msgid "Rating Tools" msgstr "Valutazione" -#: ../../include/widgets.php:1368 ../../include/widgets.php:1370 +#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 msgid "Rate Me" msgstr "Valutami" -#: ../../include/widgets.php:1373 +#: ../../include/widgets.php:1381 msgid "View Ratings" msgstr "Vedi le valutazioni ricevute" -#: ../../include/widgets.php:1457 +#: ../../include/widgets.php:1465 msgid "Forums" msgstr "Forum" -#: ../../include/widgets.php:1486 +#: ../../include/widgets.php:1494 msgid "Tasks" msgstr "Attività" -#: ../../include/widgets.php:1495 +#: ../../include/widgets.php:1505 msgid "Documentation" msgstr "Guida" -#: ../../include/widgets.php:1497 -msgid "Project/Site Information" -msgstr "Informazioni sul sito/progetto" - -#: ../../include/widgets.php:1498 -msgid "For Members" -msgstr "Per gli utenti" - -#: ../../include/widgets.php:1499 -msgid "For Administrators" -msgstr "Per gli amministratori" - -#: ../../include/widgets.php:1500 -msgid "For Developers" -msgstr "Per sviluppatori" - -#: ../../include/widgets.php:1524 ../../include/widgets.php:1562 +#: ../../include/widgets.php:1557 ../../include/widgets.php:1595 msgid "Member registrations waiting for confirmation" msgstr "Richieste in attesa di conferma" -#: ../../include/widgets.php:1530 +#: ../../include/widgets.php:1563 msgid "Inspect queue" msgstr "Coda di attesa" -#: ../../include/widgets.php:1532 +#: ../../include/widgets.php:1565 msgid "DB updates" msgstr "Aggiornamenti al DB" -#: ../../include/widgets.php:1557 ../../include/nav.php:221 -msgid "Admin" -msgstr "Amministrazione" - -#: ../../include/widgets.php:1558 +#: ../../include/widgets.php:1591 msgid "Plugin Features" msgstr "Plugin" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:881 -#: ../../include/bbcode.php:884 ../../include/bbcode.php:889 -#: ../../include/bbcode.php:892 ../../include/bbcode.php:895 -#: ../../include/bbcode.php:898 ../../include/bbcode.php:903 -#: ../../include/bbcode.php:906 ../../include/bbcode.php:911 -#: ../../include/bbcode.php:914 ../../include/bbcode.php:917 -#: ../../include/bbcode.php:920 -msgid "Image/photo" -msgstr "Immagine" +#: ../../include/zot.php:700 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" -msgstr "Contenuto cifrato" +#: ../../include/zot.php:716 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/bbcode.php:178 +#: ../../include/zot.php:2329 #, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/bbcode.php:182 -#, php-format -msgid "" -"This post contains an installable %s element, however you lack permissions " -"to install it on this site." -msgstr "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione." +#: ../../include/zot.php:3711 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../include/bbcode.php:261 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" +#: ../../include/features.php:50 +msgid "General Features" +msgstr "Funzionalità di base" -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +#: ../../include/features.php:52 +msgid "Content Expiration" +msgstr "Scadenza" -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/features.php:52 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo" -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/features.php:53 +msgid "Multiple Profiles" +msgstr "Profili multipli" -#: ../../include/contact_widgets.php:11 -#, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +#: ../../include/features.php:53 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/features.php:54 +msgid "Advanced Profiles" +msgstr "Profili avanzati" -#: ../../include/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/features.php:54 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/features.php:55 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../include/features.php:55 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Profilo casuale" +#: ../../include/features.php:56 +msgid "Web Pages" +msgstr "Pagine web" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../include/features.php:56 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" +#: ../../include/features.php:57 +msgid "Provide a wiki for your channel" +msgstr "Fornisce una wiki per il tuo canale" -#: ../../include/contact_widgets.php:122 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d contatto in comune" -msgstr[1] "%d contatti in comune" +#: ../../include/features.php:59 +msgid "Private Notes" +msgstr "Note private" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostra tutto" +#: ../../include/features.php:59 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Visibilità negli elenchi pubblici" +#: ../../include/features.php:60 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" +#: ../../include/features.php:60 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" +#: ../../include/features.php:61 +msgid "Photo Location" +msgstr "Posizione geografica" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo in questo sito" +#: ../../include/features.php:61 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Collega la foto a una mappa quando contiene indicazioni geografiche." -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." +#: ../../include/features.php:62 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[nessun titolo]" +#: ../../include/features.php:62 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato." -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." +#: ../../include/features.php:63 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." +#: ../../include/features.php:63 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "I compleanni saranno segnalati in base al fuso orario, utile se hai amici sparsi per il mondo." -#: ../../include/event.php:821 -msgid "This event has been added to your calendar." -msgstr "Questo evento è stato aggiunto al tuo calendario" +#: ../../include/features.php:68 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" -#: ../../include/event.php:1021 -msgid "Not specified" -msgstr "Non specificato" +#: ../../include/features.php:69 +msgid "Large Photos" +msgstr "Foto grandi" -#: ../../include/event.php:1022 -msgid "Needs Action" -msgstr "Necessita di un intervento" +#: ../../include/features.php:69 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Includi anteprime grandi per le foto dei tuoi post (1024px). Altrimenti saranno mostrate anteprime più piccole (640px)" -#: ../../include/event.php:1023 -msgid "Completed" -msgstr "Completato" +#: ../../include/features.php:70 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importa automaticamente il contenuto del canale da altri canali o feed" -#: ../../include/event.php:1024 -msgid "In Process" -msgstr "In corso" +#: ../../include/features.php:71 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" -#: ../../include/event.php:1025 -msgid "Cancelled" -msgstr "Annullato" +#: ../../include/features.php:71 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usando una parola chiave conosciuta a entrambi" + +#: ../../include/features.php:72 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1737 -msgid "Logout" -msgstr "Esci" +#: ../../include/features.php:72 +msgid "Provide a class of post which others can vote on" +msgstr "Rende possibile la creazione di post in cui sarà possibile votare" -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" -msgstr "Chiudi questa sessione" +#: ../../include/features.php:73 +msgid "Disable Comments" +msgstr "Disabilita i commenti" -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" -msgstr "Bacheca" +#: ../../include/features.php:73 +msgid "Provide the option to disable comments for a post" +msgstr "Permetti di disabilitare i commenti" -#: ../../include/nav.php:88 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" -#: ../../include/nav.php:89 -msgid "Your profile page" -msgstr "Il tuo profilo" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Per scegliere una data e un'ora a cui far uscire i post" -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" -#: ../../include/nav.php:93 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Scarta post e commenti se sono identici ad altri inviati meno di due minuti prima." -#: ../../include/nav.php:95 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../include/nav.php:96 -msgid "Your files" -msgstr "I tuoi file" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../include/nav.php:99 -msgid "Your chatrooms" -msgstr "Le tue chat" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/nav.php:105 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" -#: ../../include/nav.php:109 -msgid "Your webpages" -msgstr "Le tue pagine web" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/nav.php:111 -msgid "Your wiki" -msgstr "La tua wiki" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../include/nav.php:115 -msgid "Sign in" -msgstr "Accedi" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Abilita il link per mostrare solamente i contenuti con cui hai interagito" -#: ../../include/nav.php:132 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../include/nav.php:135 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../include/nav.php:149 -msgid "Home Page" -msgstr "Bacheca" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/nav.php:152 -msgid "Create an account" -msgstr "Crea un account" +#: ../../include/features.php:88 +msgid "Show friend and connection suggestions" +msgstr "Mostra suggerimenti di contatti e amici" -#: ../../include/nav.php:164 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../include/features.php:93 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" +#: ../../include/features.php:94 +msgid "Community Tagging" +msgstr "Tag della comunità" -#: ../../include/nav.php:170 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" +#: ../../include/features.php:94 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/nav.php:172 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/features.php:95 +msgid "Post Categories" +msgstr "Categorie dei post" -#: ../../include/nav.php:184 -msgid "Your grid" -msgstr "La tua rete" +#: ../../include/features.php:95 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../include/features.php:96 +msgid "Emoji Reactions" +msgstr "Risposte emoji" -#: ../../include/nav.php:187 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../include/features.php:96 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti di rispondere ai post con degli emoji" -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/nav.php:194 -msgid "Notices" -msgstr "Avvisi" +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../include/nav.php:194 -msgid "Notifications" -msgstr "Notifiche" +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/nav.php:195 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Post con stella" -#: ../../include/nav.php:198 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/nav.php:199 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../include/features.php:100 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Mostra la nuvola dei tag che usi di più sulla pagina del tuo canale" -#: ../../include/nav.php:206 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../include/features.php:109 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" -#: ../../include/nav.php:207 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../include/features.php:110 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/nav.php:208 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" +#: ../../include/features.php:120 +msgid "Premium Channel" +msgstr "Canale premium" -#: ../../include/nav.php:211 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" +#: ../../include/features.php:121 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Ti permette di impostare restrizioni e termini d'uso per il canale" -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" +#: ../../include/features.php:128 +msgid "Advanced Directory Search" +msgstr "Ricerca avanzata sugli elenchi pubblici" -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" +#: ../../include/features.php:129 +msgid "Allows creation of complex directory search queries" +msgstr "Permette la creazione di ricerche complesse negli elenchi" -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" +#: ../../include/features.php:135 +msgid "Advanced Theme and Layout Settings" +msgstr "Impostazioni avanzate del tema e dei layout" -#: ../../include/nav.php:258 -msgid "Please wait..." -msgstr "Attendere..." +#: ../../include/features.php:136 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permette una personalizzazione accurata del tema e dei layout" #: ../../view/theme/redbasic/php/config.php:9 msgid "Focus (Hubzilla default)" @@ -10058,66 +10107,66 @@ msgstr "Dimensione foto dell'autore della conversazione" msgid "Set size of followup author photos" msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../boot.php:1194 +#: ../../boot.php:1195 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Cerca %1$s (%2$s)" -#: ../../boot.php:1194 +#: ../../boot.php:1195 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1512 +#: ../../boot.php:1513 #, php-format msgid "Update %s failed. See error logs." msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../boot.php:1515 +#: ../../boot.php:1516 #, php-format msgid "Update Error at %s" msgstr "Errore di aggiornamento su %s" -#: ../../boot.php:1719 +#: ../../boot.php:1720 msgid "" "Create an account to access services and applications within the Hubzilla" msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla" -#: ../../boot.php:1740 +#: ../../boot.php:1741 msgid "Login/Email" msgstr "Login/Email" -#: ../../boot.php:1741 +#: ../../boot.php:1742 msgid "Password" msgstr "Password" -#: ../../boot.php:1742 +#: ../../boot.php:1743 msgid "Remember me" msgstr "Resta connesso" -#: ../../boot.php:1745 +#: ../../boot.php:1746 msgid "Forgot your password?" msgstr "Hai dimenticato la password?" -#: ../../boot.php:2314 +#: ../../boot.php:2315 msgid "toggle mobile" msgstr "attiva/disattiva versione mobile" -#: ../../boot.php:2469 +#: ../../boot.php:2470 msgid "Website SSL certificate is not valid. Please correct." msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../boot.php:2472 +#: ../../boot.php:2473 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Errore SSL su %s" -#: ../../boot.php:2576 +#: ../../boot.php:2577 msgid "Cron/Scheduled tasks not running." msgstr "Processi cron non avviati." -#: ../../boot.php:2580 +#: ../../boot.php:2581 #, php-format msgid "[hubzilla] Cron tasks not running on %s" msgstr "[hubzilla] Cron non è stato eseguito %s" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 6d75728bb..fd69c67ec 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -72,105 +72,23 @@ App::$strings["Requested profile is not available."] = "Il profilo richiesto non App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; App::$strings["Away"] = "Assente"; App::$strings["Online"] = "Online"; -App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; -App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; -App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; -App::$strings["Could not create table."] = "Impossibile creare le tabelle."; -App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; -App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; -App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; -App::$strings["System check"] = "Verifica del sistema"; -App::$strings["Next"] = "Successivo"; -App::$strings["Check again"] = "Verifica di nuovo"; -App::$strings["Database connection"] = "Connessione al database"; -App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; -App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; -App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; -App::$strings["Database Server Name"] = "Server del database"; -App::$strings["Default is 127.0.0.1"] = "Il valore predefinito è 127.0.0.1"; -App::$strings["Database Port"] = "Port del database"; -App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; -App::$strings["Database Login Name"] = "Utente database"; -App::$strings["Database Login Password"] = "Password database"; -App::$strings["Database Name"] = "Nome database"; -App::$strings["Database Type"] = "Tipo database"; -App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub"; -App::$strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."; -App::$strings["Website URL"] = "URL completo del sito"; -App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; -App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; -App::$strings["Submit"] = "Salva"; -App::$strings["Basic/Minimal Social Networking"] = "Social network basilare"; -App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; -App::$strings["Professional"] = "Professionale"; -App::$strings["Site settings"] = "Impostazioni del hub"; -App::$strings["Server Configuration/Role"] = "Configurazione del server"; -App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; -App::$strings["PHP version"] = "Versione PHP"; -App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; -App::$strings["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."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; -App::$strings["PHP executable path"] = "Path del comando PHP"; -App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; -App::$strings["Command line PHP"] = "PHP da riga di comando"; -App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; -App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; -App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; -App::$strings["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."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; -App::$strings["You can adjust these settings in the servers php.ini."] = "Puoi regolare queste impostazioni sul server in php.ini"; -App::$strings["PHP upload limits"] = "Limiti PHP in upload"; -App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"; -App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; -App::$strings["Generate encryption keys"] = "Genera chiavi di cifratura"; -App::$strings["libCurl PHP module"] = "modulo PHP libCurl"; -App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; -App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; -App::$strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; -App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; -App::$strings["xml PHP module"] = "modulo xml PHP"; -App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; -App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; -App::$strings["proc_open"] = "proc_open"; -App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; -App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; -App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; -App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; -App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; -App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; -App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; -App::$strings["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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo."; -App::$strings["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."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."; -App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."; -App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; -App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; -App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; -App::$strings["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."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s"; -App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; -App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; -App::$strings["%s is writable"] = "%s è scrivibile"; -App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo"; -App::$strings["store is writable"] = "l'archivio è scrivibile"; -App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; -App::$strings["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!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"; -App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; -App::$strings["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."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."; -App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; -App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; -App::$strings["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."] = "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server."; -App::$strings["SSL certificate validation"] = "Validazione del certificato SSL"; -App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; -App::$strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; -App::$strings["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."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."; -App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; -App::$strings["

    What next

    "] = "

    I prossimi passi

    "; -App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; +App::$strings["Invalid message"] = "Messaggio non valido"; +App::$strings["no results"] = "nessun risultato"; +App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; +App::$strings["queued"] = "in coda"; +App::$strings["posted"] = "inviato"; +App::$strings["accepted for delivery"] = "accettato per la spedizione"; +App::$strings["updated"] = "aggiornato"; +App::$strings["update ignored"] = "aggiornamento ignorato"; +App::$strings["permission denied"] = "permessi non sufficienti"; +App::$strings["recipient not found"] = "Destinatario non trovato"; +App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; +App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; +App::$strings["mail delivered"] = "messaggio recapitato"; +App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; +App::$strings["Options"] = "Opzioni"; +App::$strings["Redeliver"] = "Reinvia"; App::$strings["Fetching URL returns error: %1\$s"] = "La chiamata all'URL restituisce questo errore: %1\$s"; -App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; -App::$strings["No such channel"] = "Canale sconosciuto"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Cerca risultati con:"; -App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; -App::$strings["Privacy group: "] = "Gruppo di canali:"; -App::$strings["Invalid connection."] = "Contatto non valido."; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "È stato superato il numero massimo giornaliero di registrazioni a questo sito. Riprova domani!"; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Impossibile proseguire. Devi prima accettare le Condizioni d'Uso del servizio."; App::$strings["Passwords do not match."] = "Le password non corrispondono."; @@ -201,334 +119,6 @@ App::$strings["Registration"] = "Registrazione"; App::$strings["Membership on this site is by invitation only."] = "Per registrarsi su questo hub è necessario un invito."; App::$strings["Register"] = "Registrati"; App::$strings["This site may require email verification after submitting this form. If you are returned to a login page, please check your email for instructions."] = "Dopo aver inviato questo modulo, potrebbe esserti richiesta una verifica via email. Se comparirà la pagina di login, segui le istruzioni sull'email per continuare."; -App::$strings["Authorize application connection"] = "Autorizza la app"; -App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; -App::$strings["Please login to continue."] = "Accedi al sito per continuare."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; -App::$strings["Yes"] = "Sì"; -App::$strings["No"] = "No"; -App::$strings["Bookmark added"] = "Segnalibro aggiunto"; -App::$strings["My Bookmarks"] = "I miei segnalibri"; -App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; -App::$strings["Name is required"] = "Il nome è obbligatorio"; -App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; -App::$strings["Update"] = "Aggiorna"; -App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; -App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; -App::$strings["Token saved."] = "Token salvato."; -App::$strings["Not valid email."] = "Email non valida."; -App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; -App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; -App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; -App::$strings["Password verification failed."] = "Verifica della password fallita."; -App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; -App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; -App::$strings["Password changed."] = "Password cambiata."; -App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; -App::$strings["Friends"] = "Amici"; -App::$strings["Settings updated."] = "Impostazioni aggiornate."; -App::$strings["Add application"] = "Aggiungi una app"; -App::$strings["Cancel"] = "Annulla"; -App::$strings["Name of application"] = "Nome dell'applicazione"; -App::$strings["Consumer Key"] = "Consumer Key"; -App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; -App::$strings["Consumer Secret"] = "Consumer Secret"; -App::$strings["Redirect"] = "Redirect"; -App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; -App::$strings["Icon url"] = "Url icona"; -App::$strings["Optional"] = "Facoltativo"; -App::$strings["Application not found."] = "Applicazione non trovata."; -App::$strings["Connected Apps"] = "App connesse"; -App::$strings["Client key starts with"] = "La client key inizia con"; -App::$strings["No name"] = "Nessun nome"; -App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; -App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; -App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; -App::$strings["Beginner/Basic"] = "Principiante"; -App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; -App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; -App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; -App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; -App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te"; -App::$strings["Account Settings"] = "Il tuo account"; -App::$strings["Current Password"] = "Password attuale"; -App::$strings["Enter New Password"] = "Nuova password"; -App::$strings["Confirm New Password"] = "Conferma la nuova password"; -App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; -App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; -App::$strings["Used to provide a member experience matched to your comfort level"] = "Serve a vedere solo gli aspetti tecnici che possano metterti a tuo agio"; -App::$strings["Email Address:"] = "Indirizzo email:"; -App::$strings["Remove Account"] = "Elimina l'account"; -App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; -App::$strings["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."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; -App::$strings["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:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; -App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; -App::$strings["Login Name"] = "Nome utente"; -App::$strings["Login Password"] = "Password"; -App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; -App::$strings["Their Settings"] = "Permessi concessi a te"; -App::$strings["My Settings"] = "Permessi che concedo"; -App::$strings["inherited"] = "derivato"; -App::$strings["Individual Permissions"] = "Permessi individuali"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; -App::$strings["Off"] = "Off"; -App::$strings["On"] = "On"; -App::$strings["Additional Features"] = "Funzionalità opzionali"; -App::$strings["Connector Settings"] = "Impostazioni del connettore"; -App::$strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; -App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)"; -App::$strings["mobile"] = "mobile"; -App::$strings["Display Settings"] = "Aspetto"; -App::$strings["Theme Settings"] = "Impostazioni del tema"; -App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; -App::$strings["Content Settings"] = "Impostazioni dei contenuti"; -App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; -App::$strings["Select scheme"] = "Scegli uno schema"; -App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; -App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; -App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; -App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; -App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; -App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; -App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; -App::$strings["Maximum of 100 items"] = "Massimo 100"; -App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; -App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; -App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; -App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; -App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; -App::$strings["Use blog/list mode on grid page"] = "Mostra la tua rete in modalità blog"; -App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; -App::$strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"; -App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; -App::$strings["Nobody except yourself"] = "Nessuno tranne te"; -App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; -App::$strings["Approved connections"] = "Contatti approvati"; -App::$strings["Any connections"] = "Tutti i contatti"; -App::$strings["Anybody on this website"] = "Chiunque su questo hub"; -App::$strings["Anybody in this network"] = "Chiunque su questa rete"; -App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; -App::$strings["Anybody on the internet"] = "Chiunque su internet"; -App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; -App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; -App::$strings["or"] = "o"; -App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; -App::$strings["Channel Settings"] = "Impostazioni del canale"; -App::$strings["Basic Settings"] = "Impostazioni di base"; -App::$strings["Full Name:"] = "Nome completo:"; -App::$strings["Your Timezone:"] = "Il tuo fuso orario:"; -App::$strings["Default Post Location:"] = "Località predefinita:"; -App::$strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post"; -App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; -App::$strings["Adult Content"] = "Contenuto per adulti"; -App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; -App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; -App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; -App::$strings["Hide my online presence"] = "Nascondi la mia presenza online"; -App::$strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online"; -App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; -App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; -App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; -App::$strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; -App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; -App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; -App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; -App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; -App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; -App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; -App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; -App::$strings["This website does not expire imported content."] = "I contenuti di questo sito non hanno scadenza."; -App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te."; -App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; -App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; -App::$strings["Default Access Control List (ACL)"] = "Lista di accesso ai contenuti (ACL)"; -App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; -App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; -App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; -App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; -App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; -App::$strings["Notification Settings"] = "Impostazioni di notifica"; -App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; -App::$strings["accepting a friend request"] = "accetto una nuova amicizia"; -App::$strings["joining a forum/community"] = "entro a far parte di un forum"; -App::$strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; -App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:"; -App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; -App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; -App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; -App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; -App::$strings["You receive a private message"] = "Ricevi un messaggio privato"; -App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; -App::$strings["You are tagged in a post"] = "Sei taggato in un post"; -App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; -App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; -App::$strings["Unseen grid activity"] = "Nuove attività nella rete"; -App::$strings["Unseen channel activity"] = "Novità nei canali"; -App::$strings["Unseen private messages"] = "Nuovi messaggi privati"; -App::$strings["Recommended"] = "Consigliato"; -App::$strings["Upcoming events"] = "Prossimi eventi"; -App::$strings["Events today"] = "Eventi di oggi"; -App::$strings["Upcoming birthdays"] = "Prossimi compleanni"; -App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi"; -App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema"; -App::$strings["System info messages"] = "Notifiche di sistema"; -App::$strings["System critical alerts"] = "Avvisi critici di sistema"; -App::$strings["New connections"] = "Nuovi contatti"; -App::$strings["System Registrations"] = "Registrazioni"; -App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"; -App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; -App::$strings["Must be greater than 0"] = "Maggiore di 0"; -App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; -App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; -App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; -App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; -App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; -App::$strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; -App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; -App::$strings["Remove Channel"] = "Elimina questo canale"; -App::$strings["Remove this channel."] = "Elimina questo canale."; -App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; -App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; -App::$strings["Photos"] = "Foto"; -App::$strings["Invalid item."] = "Elemento non valido."; -App::$strings["Channel not found."] = "Canale non trovato."; -App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Save to Folder:"] = "Salva nella cartella:"; -App::$strings["- select -"] = "- scegli -"; -App::$strings["Save"] = "Salva"; -App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; -App::$strings["Item not found."] = "Elemento non trovato."; -App::$strings["# Accounts"] = "# account"; -App::$strings["# blocked accounts"] = "# account bloccati"; -App::$strings["# expired accounts"] = "# account scaduti"; -App::$strings["# expiring accounts"] = "# account in scadenza"; -App::$strings["# Channels"] = "# canali"; -App::$strings["# primary"] = "# primari"; -App::$strings["# clones"] = "# cloni"; -App::$strings["Message queues"] = "Coda messaggi in uscita"; -App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; -App::$strings["Administration"] = "Amministrazione"; -App::$strings["Summary"] = "Riepilogo"; -App::$strings["Registered accounts"] = "Account creati"; -App::$strings["Pending registrations"] = "Registrazioni da approvare"; -App::$strings["Registered channels"] = "Canali creati"; -App::$strings["Active plugins"] = "Plugin attivi"; -App::$strings["Version"] = "Versione"; -App::$strings["Repository version (master)"] = "Versione del repository (master)"; -App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; -App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; -App::$strings["Default"] = "Predefinito"; -App::$strings["experimental"] = "sperimentale"; -App::$strings["unsupported"] = "non supportato"; -App::$strings["Yes - with approval"] = "Sì - con approvazione"; -App::$strings["My site is not a public server"] = "Non è un server pubblico"; -App::$strings["My site has paid access only"] = "È un servizio a pagamento"; -App::$strings["My site has free access only"] = "È un servizio gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; -App::$strings["Site"] = "Sito"; -App::$strings["File upload"] = "Caricamento file"; -App::$strings["Policies"] = "Politiche"; -App::$strings["Advanced"] = "Avanzate"; -App::$strings["Site name"] = "Nome del sito"; -App::$strings["Banner/Logo"] = "Banner o logo"; -App::$strings["Administrator Information"] = "Informazioni sull'amministratore"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; -App::$strings["System language"] = "Lingua di sistema"; -App::$strings["System theme"] = "Tema di sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; -App::$strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; -App::$strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; -App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; -App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; -App::$strings["Maximum image size"] = "Dimensione massima immagini"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; -App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; -App::$strings["Invitation only"] = "Solo con invito"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; -App::$strings["Register text"] = "Testo di registrazione"; -App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; -App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; -App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; -App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; -App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; -App::$strings["Force publish"] = "Forza la publicazione del profilo"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito."; -App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."; -App::$strings["Login on Homepage"] = "Login sulla homepage"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."; -App::$strings["Enable context help"] = "Abilita la guida contestuale"; -App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente"; -App::$strings["Directory Server URL"] = "URL del directory server"; -App::$strings["Default directory server"] = "Directory server predefinito"; -App::$strings["Proxy user"] = "Utente proxy"; -App::$strings["Proxy URL"] = "URL proxy"; -App::$strings["Network timeout"] = "Timeout rete"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; -App::$strings["Delivery interval"] = "Recapito ritardato"; -App::$strings["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."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; -App::$strings["Deliveries per process"] = "Tentativi di recapito per processo"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"; -App::$strings["Poll interval"] = "Intervallo di polling"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; -App::$strings["Maximum Load Average"] = "Carico massimo medio"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; -App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; -App::$strings["Lock feature %s"] = "Rendi non modificabile %s"; -App::$strings["Manage Additional Features"] = "Funzionalità opzionali"; -App::$strings["No server found"] = "Server non trovato"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "per il canale"; -App::$strings["on server"] = "sul server"; -App::$strings["Status"] = "Stato"; -App::$strings["Server"] = "Server"; -App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; -App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; -App::$strings["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/
    "; -App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato."; -App::$strings["Security"] = "Sicurezza"; -App::$strings["Block public"] = "Blocca pagine pubbliche"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; -App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; -App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; -App::$strings["Allowed email domains"] = "Domini email consentiti"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; -App::$strings["Not allowed email domains"] = "Domini email non consentiti"; -App::$strings["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."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; -App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; -App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; -App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; -App::$strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali"; -App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetti di incorporare contenuti solamente da siti sicuri (SSL)."; -App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Incorpora i contenuti HTML non filtrati solo da questi domini"; -App::$strings["One site per line. By default embedded content is filtered."] = "Un sito per riga. Normalmente i contenuti incorporati sono filtrati."; -App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; -App::$strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; -App::$strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; -App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; -App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; -App::$strings["No failed updates."] = "Nessun aggiornamento fallito."; -App::$strings["Failed Updates"] = "Aggiornamenti falliti."; -App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; -App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; -App::$strings["Queue Statistics"] = "Statistiche della coda"; -App::$strings["Total Entries"] = "Totale"; -App::$strings["Priority"] = "Priorità"; -App::$strings["Destination URL"] = "URL di destinazione"; -App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; -App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; -App::$strings["Last known contact"] = "Ultimo scambio dati"; App::$strings["%s account blocked/unblocked"] = array( 0 => "Modificato il blocco su %s account", 1 => "Modificato il blocco verso %s", @@ -541,7 +131,9 @@ App::$strings["Account not found"] = "Account non trovato"; App::$strings["Account '%s' deleted"] = "Account '%s' eliminato"; App::$strings["Account '%s' blocked"] = "Aggiunto un blocco verso '%s'"; App::$strings["Account '%s' unblocked"] = "Rimosso il blocco verso '%s'"; +App::$strings["Administration"] = "Amministrazione"; App::$strings["Accounts"] = "Account"; +App::$strings["Submit"] = "Salva"; App::$strings["select all"] = "seleziona tutti"; App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di conferma"; App::$strings["Request date"] = "Data richiesta"; @@ -551,6 +143,7 @@ App::$strings["Approve"] = "Approva"; App::$strings["Deny"] = "Nega"; App::$strings["Block"] = "Blocca"; App::$strings["Unblock"] = "Sblocca"; +App::$strings["ID"] = "ID"; App::$strings["All Channels"] = "Tutti i canali"; App::$strings["Register date"] = "Data registrazione"; App::$strings["Last login"] = "Ultimo accesso"; @@ -586,6 +179,27 @@ App::$strings["UID"] = "UID"; App::$strings["Address"] = "Indirizzo"; App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "I canali selezionati saranno rimossi!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questi canali sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; App::$strings["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?"] = "Il canale {0} sarà rimosso!\\n\\nTutto ciò che è stato pubblicato su questo server tramite questo canale sarà irreversibilmente eliminato!\\n\\nVuoi confermare?"; +App::$strings["Update has been marked successful"] = "L'aggiornamento è stato marcato come eseguito."; +App::$strings["Executing %s failed. Check system logs."] = "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema."; +App::$strings["Update %s was successfully applied."] = "L'aggiornamento %s è terminato correttamente."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "L'aggiornamento %s non ha dato risposta. Impossibile determinare se è terminato correttamente."; +App::$strings["Update function %s could not be found."] = "Impossibile trovare la funzione di aggiornamento %s"; +App::$strings["No failed updates."] = "Nessun aggiornamento fallito."; +App::$strings["Failed Updates"] = "Aggiornamenti falliti."; +App::$strings["Mark success (if update was manually applied)"] = "Marca come eseguito (se applicato manualmente)."; +App::$strings["Attempt to execute this update step automatically"] = "Tenta di eseguire in automatico questo passaggio dell'aggiornamento."; +App::$strings["Off"] = "Off"; +App::$strings["On"] = "On"; +App::$strings["Lock feature %s"] = "Rendi non modificabile %s"; +App::$strings["Manage Additional Features"] = "Funzionalità opzionali"; +App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; +App::$strings["Logs"] = "Log"; +App::$strings["Clear"] = "Pulisci"; +App::$strings["Debugging"] = "Debugging"; +App::$strings["Log file"] = "File di log"; +App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; +App::$strings["Log level"] = "Livello di log"; +App::$strings["Item not found."] = "Elemento non trovato."; App::$strings["Plugin %s disabled."] = "Plugin %s non attivo."; App::$strings["Plugin %s enabled."] = "Plugin %s attivo."; App::$strings["Disable"] = "Disattiva"; @@ -608,23 +222,13 @@ App::$strings["(optional)"] = "(facoltativo)"; App::$strings["Download Plugin Repo"] = "Scarica il repository del plugin"; App::$strings["Install new repo"] = "Installa un nuovo repository"; App::$strings["Install"] = "Installa"; +App::$strings["Cancel"] = "Annulla"; App::$strings["Manage Repos"] = "Gestisci i repository"; App::$strings["Installed Plugin Repositories"] = "Repository per i plugin installati"; App::$strings["Install a New Plugin Repository"] = "Installa un nuovo repository per i plugin"; +App::$strings["Update"] = "Aggiorna"; App::$strings["Switch branch"] = "Cambia branch"; App::$strings["Remove"] = "Rimuovi"; -App::$strings["No themes found."] = "Nessun tema trovato."; -App::$strings["Screenshot"] = "Istantanea dello schermo"; -App::$strings["Themes"] = "Temi"; -App::$strings["[Experimental]"] = "[Sperimentale]"; -App::$strings["[Unsupported]"] = "[Non supportato]"; -App::$strings["Log settings updated."] = "Impostazioni di log aggiornate."; -App::$strings["Logs"] = "Log"; -App::$strings["Clear"] = "Pulisci"; -App::$strings["Debugging"] = "Debugging"; -App::$strings["Log file"] = "File di log"; -App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Relativo alla directory base del server web. Deve essere scrivibile."; -App::$strings["Log level"] = "Livello di log"; App::$strings["New Profile Field"] = "Nuovo campo del profilo"; App::$strings["Field nickname"] = "Nome breve del campo"; App::$strings["System name of field"] = "Nome di sistema del campo"; @@ -633,6 +237,7 @@ App::$strings["Field Name"] = "Nome del campo"; App::$strings["Label on profile pages"] = "Etichetta da mostrare sulla pagina del profilo"; App::$strings["Help text"] = "Testo di aiuto"; App::$strings["Additional info (optional)"] = "Informazioni aggiuntive (facoltative)"; +App::$strings["Save"] = "Salva"; App::$strings["Field definition not found"] = "Impossibile trovare la definizione del campo"; App::$strings["Edit Profile Field"] = "Modifica campo del profilo"; App::$strings["Profile Fields"] = "Campi del profilo"; @@ -642,73 +247,145 @@ App::$strings["(In addition to basic fields)"] = "(In aggiunta ai campi di base) App::$strings["All available fields"] = "Tutti i campi disponibili"; App::$strings["Custom Fields"] = "Campi personalizzati"; App::$strings["Create Custom Field"] = "Aggiungi campo personalizzato"; -App::$strings["Blocked"] = "Bloccati"; -App::$strings["Ignored"] = "Ignorati"; -App::$strings["Hidden"] = "Nascosti"; -App::$strings["Archived"] = "Archiviati"; -App::$strings["New"] = "Novità"; -App::$strings["All"] = "Tutti"; -App::$strings["New Connections"] = "Nuovi contatti"; -App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; -App::$strings["All Connections"] = "Tutti i contatti"; -App::$strings["Show all connections"] = "Mostra tutti i contatti"; -App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; -App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; -App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; -App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; -App::$strings["Pending approval"] = "In attesa di conferma"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Modifica il contatto"; -App::$strings["Delete connection"] = "Elimina il contatto"; -App::$strings["Channel address"] = "Indirizzo del canale"; -App::$strings["Network"] = "Network"; -App::$strings["Connected"] = "In contatto"; -App::$strings["Approve connection"] = "Approva questo contatto"; -App::$strings["Ignore connection"] = "Ignora il contatto"; -App::$strings["Ignore"] = "Ignora"; -App::$strings["Recent activity"] = "Attività recenti"; -App::$strings["Connections"] = "Contatti"; -App::$strings["Search"] = "Cerca"; -App::$strings["Search your connections"] = "Cerca tra i contatti"; -App::$strings["Connections search"] = "Ricerca tra i contatti"; -App::$strings["Find"] = "Cerca"; -App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; -App::$strings["Cover Photos"] = "Copertine del canale"; -App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; -App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; -App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; -App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; -App::$strings["female"] = "femmina"; -App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["male"] = "maschio"; -App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; -App::$strings["cover photo"] = "Copertina del canale"; -App::$strings["Photo not available."] = "Foto non disponibile."; -App::$strings["Upload File:"] = "Carica un file:"; -App::$strings["Select a profile:"] = "Seleziona un profilo:"; -App::$strings["Upload Cover Photo"] = "Carica una copertina"; -App::$strings["skip this step"] = "salta questo passaggio"; -App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; -App::$strings["Crop Image"] = "Ritaglia immagine"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; -App::$strings["Done Editing"] = "Modifica terminata"; -App::$strings["Invalid message"] = "Messaggio non valido"; -App::$strings["no results"] = "nessun risultato"; -App::$strings["channel sync processed"] = "sincronizzazione del canale effettuata"; -App::$strings["queued"] = "in coda"; -App::$strings["posted"] = "inviato"; -App::$strings["accepted for delivery"] = "accettato per la spedizione"; -App::$strings["updated"] = "aggiornato"; -App::$strings["update ignored"] = "aggiornamento ignorato"; -App::$strings["permission denied"] = "permessi non sufficienti"; -App::$strings["recipient not found"] = "Destinatario non trovato"; -App::$strings["mail recalled"] = "messaggio richiamato dal mittente"; -App::$strings["duplicate mail received"] = "ricevuto messaggio duplicato"; -App::$strings["mail delivered"] = "messaggio recapitato"; -App::$strings["Delivery report for %1\$s"] = "Rapporto di consegna - %1\$s"; -App::$strings["Options"] = "Opzioni"; -App::$strings["Redeliver"] = "Reinvia"; +App::$strings["Queue Statistics"] = "Statistiche della coda"; +App::$strings["Total Entries"] = "Totale"; +App::$strings["Priority"] = "Priorità"; +App::$strings["Destination URL"] = "URL di destinazione"; +App::$strings["Mark hub permanently offline"] = "Questo hub è definitivamente offline"; +App::$strings["Empty queue for this hub"] = "Svuota la coda per questo hub"; +App::$strings["Last known contact"] = "Ultimo scambio dati"; +App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "Il codice HTML degli oggetti multimediali incorporati nei post è consentito. Questo tipo di impostazione è insicura."; +App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "L'impostazione consigliata è di permettere HTML non filtrato solo dai seguenti siti:"; +App::$strings["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/
    "; +App::$strings["All other embedded content will be filtered, unless embedded content from that site is explicitly blocked."] = "Tutti gli altri contenuti incorporati saranno filtrati a meno che il contenuto incorporato di quel sito non sia esplicitamente bloccato."; +App::$strings["Security"] = "Sicurezza"; +App::$strings["Block public"] = "Blocca pagine pubbliche"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso."; +App::$strings["Set \"Transport Security\" HTTP header"] = "Imposta il \"Transport Security\" HTTP header"; +App::$strings["Set \"Content Security Policy\" HTTP header"] = "Imposta il \"Content Security Policy\" HTTP header"; +App::$strings["Allowed email domains"] = "Domini email consentiti"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione. Sono accettati caratteri jolly. Lascia vuoto per accettare qualsiasi dominio email"; +App::$strings["Not allowed email domains"] = "Domini email non consentiti"; +App::$strings["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."] = "Elenco separato da virgola dei domini permessi come indirizzi email in fase di registrazione a questo sito. Sono accettati caratteri jolly. Lascalo vuoto per accettare qualsiasi dominio."; +App::$strings["Allow communications only from these sites"] = "Permetti la comunicazione solo da questi siti"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sito per riga. Lascia vuoto per permettere la comunicazione con tutti"; +App::$strings["Block communications from these sites"] = "Blocca la comunicazione da questi siti"; +App::$strings["Allow communications only from these channels"] = "Permetti la comunicazione solo da questi canali"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canale (hash) per riga. Lascia vuoto per comunicare con tutti i canali"; +App::$strings["Block communications from these channels"] = "Blocca la comunicazione da questi canali"; +App::$strings["Only allow embeds from secure (SSL) websites and links."] = "Permetti di incorporare contenuti solamente da siti sicuri (SSL)."; +App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "Incorpora i contenuti HTML non filtrati solo da questi domini"; +App::$strings["One site per line. By default embedded content is filtered."] = "Un sito per riga. Normalmente i contenuti incorporati sono filtrati."; +App::$strings["Block embedded HTML from these domains"] = "Blocca i contenuti incorporati HTML da questi domini"; +App::$strings["Site settings updated."] = "Impostazioni del sito salvate correttamente."; +App::$strings["Default"] = "Predefinito"; +App::$strings["mobile"] = "mobile"; +App::$strings["experimental"] = "sperimentale"; +App::$strings["unsupported"] = "non supportato"; +App::$strings["No"] = "No"; +App::$strings["Yes - with approval"] = "Sì - con approvazione"; +App::$strings["Yes"] = "Sì"; +App::$strings["My site is not a public server"] = "Non è un server pubblico"; +App::$strings["My site has paid access only"] = "È un servizio a pagamento"; +App::$strings["My site has free access only"] = "È un servizio gratuito"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "È un servizio gratuito con opzioni aggiuntive a pagamento"; +App::$strings["Basic/Minimal Social Networking"] = "Social network minimale"; +App::$strings["Standard Configuration (default)"] = "Configurazione standard (predefinita)"; +App::$strings["Professional"] = "Professionale"; +App::$strings["Beginner/Basic"] = "Principiante"; +App::$strings["Novice - not skilled but willing to learn"] = "Novizio - disposto a imparare"; +App::$strings["Intermediate - somewhat comfortable"] = "Intermedio - con alcune conoscenze tecniche"; +App::$strings["Advanced - very comfortable"] = "Avanzato - a mio agio con gli aspetti tecnici"; +App::$strings["Expert - I can write computer code"] = "Esperto - posso scrivere codice"; +App::$strings["Wizard - I probably know more than you do"] = "Genio - probabilmente ne so più di te"; +App::$strings["Site"] = "Sito"; +App::$strings["File upload"] = "Caricamento file"; +App::$strings["Policies"] = "Politiche"; +App::$strings["Advanced"] = "Avanzate"; +App::$strings["Site name"] = "Nome del sito"; +App::$strings["Server Configuration/Role"] = "Configurazione del server"; +App::$strings["Site default technical skill level"] = "Livello tecnico predefinito per gli utenti del sito"; +App::$strings["Used to provide a member experience matched to technical comfort level"] = "Utile a fornire agli utenti un livello tecnico del sito che rispetti le loro conoscenze"; +App::$strings["Lock the technical skill level setting"] = "Il livello tecnico non potrà essere modificato"; +App::$strings["Members can set their own technical comfort level by default"] = "Gli utenti possono scegliere il livello tecnico preferito"; +App::$strings["Banner/Logo"] = "Banner o logo"; +App::$strings["Administrator Information"] = "Informazioni sull'amministratore"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Informazioni per contattare gli amministratori del sito. Saranno mostrate sulla pagina di informazioni. È consentito il BBcode"; +App::$strings["System language"] = "Lingua di sistema"; +App::$strings["System theme"] = "Tema di sistema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Il tema di sistema può essere cambiato dai profili dei singoli utenti - Cambia le impostazioni del tema"; +App::$strings["Mobile system theme"] = "Tema di sistema per dispositivi mobili"; +App::$strings["Theme for mobile devices"] = "Tema per i dispositivi mobili"; +App::$strings["Allow Feeds as Connections"] = "Permetti di aggiungere i feed come contatti"; +App::$strings["(Heavy system resource usage)"] = "(Uso intenso delle risorse di sistema!)"; +App::$strings["Maximum image size"] = "Dimensione massima immagini"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Massima dimensione in byte delle immagini caricate. Il default è 0, cioè nessun limite."; +App::$strings["Does this site allow new member registration?"] = "Questo sito permette a nuovi utenti di registrarsi?"; +App::$strings["Invitation only"] = "Solo con invito"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Come descriveresti il tipo di servizio proposto da questo server?"; +App::$strings["Register text"] = "Testo di registrazione"; +App::$strings["Will be displayed prominently on the registration page."] = "Sarà mostrato ben visibile nella pagina di registrazione."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "esempio: 'public' per mostrare i contenuti pubblici degli utenti, 'page/sys/home' per mostrare la pagina web definita come 'home' oppure 'include:home.html' per mostrare il contenuto di un file."; +App::$strings["Preserve site homepage URL"] = "Conserva l'URL della homepage"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la homepage del sito in un frame all'indirizzo attuale invece di un redirect."; +App::$strings["Accounts abandoned after x days"] = "Account abbandonati dopo X giorni"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Eviterà di sprecare risorse di sistema controllando se i siti esterni hanno account abbandonati. Immettere 0 per non imporre nessun limite di tempo."; +App::$strings["Allowed friend domains"] = "Domini fidati e consentiti"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Elenco separato da virgola dei domini che possono stabilire amicizie con questo sito. Sono accettati caratteri jolly. Lascia vuoto per accettare connessioni da qualsiasi dominio."; +App::$strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; +App::$strings["Force publish"] = "Forza la publicazione del profilo"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server tutti i profili registrati su questo sito."; +App::$strings["Import Public Streams"] = "Suggerisci contenuti pubblici della rete Hubzilla"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Suggerisci e visualizza i post pubblici presenti su altri siti Hubzilla. Attenzione: i contenuti potrebbero essere inappropriati perché non sottoposti a moderazione."; +App::$strings["Login on Homepage"] = "Login sulla homepage"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti."; +App::$strings["Enable context help"] = "Abilita la guida contestuale"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Quando è premuto, il bottone della guida mostra quella relativa alla pagina corrente"; +App::$strings["Directory Server URL"] = "URL del directory server"; +App::$strings["Default directory server"] = "Directory server predefinito"; +App::$strings["Proxy user"] = "Utente proxy"; +App::$strings["Proxy URL"] = "URL proxy"; +App::$strings["Network timeout"] = "Timeout rete"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)."; +App::$strings["Delivery interval"] = "Recapito ritardato"; +App::$strings["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."] = "Numero di secondi di cui può essere ritardato il recapito, per ridurre il carico di sistema. Consigliati: 4-5 secondi per hosting condiviso, 2-3 per i VPS, 0-1 per grandi server dedicati."; +App::$strings["Deliveries per process"] = "Tentativi di recapito per processo"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero di tentativi di recapito da tentare per ciascun processo. Può essere modificato per migliorare le performance di sistema. Raccomandato: 1-5"; +App::$strings["Poll interval"] = "Intervallo di polling"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Numero di secondi di cui può essere ritardato il polling in background, per ridurre il carico del sistema. Se 0, verrà usato lo stesso valore del 'Recapito ritardato'."; +App::$strings["Maximum Load Average"] = "Carico massimo medio"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carico di sistema massimo perché i processi di recapito e polling siano ritardati - il valore predefinito è 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Scadenza dei contenuti importati da altri siti (in giorni)"; +App::$strings["0 for no expiration of imported content"] = "0 per non avere scadenza"; +App::$strings["Theme settings updated."] = "Le impostazioni del tema sono state aggiornate."; +App::$strings["No themes found."] = "Nessun tema trovato."; +App::$strings["Screenshot"] = "Istantanea dello schermo"; +App::$strings["Themes"] = "Temi"; +App::$strings["[Experimental]"] = "[Sperimentale]"; +App::$strings["[Unsupported]"] = "[Non supportato]"; +App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +App::$strings["Nothing to import."] = "Non c'è niente da importare."; +App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; +App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; +App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; +App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; +App::$strings["Import completed."] = "L'importazione è terminata con successo."; +App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; +App::$strings["Import Channel"] = "Importa un canale"; +App::$strings["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."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; +App::$strings["File to Upload"] = "File da caricare"; +App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; +App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; +App::$strings["Your old login password"] = "La password per il vecchio hub"; +App::$strings["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."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; +App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; App::$strings["Public access denied."] = "Accesso pubblico negato."; App::$strings["%d rating"] = array( 0 => "%d valutazione", @@ -729,6 +406,7 @@ App::$strings["Don't suggest"] = "Non fornire suggerimenti"; App::$strings["Common connections:"] = "Contatti in comune:"; App::$strings["Global Directory"] = "Elenchi pubblici globali"; App::$strings["Local Directory"] = "Elenco canali su questo hub"; +App::$strings["Find"] = "Cerca"; App::$strings["Finding:"] = "Ricerca:"; App::$strings["Channel Suggestions"] = "Canali suggeriti"; App::$strings["next page"] = "pagina successiva"; @@ -739,8 +417,73 @@ App::$strings["Reverse Alphabetic"] = "Alfabetico inverso"; App::$strings["Newest to Oldest"] = "Prima i più recenti"; App::$strings["Oldest to Newest"] = "Prima i più vecchi"; App::$strings["No entries (some entries may be hidden)."] = "Nessun risultato (qualche elemento potrebbe essere nascosto)."; -App::$strings["This site is not a directory server"] = "Questo non è un directory server"; -App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; +App::$strings["Bookmark added"] = "Segnalibro aggiunto"; +App::$strings["My Bookmarks"] = "I miei segnalibri"; +App::$strings["My Connections Bookmarks"] = "I segnalibri dei miei contatti"; +App::$strings["Edit post"] = "Modifica post"; +App::$strings["No ratings"] = "Nessuna valutazione"; +App::$strings["Ratings"] = "Valutazioni"; +App::$strings["Rating: "] = "Valutazione:"; +App::$strings["Website: "] = "Sito web:"; +App::$strings["Description: "] = "Descrizione:"; +App::$strings["Photos"] = "Foto"; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; +App::$strings["Save to Folder:"] = "Salva nella cartella:"; +App::$strings["- select -"] = "- scegli -"; +App::$strings["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["New"] = "Novità"; +App::$strings["All"] = "Tutti"; +App::$strings["New Connections"] = "Nuovi contatti"; +App::$strings["Show pending (new) connections"] = "Richieste di contatto in attesa"; +App::$strings["All Connections"] = "Tutti i contatti"; +App::$strings["Show all connections"] = "Mostra tutti i contatti"; +App::$strings["Only show blocked connections"] = "Mostra solo i contatti bloccati"; +App::$strings["Only show ignored connections"] = "Mostra solo i contatti ignorati"; +App::$strings["Only show archived connections"] = "Mostra solo i contatti archiviati"; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Modifica il contatto"; +App::$strings["Delete connection"] = "Elimina il contatto"; +App::$strings["Channel address"] = "Indirizzo del canale"; +App::$strings["Network"] = "Network"; +App::$strings["Status"] = "Stato"; +App::$strings["Connected"] = "In contatto"; +App::$strings["Approve connection"] = "Approva questo contatto"; +App::$strings["Ignore connection"] = "Ignora il contatto"; +App::$strings["Ignore"] = "Ignora"; +App::$strings["Recent activity"] = "Attività recenti"; +App::$strings["Connections"] = "Contatti"; +App::$strings["Search"] = "Cerca"; +App::$strings["Search your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Cover Photos"] = "Copertine del canale"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +App::$strings["Unable to process image"] = "Impossibile elaborare l'immagine"; +App::$strings["Image upload failed."] = "Il caricamento dell'immagine è fallito."; +App::$strings["Unable to process image."] = "Impossibile elaborare l'immagine."; +App::$strings["female"] = "femmina"; +App::$strings["%1\$s updated her %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["male"] = "maschio"; +App::$strings["%1\$s updated his %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["%1\$s updated their %2\$s"] = "Aggiornamento: %2\$s di %1\$s"; +App::$strings["cover photo"] = "Copertina del canale"; +App::$strings["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Upload Cover Photo"] = "Carica una copertina"; +App::$strings["or"] = "o"; +App::$strings["skip this step"] = "salta questo passaggio"; +App::$strings["select a photo from your photo albums"] = "seleziona una foto dai tuoi album"; +App::$strings["Crop Image"] = "Ritaglia immagine"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Ritaglia l'immagine per migliorarne la visualizzazione."; +App::$strings["Done Editing"] = "Modifica terminata"; App::$strings["Item not found"] = "Elemento non trovato"; App::$strings["Block Name"] = "Nome del block"; App::$strings["Insert web link"] = "Inserisci un indirizzo web"; @@ -793,16 +536,37 @@ App::$strings["Categories (optional, comma separated list)"] = "Categorie (facol App::$strings["Version ID"] = "ID versione"; App::$strings["Price of app"] = "Prezzo app"; App::$strings["Location (URL) to purchase app"] = "Indirizzo (URL) per acquistare la app"; -App::$strings["Edit post"] = "Modifica post"; +App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +App::$strings["Messages"] = "Messaggi"; +App::$strings["Message recalled."] = "Messaggio revocato."; +App::$strings["Conversation removed."] = "Conversazione rimossa."; +App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +App::$strings["Send Private Message"] = "Invia un messaggio privato"; +App::$strings["To:"] = "A:"; +App::$strings["Subject:"] = "Oggetto:"; +App::$strings["Your message:"] = "Il tuo messaggio:"; +App::$strings["Attach file"] = "Allega file"; +App::$strings["Send"] = "Invia"; +App::$strings["Set expiration date"] = "Data di scadenza"; +App::$strings["Encrypt text"] = "Cifratura del messaggio"; +App::$strings["Delete message"] = "Elimina il messaggio"; +App::$strings["Delivery report"] = "Rapporto di trasmissione"; +App::$strings["Recall message"] = "Revoca il messaggio"; +App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; +App::$strings["Delete Conversation"] = "Elimina la conversazione"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; +App::$strings["Send Reply"] = "Invia la risposta"; +App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; App::$strings["Item not available."] = "Elemento non disponibile."; -App::$strings["Layout updated."] = "Layout aggiornato."; -App::$strings["Feature disabled."] = "Funzionalità disattivata."; -App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; -App::$strings["Layout not found."] = "Layout non trovato."; -App::$strings["Module Name:"] = "Nome del modulo:"; -App::$strings["Layout Help"] = "Guida al layout"; App::$strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; App::$strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["Documentation Search"] = "Ricerca nella guida"; +App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; App::$strings["\$Projectname"] = "\$Projectname"; App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; App::$strings["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; @@ -819,8 +583,16 @@ App::$strings["Copy/paste this URL to link file from a web page"] = "Copia/incol App::$strings["Share this file"] = "Condividi questo file"; App::$strings["Show URL to this file"] = "Mostra l'URL del file"; App::$strings["Notify your contacts about this file"] = "Notifica ai contatti che hai caricato questo file"; -App::$strings["network"] = "rete"; -App::$strings["RSS"] = "RSS"; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["Continue"] = "Continua"; +App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; +App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; +App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; App::$strings["Privacy group created."] = "Gruppo di canali creato."; App::$strings["Could not create privacy group."] = "Impossibile creare il gruppo di canali."; App::$strings["Privacy group not found."] = "Gruppo di canali non trovato."; @@ -834,90 +606,31 @@ App::$strings["Privacy group editor"] = "Editor dei gruppi di canali"; App::$strings["Members"] = "Membri"; App::$strings["All Connected Channels"] = "Tutti i canali connessi"; App::$strings["Click on a channel to add or remove."] = "Clicca su un canale per aggiungerlo o rimuoverlo."; -App::$strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; -App::$strings["Profile Photos"] = "Foto del profilo"; -App::$strings["Album not found."] = "Album non trovato."; -App::$strings["Delete Album"] = "Elimina album"; -App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Esistono più archivi con il nome di quest'album, ma dentro cartelle diverse. Per favore effettua la rimozione andando nell'Archivio file "; -App::$strings["Delete Photo"] = "Elimina foto"; -App::$strings["No photos selected"] = "Nessuna foto selezionata"; -App::$strings["Access to this item is restricted."] = "Questo elemento non è visibile a tutti."; -App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "Hai usato %1$.2f Mb dei %2$.2f Mb di spazio disponibile."; -App::$strings["%1$.2f MB photo storage used."] = "Hai usato %1$.2f Mb del tuo spazio disponibile."; -App::$strings["Upload Photos"] = "Carica foto"; -App::$strings["Enter an album name"] = "Scegli il nome dell'album"; -App::$strings["or select an existing album (doubleclick)"] = "o seleziona un album esistente (doppio click)"; -App::$strings["Create a status post for this upload"] = "Pubblica sulla bacheca"; -App::$strings["Caption (optional):"] = "Titolo (facoltativo):"; -App::$strings["Description (optional):"] = "Descrizione (facoltativa):"; -App::$strings["Album name could not be decoded"] = "Non è stato possibile leggere il nome dell'album"; -App::$strings["Contact Photos"] = "Foto dei contatti"; -App::$strings["Show Newest First"] = "Prima i più recenti"; -App::$strings["Show Oldest First"] = "Prima i più vecchi"; -App::$strings["View Photo"] = "Guarda la foto"; -App::$strings["Edit Album"] = "Modifica album"; -App::$strings["Permission denied. Access to this item may be restricted."] = "Permesso negato. L'accesso a questo elemento può essere stato limitato."; -App::$strings["Photo not available"] = "Foto non disponibile"; -App::$strings["Use as profile photo"] = "Usa come foto del profilo"; -App::$strings["Use as cover photo"] = "Usa come copertina del canale"; -App::$strings["Private Photo"] = "Foto privata"; -App::$strings["Previous"] = "Precendente"; -App::$strings["View Full Size"] = "Vedi nelle dimensioni originali"; -App::$strings["Edit photo"] = "Modifica la foto"; -App::$strings["Rotate CW (right)"] = "Ruota (senso orario)"; -App::$strings["Rotate CCW (left)"] = "Ruota (senso antiorario)"; -App::$strings["Enter a new album name"] = "Inserisci il nome del nuovo album"; -App::$strings["or select an existing one (doubleclick)"] = "o seleziona uno esistente (doppio click)"; -App::$strings["Caption"] = "Didascalia"; -App::$strings["Add a Tag"] = "Aggiungi tag"; -App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @bob, @Barbara_Jensen, @jim@example.com"; -App::$strings["Flag as adult in album view"] = "Marca come 'per adulti'"; -App::$strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; -App::$strings["I don't like this (toggle)"] = "Attiva/disattiva Non mi piace"; +App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; +App::$strings["Import selected"] = "Importa i selezionati"; +App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; +App::$strings["Export selected"] = "Esporta i selezionati"; +App::$strings["Webpages"] = "Pagine web"; App::$strings["Share"] = "Condividi"; -App::$strings["Please wait"] = "Attendere"; -App::$strings["This is you"] = "Questo sei tu"; -App::$strings["Comment"] = "Commento"; +App::$strings["View"] = "Guarda"; App::$strings["Preview"] = "Anteprima"; -App::$strings["__ctx:title__ Likes"] = "Mi piace"; -App::$strings["__ctx:title__ Dislikes"] = "Non mi piace"; -App::$strings["__ctx:title__ Agree"] = "D'accordo"; -App::$strings["__ctx:title__ Disagree"] = "Non d'accordo"; -App::$strings["__ctx:title__ Abstain"] = "Astenuti"; -App::$strings["__ctx:title__ Attending"] = "Partecipano"; -App::$strings["__ctx:title__ Not attending"] = "Non partecipano"; -App::$strings["__ctx:title__ Might attend"] = "Forse partecipano"; -App::$strings["View all"] = "Vedi tutto"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); -App::$strings["Photo Tools"] = "Gestione foto"; -App::$strings["In This Photo:"] = "In questa foto:"; -App::$strings["Map"] = "Mappa"; -App::$strings["__ctx:noun__ Likes"] = "Mi piace"; -App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -App::$strings["Close"] = "Chiudi"; -App::$strings["View Album"] = "Guarda l'album"; -App::$strings["Recent Photos"] = "Foto recenti"; +App::$strings["Actions"] = "Azioni"; +App::$strings["Page Link"] = "Link alla pagina"; +App::$strings["Page Title"] = "Titolo della pagina"; +App::$strings["Invalid file type."] = "Tipo di file non valido."; +App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; +App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; +App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; +App::$strings["Import complete."] = "Importazione completata."; App::$strings["webpage"] = "pagina web"; App::$strings["block"] = "block"; App::$strings["layout"] = "layout"; App::$strings["menu"] = "menu"; App::$strings["%s element installed"] = "%s elemento installato"; App::$strings["%s element installation failed"] = "Elementi con installazione fallita: %s"; -App::$strings["Nothing to import."] = "Non c'è niente da importare."; -App::$strings["Unable to download data from old server"] = "Impossibile importare i dati dal vecchio hub"; -App::$strings["Imported file is empty."] = "Il file da importare è vuoto."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Attenzione: le versioni di database differiscono di %1\$d aggiornamenti."; App::$strings["Import completed"] = "Importazione completata"; App::$strings["Import Items"] = "Importa i contenuti"; App::$strings["Use this form to import existing posts and content from an export file."] = "Usa questa funzionalità per importare i vecchi contenuti e i post da un file esportato in precedenza."; -App::$strings["File to Upload"] = "File da caricare"; App::$strings["Total invitation limit exceeded."] = "Hai superato il numero massimo di inviti."; App::$strings["%s : Not a valid email address."] = "%s: non è un indirizzo email valido."; App::$strings["Please join us on \$Projectname"] = "Unisciti a noi su \$Projectname"; @@ -930,7 +643,6 @@ App::$strings["%d message sent."] = array( App::$strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; App::$strings["Send invitations"] = "Spedisci inviti"; App::$strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; -App::$strings["Your message:"] = "Il tuo messaggio:"; App::$strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; App::$strings["You will need to supply this invitation code:"] = "Dovrai fornire questo codice invito:"; App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; @@ -949,7 +661,13 @@ App::$strings["Sync Now"] = "Sincronizza ora"; App::$strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Quando possibile, riduci il numero di cloni del tuo canale effettuando il login sul relativo hub e rimuovendoli."; App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Usa questo modulo per abbandonare un canale su un hub che non è più funzionante."; -App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["No such group"] = "Impossibile trovare il gruppo di canali"; +App::$strings["No such channel"] = "Canale sconosciuto"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Cerca risultati con:"; +App::$strings["Privacy group is empty"] = "Il gruppo di canali è vuoto"; +App::$strings["Privacy group: "] = "Gruppo di canali:"; +App::$strings["Invalid connection."] = "Contatto non valido."; App::$strings["Like/Dislike"] = "Mi piace/Non mi piace"; App::$strings["This action is restricted to members."] = "Questa funzionalità è riservata agli iscritti."; App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Per continuare devi accedere con il tuo identificativo \$Projectname o registrarti come nuovo utente \$Projectname."; @@ -986,6 +704,7 @@ App::$strings["Unable to create element."] = "Impossibile creare l'elemento."; App::$strings["Unable to update menu element."] = "Non è possibile aggiornare l'elemento del menù."; App::$strings["Unable to add menu element."] = "Impossibile aggiungere l'elemento al menù."; App::$strings["Menu Item Permissions"] = "Permessi del menu"; +App::$strings["(click to open/close)"] = "(clicca per aprire/chiudere)"; App::$strings["Link Name"] = "Nome link"; App::$strings["Link or Submenu Target"] = "Azione del link o del sottomenu"; App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Inserisci l'indirizzo del link o scegli il nome di un sottomenu"; @@ -1010,14 +729,11 @@ App::$strings["Menu item deleted."] = "L'elemento del menù è stato eliminato." App::$strings["Menu item could not be deleted."] = "L'elemento del menù non può essere eliminato."; App::$strings["Edit Menu Element"] = "Modifica l'elemento del menù"; App::$strings["Link text"] = "Testo del link"; -App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; -App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; -App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; -App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; -App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; -App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; +App::$strings["Rating"] = "Valutazioni"; +App::$strings["Website:"] = "Sito web:"; +App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; +App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; +App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; App::$strings["No valid account found."] = "Nessun account valido trovato."; App::$strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; App::$strings["Site Member (%s)"] = "Utente del sito (%s)"; @@ -1111,20 +827,10 @@ App::$strings["Profile Match"] = "Profili corrispondenti"; App::$strings["No keywords to match. Please add keywords to your default profile."] = "Non hai scritto parole chiave. Aggiungi parole chiave al tuo profilo predefinito per comparire nelle ricerche."; App::$strings["is interested in:"] = "interessi personali:"; App::$strings["No matches"] = "Nessun risultato"; -App::$strings["Import Webpage Elements"] = "Importa gli elementi della pagina web"; -App::$strings["Import selected"] = "Importa i selezionati"; -App::$strings["Export Webpage Elements"] = "Esporta gli elementi della pagina web"; -App::$strings["Export selected"] = "Esporta i selezionati"; -App::$strings["Webpages"] = "Pagine web"; -App::$strings["View"] = "Guarda"; -App::$strings["Actions"] = "Azioni"; -App::$strings["Page Link"] = "Link alla pagina"; -App::$strings["Page Title"] = "Titolo della pagina"; -App::$strings["Invalid file type."] = "Tipo di file non valido."; -App::$strings["Error opening zip file"] = "Errore nell'apertura del file zip"; -App::$strings["Invalid folder path."] = "La cartella indicata non è valida."; -App::$strings["No webpage elements detected."] = "Nella pagina web non sono presenti elementi."; -App::$strings["Import complete."] = "Importazione completata."; +App::$strings["Authorize application connection"] = "Autorizza la app"; +App::$strings["Return to your app and insert this Security Code:"] = "Ritorna alla tua app e inserisci questo Security Code:"; +App::$strings["Please login to continue."] = "Accedi al sito per continuare."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?"; App::$strings["Calendar entries imported."] = "Le voci del calendario sono state importate."; App::$strings["No calendar entries found."] = "Non sono state trovate voci del calendario."; App::$strings["Event can not end before it has started."] = "Un evento non può terminare prima del suo inizio."; @@ -1155,6 +861,8 @@ App::$strings["Link to Source"] = "Link al sito d'origine"; App::$strings["calendar"] = "calendario"; App::$strings["Edit Event"] = "Modifica l'evento"; App::$strings["Create Event"] = "Crea un evento"; +App::$strings["Previous"] = "Precendente"; +App::$strings["Next"] = "Successivo"; App::$strings["Export"] = "Esporta"; App::$strings["Month"] = "Mese"; App::$strings["Week"] = "Settimana"; @@ -1162,21 +870,14 @@ App::$strings["Day"] = "Giorno"; App::$strings["Today"] = "Oggi"; App::$strings["Event removed"] = "Evento eliminato"; App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; -App::$strings["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; -App::$strings["No channel. Import failed."] = "Nessun canale. Import fallito."; -App::$strings["Import completed."] = "L'importazione è terminata con successo."; -App::$strings["You must be logged in to use this feature."] = "Per questa funzionalità devi aver effettuato l'accesso."; -App::$strings["Import Channel"] = "Importa un canale"; -App::$strings["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."] = "Usa questo modulo per importare un tuo canale da un altro hub. Puoi ottenere i dati identificativi del canale direttamente dall'altro hub oppure tramite un file esportato in precedenza."; -App::$strings["Or provide the old server/hub details"] = "Oppure fornisci i dettagli del vecchio hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Il tuo vecchio identificativo (per esempio pippo@esempio.com)"; -App::$strings["Your old login email address"] = "L'email che usavi per accedere sul vecchio hub"; -App::$strings["Your old login password"] = "La password per il vecchio hub"; -App::$strings["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."] = "Scegli se vuoi spostare il tuo indirizzo primario su questo hub, oppure se preferisci che quello vecchio resti tale. Potrai pubblicare da entrambi i hub, ma solamente uno sarà indicato come la posizione su cui risiedono i tuoi file, foto, ecc."; -App::$strings["Make this hub my primary location"] = "Rendi questo hub il mio indirizzo primario"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importa i contenuti pubblicati, se possibile (sperimentale)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Questa funzione potrebbe impiegare molto tempo a terminare. Per favore lanciala *una volta sola* e resta su questa pagina finché non avrà finito."; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +App::$strings["Executable content type not permitted to this channel."] = "I contenuti eseguibili non sono permessi su questo canale."; +App::$strings["Duplicate post suppressed."] = "I post duplicati sono scartati."; +App::$strings["System error. Post not saved."] = "Errore di sistema. Post non salvato."; +App::$strings["Unable to obtain post information from database."] = "Impossibile caricare il post dal database."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Hai raggiunto il limite massimo di %1$.0f post sulla pagina principale."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Hai raggiunto il limite massimo di %1$.0f pagine web."; App::$strings["Create Channel"] = "Crea un canale"; App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canale è la tua identità su questa rete. Può rappresentare una persona, un blog o un forum, per esempio. Il tuo canale può essere in contatto con altri canali per condividere contenuti con permessi anche molto dettagliati."; App::$strings["or import an existing channel from another location."] = "oppure importa un canale esistente da un altro server/hub."; @@ -1195,6 +896,91 @@ App::$strings["Poke, prod or do other things to somebody"] = "Manda un poke o al App::$strings["Recipient"] = "Destinatario"; App::$strings["Choose what you wish to do to recipient"] = "Scegli cosa vuoi inviare al destinatario"; App::$strings["Make this post private"] = "Rendi privato questo post"; +App::$strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; +App::$strings["Could not connect to database."] = " Impossibile connettersi al database."; +App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Non è possibile raggiungere l'indirizzo del sito specificato. Potrebbe essere un problema di SSL o DNS."; +App::$strings["Could not create table."] = "Impossibile creare le tabelle."; +App::$strings["Your site database has been installed."] = "Il database del sito è stato installato."; +App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "Potresti dover importare il file 'install/schema_xxx.sql' manualmente usando un client per collegarti al db."; +App::$strings["Please see the file \"install/INSTALL.txt\"."] = "Leggi il file 'install/INSTALL.txt'."; +App::$strings["System check"] = "Verifica del sistema"; +App::$strings["Check again"] = "Verifica di nuovo"; +App::$strings["Database connection"] = "Connessione al database"; +App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "Per poter installare \$Projectname è necessario fornire i parametri di connessione al tuo database."; +App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Contatta il tuo fornitore di hosting o l'amministratore del sito se hai domande su queste impostazioni."; +App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Il database deve già esistere. Se non esiste, crealo prima di continuare."; +App::$strings["Database Server Name"] = "Server del database"; +App::$strings["Default is 127.0.0.1"] = "Il valore predefinito è 127.0.0.1"; +App::$strings["Database Port"] = "Port del database"; +App::$strings["Communication port number - use 0 for default"] = "Scrivi 0 per usare il valore standard"; +App::$strings["Database Login Name"] = "Utente database"; +App::$strings["Database Login Password"] = "Password database"; +App::$strings["Database Name"] = "Nome database"; +App::$strings["Database Type"] = "Tipo database"; +App::$strings["Site administrator email address"] = "Indirizzo email dell'amministratore del hub"; +App::$strings["Your account email address must match this in order to use the web admin panel."] = "Il tuo indirizzo email deve corrispondere a questo per poter usare il pannello di amministrazione di Hubzilla."; +App::$strings["Website URL"] = "URL completo del sito"; +App::$strings["Please use SSL (https) URL if available."] = "Se disponibile, usa l'indirizzo SSL (https)."; +App::$strings["Please select a default timezone for your website"] = "Seleziona il fuso orario predefinito per il tuo hub"; +App::$strings["Site settings"] = "Impostazioni del hub"; +App::$strings["PHP version 5.5 or greater is required."] = "E' necessario PHP versione 5.5 o superiore."; +App::$strings["PHP version"] = "Versione PHP"; +App::$strings["Could not find a command line version of PHP in the web server PATH."] = "Non è possibile trovare la versione di PHP da riga di comando nel PATH del server web"; +App::$strings["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."] = "Se non hai installata la versione di PHP da riga di comando non potrai attivare il polling in background tramite cron."; +App::$strings["PHP executable path"] = "Path del comando PHP"; +App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "Inserisci il percorso dell'eseguibile PHP. Puoi lasciarlo vuoto per continuare l'installazione."; +App::$strings["Command line PHP"] = "PHP da riga di comando"; +App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "La versione da riga di comando di PHP nel sistema non ha abilitato \"register_argc_argv\"."; +App::$strings["This is required for message delivery to work."] = "E' necessario perché funzioni la consegna dei messaggi."; +App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv"; +App::$strings["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."] = "La dimensione massima di un caricamento è impostata a %s. Il singolo file non può superare %s. Ti è permesso caricare max %d file per volta."; +App::$strings["You can adjust these settings in the servers php.ini."] = "Puoi regolare queste impostazioni sul server in php.ini"; +App::$strings["PHP upload limits"] = "Limiti PHP in upload"; +App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "Errore: la funzione \"openssl_pkey_new\" su questo sistema non è in grado di generare le chiavi di cifratura"; +App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Se stai usando un server windows, guarda \"http://www.php.net/manual/en/openssl.installation.php\"."; +App::$strings["Generate encryption keys"] = "Genera chiavi di cifratura"; +App::$strings["libCurl PHP module"] = "modulo PHP libCurl"; +App::$strings["GD graphics PHP module"] = "modulo PHP GD graphics"; +App::$strings["OpenSSL PHP module"] = "modulo PHP OpenSSL"; +App::$strings["mysqli or postgres PHP module"] = "modulo PHP per mysqli oppure prostgres"; +App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; +App::$strings["xml PHP module"] = "modulo xml PHP"; +App::$strings["Apache mod_rewrite module"] = "modulo Apache mod_rewrite"; +App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "Errore: il modulo mod-rewrite di Apache è richiesto ma non installato"; +App::$strings["proc_open"] = "proc_open"; +App::$strings["Error: proc_open is required but is either not installed or has been disabled in php.ini"] = "Errore: proc_open è richiesto ma non è installato o è disabilitato in php.ini"; +App::$strings["Error: libCURL PHP module required but not installed."] = "Errore: il modulo libCURL di PHP è richiesto ma non installato."; +App::$strings["Error: GD graphics PHP module with JPEG support required but not installed."] = "Errore: Il modulo GD graphics di PHP con supporto a JPEG è richiesto ma non installato."; +App::$strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto ma non installato."; +App::$strings["Error: mysqli or postgres PHP module required but neither are installed."] = "Errore: il modulo PHP per mysqli o postgres è richiesto ma non installato"; +App::$strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto ma non installato."; +App::$strings["Error: xml PHP module required for DAV but not installed."] = "Errore: il modulo xml PHP è richiesto per DAV ma non è installato."; +App::$strings["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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella di Hubzilla ma non è in grado di farlo."; +App::$strings["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."] = "Spesso ciò è dovuto ai permessi di accesso al disco: il web server potrebbe non aver diritto di scrivere il file nella cartella, anche se tu puoi."; +App::$strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder."] = "Alla fine di questa procedura ti sarà dato il testo da salvare in un file di nome .htconfig.php dentro la cartella principale di Hubzilla."; +App::$strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions."] = "Puoi anche saltare questa procedura ed effettuare un'installazione manuale. Guarda il file 'install/INSTALL.txt' per le istruzioni."; +App::$strings[".htconfig.php is writable"] = ".htconfig.php è scrivibile"; +App::$strings["Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Hubzilla usa il sistema Smarty3 per costruire i suoi template grafici. Smarty3 è molto veloce perché compila i template delle pagine direttamente in PHP."; +App::$strings["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."] = "Per poter memorizzare questi template, il server web deve avere i diritti di scrittura sulla directory %s"; +App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Assicurati che il tuo web server sia in esecuzione con un utente che ha diritto di scrittura su quella cartella (ad esempio www-data)."; +App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "Nota bene: come precauzione, dovresti dare i diritti di scrittura solamente su %s e non sui file template (.tpl) che contiene."; +App::$strings["%s is writable"] = "%s è scrivibile"; +App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder"] = "Questo software usa la cartella store per salvare i file caricati. Il server web deve avere i diritti di scrittura sulla cartella perché l'operazione avvenga con successo"; +App::$strings["store is writable"] = "l'archivio è scrivibile"; +App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "Il certificato SSL non può essere validato. Correggi l'errore o disabilita l'accesso https al sito."; +App::$strings["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!"] = "Se abiliti https per il tuo sito o permetti connessioni TCP su port 443 (quella di https), DEVI usare un certificato riconosciuto dai browser internet. NON DEVI usare certificati self-signed generati da te!"; +App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "Questa restrizione è necessaria perché i tuoi post pubblici potrebbero contenere riferimenti a immagini sul tuo server."; +App::$strings["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."] = "Se il tuo certificato non è riconosciuto, gli utenti che ti seguono da altri siti (che avranno certificati validi) riceveranno gravi avvisi di sicurezza dal browser."; +App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "Ciò può creare seri problemi di usabilità (non solo sul tuo sito), quindi dobbiamo insistere su questo punto."; +App::$strings["Providers are available that issue free certificates which are browser-valid."] = "Eventualmente, considera che esistono provider che rilasciano certificati gratuiti riconosciuti dai browser."; +App::$strings["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."] = "Se credi che il certificato sia valido e firmato da una authority, verifica se hai sbagliato a installare i certificati intermedi. Normalmente non sono richiesti dai browser, ma sono necessari per la comunicazione server-to-server."; +App::$strings["SSL certificate validation"] = "Validazione del certificato SSL"; +App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = "In .htaccess la funzionalità url rewrite non funziona. Controlla la configurazione del server. Test:"; +App::$strings["Url rewrite is working"] = "Url rewrite funziona correttamente"; +App::$strings["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."] = "Il file di configurazione del database \".htconfig.php\" non puo' essere scritto. Usa il testo qui di seguito per creare questo file di configurazione nella cartella principale del tuo sito."; +App::$strings["Errors encountered creating database tables."] = "La creazione delle tabelle del database ha generato errori."; +App::$strings["

    What next

    "] = "

    I prossimi passi

    "; +App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Devi creare [manualmente] la pianificazione del polling."; App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; App::$strings["Post successful."] = "Inviato!"; App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; @@ -1205,15 +991,7 @@ App::$strings["Visible To"] = "Visibile a"; App::$strings["This setting requires special processing and editing has been blocked."] = "Questa impostazione è bloccata, richiede criteri di modifica speciali"; App::$strings["Configuration Editor"] = "Editor di configurazione"; 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."] = "Attenzione: alcune delle impostazioni, se cambiate, potrebbero rendere questo canale non funzionante. Lascia questa pagina a meno che tu non sappia con assoluta certezza quali modifiche effettuare."; -App::$strings["Public Hubs"] = "Hub pubblici"; -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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; -App::$strings["Hub URL"] = "URL del hub"; -App::$strings["Access Type"] = "Tipo di accesso"; -App::$strings["Registration Policy"] = "Politica di registrazione"; -App::$strings["Stats"] = "Statistiche"; -App::$strings["Software"] = "Software"; -App::$strings["Ratings"] = "Valutazioni"; -App::$strings["Rate"] = "Valuta"; +App::$strings["Apps"] = "App"; App::$strings["Version %s"] = "Versione %s"; App::$strings["Installed plugins/addons/apps:"] = "App e componenti installati:"; App::$strings["No installed plugins/addons/apps"] = "Nessuna app o componente installato"; @@ -1234,11 +1012,7 @@ App::$strings["Help"] = "Guida"; App::$strings["Comanche page description language help"] = "Guida di Comanche Page Description Language"; App::$strings["Layout Description"] = "Descrizione del layout"; App::$strings["Download PDL file"] = "Scarica il file PDL"; -App::$strings["Rating"] = "Valutazioni"; -App::$strings["Website:"] = "Sito web:"; -App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; -App::$strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; -App::$strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; +App::$strings["Profile Photos"] = "Foto del profilo"; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Forza l'aggiornamento della pagina o cancella la cache del browser se la nuova foto non viene visualizzata immediatamente."; App::$strings["Upload Profile Photo"] = "Carica la foto del profilo"; App::$strings["Permissions denied."] = "Permesso negato."; @@ -1246,35 +1020,22 @@ App::$strings["Import"] = "Importa"; App::$strings["No channel."] = "Nessun canale."; App::$strings["Common connections"] = "Contatti in comune"; App::$strings["No connections in common."] = "Nessun contatto in comune."; -App::$strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -App::$strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -App::$strings["Messages"] = "Messaggi"; -App::$strings["Message recalled."] = "Messaggio revocato."; -App::$strings["Conversation removed."] = "Conversazione rimossa."; -App::$strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -App::$strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -App::$strings["Send Private Message"] = "Invia un messaggio privato"; -App::$strings["To:"] = "A:"; -App::$strings["Subject:"] = "Oggetto:"; -App::$strings["Attach file"] = "Allega file"; -App::$strings["Send"] = "Invia"; -App::$strings["Set expiration date"] = "Data di scadenza"; -App::$strings["Encrypt text"] = "Cifratura del messaggio"; -App::$strings["Delete message"] = "Elimina il messaggio"; -App::$strings["Delivery report"] = "Rapporto di trasmissione"; -App::$strings["Recall message"] = "Revoca il messaggio"; -App::$strings["Message has been recalled."] = "Il messaggio è stato revocato."; -App::$strings["Delete Conversation"] = "Elimina la conversazione"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. Se possibile, prova a rispondere direttamente dalla pagina del profilo del mittente."; -App::$strings["Send Reply"] = "Invia la risposta"; -App::$strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; -App::$strings["No ratings"] = "Nessuna valutazione"; -App::$strings["Rating: "] = "Valutazione:"; -App::$strings["Website: "] = "Sito web:"; -App::$strings["Description: "] = "Descrizione:"; +App::$strings["network"] = "rete"; +App::$strings["RSS"] = "RSS"; +App::$strings["Public Hubs"] = "Hub pubblici"; +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."] = "I siti elencati permettono la registrazione libera sulla rete \$Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero fornire alcune funzionalità o l'intero servizio a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco."; +App::$strings["Hub URL"] = "URL del hub"; +App::$strings["Access Type"] = "Tipo di accesso"; +App::$strings["Registration Policy"] = "Politica di registrazione"; +App::$strings["Stats"] = "Statistiche"; +App::$strings["Software"] = "Software"; +App::$strings["Rate"] = "Valuta"; +App::$strings["Layout updated."] = "Layout aggiornato."; +App::$strings["Feature disabled."] = "Funzionalità disattivata."; +App::$strings["Edit System Page Description"] = "Modifica i layout di sistema"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; App::$strings["Could not access contact record."] = "Non è possibile accedere alle informazioni sul contatto."; App::$strings["Could not locate selected profile."] = "Non riesco a trovare il profilo selezionato."; App::$strings["Connection updated."] = "Contatto aggiornato."; @@ -1306,6 +1067,7 @@ App::$strings["This connection is hidden!"] = "Questa connessione è tra quelle App::$strings["Delete this connection"] = "Elimina questo contatto"; App::$strings["Me"] = "Me"; App::$strings["Family"] = "Famiglia"; +App::$strings["Friends"] = "Amici"; App::$strings["Acquaintances"] = "Conoscenti"; App::$strings["Approve this connection"] = "Approva questo contatto"; App::$strings["Accept connection to allow communication"] = "Entra in contatto per poter comunicare"; @@ -1330,25 +1092,19 @@ App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank App::$strings["Do not import posts with this text"] = "Non importare i post con queste parole chiave"; App::$strings["This information is public!"] = "Questa informazione è pubblica!"; App::$strings["Connection Pending Approval"] = "Contatti in attesa di approvazione"; +App::$strings["inherited"] = "derivato"; App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Seleziona il profilo che vuoi mostrare a %s dopo che ha effettuato l'accesso."; +App::$strings["Their Settings"] = "Permessi concessi a te"; +App::$strings["My Settings"] = "Permessi che concedo"; +App::$strings["Individual Permissions"] = "Permessi individuali"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina non puoi cambiarle."; App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Alcuni permessi derivano dalle impostazioni di privacy del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Le personalizzazioni che effettuerai qui potrebbero non essere effettive a meno che tu non cambi le impostazioni generali."; App::$strings["Last update:"] = "Ultimo aggiornamento:"; -App::$strings["Documentation Search"] = "Ricerca nella guida"; -App::$strings["Help:"] = "Guida:"; -App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; -App::$strings["Continue"] = "Continua"; -App::$strings["Premium Channel Setup"] = "Canale premium - configurazione"; -App::$strings["Enable premium channel connection restrictions"] = "Abilita le restrizioni del canale premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Scrivi le condizioni d'uso e le restrizioni di questo canale, come per esempio le linee guida, il sistema di pagamento, ecc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Prima di connetterti a questo canale è necessario che tu accetti le seguenti condizioni:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Il testo seguente comparirà a chi vorrà seguire il canale:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Continuando dichiaro di aver seguito tutte le indicazioni e le istruzioni fornite in questa pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Il gestore del canale non ha fornito istruzioni specifiche)"; -App::$strings["Restricted or Premium Channel"] = "Canale premium - con restrizioni"; App::$strings["Select a bookmark folder"] = "Scegli una cartella di segnalibri"; App::$strings["Save Bookmark"] = "Salva segnalibro"; App::$strings["URL of bookmark"] = "URL del segnalibro"; App::$strings["Or enter new bookmark folder name"] = "O inserisci il nome di una nuova cartella di segnalibri"; +App::$strings["This site is not a directory server"] = "Questo non è un directory server"; App::$strings["Authentication failed."] = "Autenticazione fallita."; App::$strings["Remote Authentication"] = "Accedi tramite il tuo hub"; App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)"; @@ -1362,11 +1118,13 @@ App::$strings["This action is permanent and can not be undone!"] = "Questo coman App::$strings["Please enter your password for verification:"] = "Inserisci la tua password per verifica:"; App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Elimina dalla rete questo account, tutti i suoi canali e ANCHE tutti gli eventuali canali clonati."; App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete."; +App::$strings["Remove Account"] = "Elimina l'account"; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Non è possibile eliminare un canale prima di 48 ore dall'ultimo cambio password."; App::$strings["Remove This Channel"] = "Elimina questo canale"; App::$strings["This channel will be completely removed from the network. "] = "Questo canale sarà completamente eliminato dalla rete."; App::$strings["Remove this channel and all its clones from the network"] = "Elimina questo canale e tutti i suoi cloni dalla rete"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni"; +App::$strings["Remove Channel"] = "Elimina questo canale"; App::$strings["Export Channel"] = "Esporta il canale"; App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Esporta le informazioni di base del canale in un file. In pratica è un salvataggio delle tue connessioni, dei permessi che hai assegnato e del tuo profilo che così potrà essere importato su un altro server/hub. Il file non includerà i tuoi post e altri contenuti che hai creato o caricato."; App::$strings["Export Content"] = "Esporta i contenuti"; @@ -1379,6 +1137,10 @@ App::$strings["These content files may be imported or restored by visiting "Mi piace", + 1 => "Mi piace", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +App::$strings["Photo Tools"] = "Gestione foto"; +App::$strings["In This Photo:"] = "In questa foto:"; +App::$strings["Map"] = "Mappa"; +App::$strings["__ctx:noun__ Likes"] = "Mi piace"; +App::$strings["__ctx:noun__ Dislikes"] = "Non mi piace"; +App::$strings["Close"] = "Chiudi"; +App::$strings["View Album"] = "Guarda l'album"; +App::$strings["Recent Photos"] = "Foto recenti"; App::$strings["Channel added."] = "Canale aggiunto."; App::$strings["No connections."] = "Nessun contatto."; App::$strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; @@ -1468,6 +1294,179 @@ App::$strings["Expiration"] = "Scadenza"; App::$strings["min"] = "min"; App::$strings["Xchan Lookup"] = "Ricerca canale"; App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; +App::$strings["# Accounts"] = "# account"; +App::$strings["# blocked accounts"] = "# account bloccati"; +App::$strings["# expired accounts"] = "# account scaduti"; +App::$strings["# expiring accounts"] = "# account in scadenza"; +App::$strings["# Channels"] = "# canali"; +App::$strings["# primary"] = "# primari"; +App::$strings["# clones"] = "# cloni"; +App::$strings["Message queues"] = "Coda messaggi in uscita"; +App::$strings["Your software should be updated"] = "Il tuo software necessita di un aggiornamento"; +App::$strings["Summary"] = "Riepilogo"; +App::$strings["Registered accounts"] = "Account creati"; +App::$strings["Pending registrations"] = "Registrazioni da approvare"; +App::$strings["Registered channels"] = "Canali creati"; +App::$strings["Active plugins"] = "Plugin attivi"; +App::$strings["Version"] = "Versione"; +App::$strings["Repository version (master)"] = "Versione del repository (master)"; +App::$strings["Repository version (dev)"] = "Versione del repository (dev)"; +App::$strings["Not valid email."] = "Email non valida."; +App::$strings["Protected email address. Cannot change to that email."] = "È un indirizzo email riservato. Non puoi sceglierlo."; +App::$strings["System failure storing new email. Please try again."] = "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore."; +App::$strings["Technical skill level updated"] = "Livello tecnico aggiornato"; +App::$strings["Password verification failed."] = "Verifica della password fallita."; +App::$strings["Passwords do not match. Password unchanged."] = "Le password non corrispondono. Password non cambiata."; +App::$strings["Empty passwords are not allowed. Password unchanged."] = "Le password non possono essere vuote. Password non cambiata."; +App::$strings["Password changed."] = "Password cambiata."; +App::$strings["Password update failed. Please try again."] = "Modifica password fallita. Prova ancora."; +App::$strings["Account Settings"] = "Il tuo account"; +App::$strings["Current Password"] = "Password attuale"; +App::$strings["Enter New Password"] = "Nuova password"; +App::$strings["Confirm New Password"] = "Conferma la nuova password"; +App::$strings["Leave password fields blank unless changing"] = "Lascia vuoti questi campi per non cambiare la password"; +App::$strings["Your technical skill level"] = "Il tuo livello tecnico"; +App::$strings["Used to provide a member experience matched to your comfort level"] = "Serve a vedere solo gli aspetti tecnici adeguati alle tue conoscenze"; +App::$strings["Email Address:"] = "Indirizzo email:"; +App::$strings["Remove this account including all its channels"] = "Elimina questo account e tutti i suoi canali"; +App::$strings["Settings updated."] = "Impostazioni aggiornate."; +App::$strings["Nobody except yourself"] = "Nessuno tranne te"; +App::$strings["Only those you specifically allow"] = "Solo chi riceve il mio permesso"; +App::$strings["Approved connections"] = "Contatti approvati"; +App::$strings["Any connections"] = "Tutti i contatti"; +App::$strings["Anybody on this website"] = "Chiunque su questo hub"; +App::$strings["Anybody in this network"] = "Chiunque su questa rete"; +App::$strings["Anybody authenticated"] = "Chiunque abbia effettuato l'accesso"; +App::$strings["Anybody on the internet"] = "Chiunque su internet"; +App::$strings["Publish your default profile in the network directory"] = "Mostra il mio profilo predefinito negli elenchi pubblici dei canali"; +App::$strings["Allow us to suggest you as a potential friend to new members?"] = "Vuoi essere suggerito come amico ai nuovi membri?"; +App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; +App::$strings["Channel Settings"] = "Impostazioni del canale"; +App::$strings["Basic Settings"] = "Impostazioni di base"; +App::$strings["Full Name:"] = "Nome completo:"; +App::$strings["Your Timezone:"] = "Il tuo fuso orario:"; +App::$strings["Default Post Location:"] = "Località predefinita:"; +App::$strings["Geographical location to display on your posts"] = "La posizione geografica da mostrare sui tuoi post"; +App::$strings["Use Browser Location:"] = "Usa la località rilevata dal browser:"; +App::$strings["Adult Content"] = "Contenuto per adulti"; +App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "Questo canale pubblica frequentemente contenuto per adulti. (I contenuti per adulti vanno taggati #NSFW - Not Safe For Work)"; +App::$strings["Security and Privacy Settings"] = "Impostazioni di sicurezza e privacy"; +App::$strings["Your permissions are already configured. Click to view/adjust"] = "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli"; +App::$strings["Hide my online presence"] = "Nascondi la mia presenza online"; +App::$strings["Prevents displaying in your profile that you are online"] = "Non mostrare sul tuo profilo quando sei online"; +App::$strings["Simple Privacy Settings:"] = "Impostazioni di privacy semplificate"; +App::$strings["Very Public - extremely permissive (should be used with caution)"] = "Tutto pubblico - estremamente permissivo (da usare con cautela)"; +App::$strings["Typical - default public, privacy when desired (similar to social network permissions but with improved privacy)"] = "Standard - contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)"; +App::$strings["Private - default private, never open or public"] = "Privato - contenuti normalmente privati, nulla è aperto o pubblico"; +App::$strings["Blocked - default blocked to/from everybody"] = "Bloccato - bloccato in invio e ricezione dei contenuti"; +App::$strings["Allow others to tag your posts"] = "Permetti ad altri di taggare i tuoi post"; +App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti"; +App::$strings["Channel Permission Limits"] = "Limiti sui permessi del canale"; +App::$strings["Expire other channel content after this many days"] = "Giorni dopo cui mettere in scadenza gli altri contenuti del canale"; +App::$strings["0 or blank to use the website limit."] = "0 o vuoto per usare i valori predefiniti."; +App::$strings["This website expires after %d days."] = "Per questo sito la scadenza è %d giorni. "; +App::$strings["This website does not expire imported content."] = "I contenuti di questo sito non hanno scadenza."; +App::$strings["The website limit takes precedence if lower than your limit."] = "Il limite del server ha la precedenza, se minore di quello impostato da te."; +App::$strings["Maximum Friend Requests/Day:"] = "Numero massimo giornaliero di richieste di amicizia:"; +App::$strings["May reduce spam activity"] = "Serve a ridurre lo spam"; +App::$strings["Default Access Control List (ACL)"] = "Lista di accesso ai contenuti (ACL)"; +App::$strings["Use my default audience setting for the type of object published"] = "Mostra ai contatti secondo le impostazioni standard per questo tipo di contenuto"; +App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; +App::$strings["Maximum private messages per day from unknown people:"] = "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:"; +App::$strings["Useful to reduce spamming"] = "Serve e ridurre lo spam"; +App::$strings["Notification Settings"] = "Impostazioni di notifica"; +App::$strings["By default post a status message when:"] = "Pubblica un messaggio di stato quando:"; +App::$strings["accepting a friend request"] = "accetto una nuova amicizia"; +App::$strings["joining a forum/community"] = "entro a far parte di un forum"; +App::$strings["making an interesting profile change"] = "faccio un cambiamento interessante al mio profilo"; +App::$strings["Send a notification email when:"] = "Invia una email di notifica quando:"; +App::$strings["You receive a connection request"] = "Ricevi una richiesta di entrare in contatto"; +App::$strings["Your connections are confirmed"] = "I tuoi contatti sono confermati"; +App::$strings["Someone writes on your profile wall"] = "Qualcuno scrive sulla tua bacheca"; +App::$strings["Someone writes a followup comment"] = "Qualcuno scrive un commento dopo di te"; +App::$strings["You receive a private message"] = "Ricevi un messaggio privato"; +App::$strings["You receive a friend suggestion"] = "Ti viene suggerito un amico"; +App::$strings["You are tagged in a post"] = "Sei taggato in un post"; +App::$strings["You are poked/prodded/etc. in a post"] = "Ricevi un poke in un post"; +App::$strings["Show visual notifications including:"] = "Mostra queste notifiche a schermo:"; +App::$strings["Unseen grid activity"] = "Nuove attività nella rete"; +App::$strings["Unseen channel activity"] = "Novità nei canali"; +App::$strings["Unseen private messages"] = "Nuovi messaggi privati"; +App::$strings["Recommended"] = "Consigliato"; +App::$strings["Upcoming events"] = "Prossimi eventi"; +App::$strings["Events today"] = "Eventi di oggi"; +App::$strings["Upcoming birthdays"] = "Prossimi compleanni"; +App::$strings["Not available in all themes"] = "Non disponibile in tutti i temi"; +App::$strings["System (personal) notifications"] = "Notifiche personali dal sistema"; +App::$strings["System info messages"] = "Notifiche di sistema"; +App::$strings["System critical alerts"] = "Avvisi critici di sistema"; +App::$strings["New connections"] = "Nuovi contatti"; +App::$strings["System Registrations"] = "Registrazioni"; +App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Mostra negli avvisi anche i nuovi post, i messaggi privati e i nuovi contatti"; +App::$strings["Notify me of events this many days in advance"] = "Giorni di anticipo per notificare gli eventi"; +App::$strings["Must be greater than 0"] = "Maggiore di 0"; +App::$strings["Advanced Account/Page Type Settings"] = "Impostazioni avanzate"; +App::$strings["Change the behaviour of this account for special situations"] = "Cambia il funzionamento di questo account per necessità particolari"; +App::$strings["Miscellaneous Settings"] = "Impostazioni varie"; +App::$strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; +App::$strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; +App::$strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; +App::$strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; +App::$strings["Remove this channel."] = "Elimina questo canale."; +App::$strings["Firefox Share \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; +App::$strings["Start calendar week on monday"] = "La settimana inizia il lunedì"; +App::$strings["No special theme for mobile devices"] = "Nessun tema per dispositivi mobili"; +App::$strings["%s - (Experimental)"] = "%s - (Sperimentale)"; +App::$strings["Display Settings"] = "Aspetto"; +App::$strings["Theme Settings"] = "Impostazioni del tema"; +App::$strings["Custom Theme Settings"] = "Personalizzazione del tema"; +App::$strings["Content Settings"] = "Impostazioni dei contenuti"; +App::$strings["Display Theme:"] = "Tema per schermi medio grandi:"; +App::$strings["Select scheme"] = "Scegli uno schema"; +App::$strings["Mobile Theme:"] = "Tema per dispositivi mobili:"; +App::$strings["Preload images before rendering the page"] = "Carica le immagini prima del rendering della pagina"; +App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "Il tempo di caricamento della pagina sarà più lungo ma sarà mostrato il rendering completo"; +App::$strings["Enable user zoom on mobile devices"] = "Attiva la possibilità di fare zoom sui dispositivi mobili"; +App::$strings["Update browser every xx seconds"] = "Aggiorna il browser ogni x secondi"; +App::$strings["Minimum of 10 seconds, no maximum"] = "Minimo 10 secondi, nessun limite massimo"; +App::$strings["Maximum number of conversations to load at any time:"] = "Massimo numero di conversazioni da mostrare ogni volta:"; +App::$strings["Maximum of 100 items"] = "Massimo 100"; +App::$strings["Show emoticons (smilies) as images"] = "Mostra le faccine (smilies) come immagini"; +App::$strings["Link post titles to source"] = "Il link del titolo di un post porta al sito originale"; +App::$strings["System Page Layout Editor - (advanced)"] = "Modifica i layout di sistema (avanzato)"; +App::$strings["Use blog/list mode on channel page"] = "Mostra il canale nella modalità blog"; +App::$strings["(comments displayed separately)"] = "(i commenti sono mostrati separatamente)"; +App::$strings["Use blog/list mode on grid page"] = "Mostra la tua rete in modalità blog"; +App::$strings["Channel page max height of content (in pixels)"] = "Altezza massima dei contenuti del canale (in pixel)"; +App::$strings["click to expand content exceeding this height"] = "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori"; +App::$strings["Grid page max height of content (in pixels)"] = "Altezza massima dei contenuti della tua rete (in pixel)"; +App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; +App::$strings["Feature/Addon Settings"] = "Impostazioni dei componenti aggiuntivi"; +App::$strings["Additional Features"] = "Funzionalità opzionali"; +App::$strings["Name is required"] = "Il nome è obbligatorio"; +App::$strings["Key and Secret are required"] = "Key e Secret sono richiesti"; +App::$strings["Add application"] = "Aggiungi una app"; +App::$strings["Name of application"] = "Nome dell'applicazione"; +App::$strings["Consumer Key"] = "Consumer Key"; +App::$strings["Automatically generated - change if desired. Max length 20"] = "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20"; +App::$strings["Consumer Secret"] = "Consumer Secret"; +App::$strings["Redirect"] = "Redirect"; +App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione"; +App::$strings["Icon url"] = "Url icona"; +App::$strings["Application not found."] = "Applicazione non trovata."; +App::$strings["Connected Apps"] = "App connesse"; +App::$strings["Client key starts with"] = "La client key inizia con"; +App::$strings["No name"] = "Nessun nome"; +App::$strings["Remove authorization"] = "Revoca l'autorizzazione"; +App::$strings["This channel is limited to %d tokens"] = "Questo canale è limitato a %d token"; +App::$strings["Name and Password are required."] = "Nome e password sono obbligatori."; +App::$strings["Token saved."] = "Token salvato."; +App::$strings["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."] = "Usa questo modulo per creare credenziali temporanee per condividere qualcosa con i non iscritti. A queste credenziali potrai dare o togliere diritti come a tutti gli altri utenti e i visitatori potranno usarle per accedere a contenuti privati."; +App::$strings["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:"] = "Puoi anche fornire un accesso simile a dropbox agli amici o ai colleghi aggiungendo la password all'url che vuoi comunicare, come mostrato sotto. Esempi:"; +App::$strings["Guest Access Tokens"] = "Token di accesso ospite"; +App::$strings["Login Name"] = "Nome utente"; +App::$strings["Login Password"] = "Password"; +App::$strings["Expires (yyyy-mm-dd)"] = "Con scadenza (aaaa-mm-gg)"; App::$strings["Missing room name"] = "Chat senza nome"; App::$strings["Duplicate room name"] = "Il nome della chat è duplicato"; App::$strings["Invalid room specifier."] = "Il nome della chat non è valido."; @@ -1613,64 +1612,92 @@ App::$strings["Zot"] = "Zot"; App::$strings["LinkedIn"] = "LinkedIn"; App::$strings["XMPP/IM"] = "XMPP/IM"; App::$strings["MySpace"] = "MySpace"; -App::$strings["Embedded content"] = "Contenuti incorporati"; -App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; -App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; -App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; -App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; -App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; -App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; -App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; -App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; -App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; -App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; -App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; -App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; -App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; -App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; -App::$strings["New window"] = "Nuova finestra"; -App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; -App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; -App::$strings["Public Timeline"] = "Diario pubblico"; -App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; -App::$strings["Empty name"] = "Nome vuoto"; -App::$strings["Name too long"] = "Nome troppo lungo"; -App::$strings["No account identifier"] = "Account senza identificativo"; -App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; -App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; -App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; -App::$strings["Default Profile"] = "Profilo predefinito"; -App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; -App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; +App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; +App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; +App::$strings["a new photo"] = "una nuova foto"; +App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Upload New Photos"] = "Carica nuove foto"; +App::$strings["Logout"] = "Esci"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; App::$strings["Edit Profile"] = "Modifica il profilo"; -App::$strings["Visible to everybody"] = "Visibile a tutti"; -App::$strings["Gender:"] = "Sesso:"; -App::$strings["Status:"] = "Stato:"; -App::$strings["Homepage:"] = "Home page:"; -App::$strings["Online Now"] = "Online adesso"; -App::$strings["Like this channel"] = "Mi piace questo canale"; -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Compleanno:"; -App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; -App::$strings["Tags:"] = "Tag:"; -App::$strings["Political Views:"] = "Orientamento politico:"; -App::$strings["Religion:"] = "Religione:"; -App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; -App::$strings["Likes:"] = "Mi piace:"; -App::$strings["Dislikes:"] = "Non mi piace:"; -App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; -App::$strings["My other channels:"] = "I miei altri canali:"; -App::$strings["Musical interests:"] = "Gusti musicali:"; -App::$strings["Books, literature:"] = "Libri, letteratura:"; -App::$strings["Television:"] = "Televisione:"; -App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; -App::$strings["Love/Romance:"] = "Amore:"; -App::$strings["Work/employment:"] = "Lavoro:"; -App::$strings["School/education:"] = "Scuola:"; -App::$strings["Like this thing"] = "Mi piace"; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Your photos"] = "Le tue foto"; +App::$strings["Your files"] = "I tuoi file"; +App::$strings["Your chatrooms"] = "Le tue chat"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Your bookmarks"] = "I tuoi segnalibri"; +App::$strings["Your webpages"] = "Le tue pagine web"; +App::$strings["Your wiki"] = "La tua wiki"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["%s - click to logout"] = "%s - clicca per uscire"; +App::$strings["Remote authentication"] = "Accedi dal tuo hub"; +App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; +App::$strings["Home Page"] = "Bacheca"; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; +App::$strings["Your grid"] = "La tua rete"; +App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; +App::$strings["Channel home"] = "Bacheca del canale"; +App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; +App::$strings["Notices"] = "Avvisi"; +App::$strings["Notifications"] = "Notifiche"; +App::$strings["See all notifications"] = "Vedi tutte le notifiche"; +App::$strings["Private mail"] = "Messaggi privati"; +App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; +App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; +App::$strings["Inbox"] = "In arrivo"; +App::$strings["Outbox"] = "Inviati"; +App::$strings["New Message"] = "Nuovo messaggio"; +App::$strings["Event Calendar"] = "Calendario"; +App::$strings["See all events"] = "Guarda tutti gli eventi"; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["Admin"] = "Amministrazione"; +App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; +App::$strings["Loading..."] = "Caricamento in corso..."; +App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; +App::$strings["Please wait..."] = "Attendere..."; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["Can view my normal stream and posts"] = "Può vedere i miei contenuti e i post normali"; +App::$strings["Can view my webpages"] = "Può vedere le mie pagine web"; +App::$strings["Can post on my channel page (\"wall\")"] = "Può scrivere sulla bacheca del mio canale"; +App::$strings["Can like/dislike stuff"] = "Può aggiungere \"mi piace\" a tutto il resto"; +App::$strings["Profiles and things other than posts/comments"] = "Può aggiungere \"mi piace\" a tutto ciò che non riguarda i post, come per esempio il profilo"; +App::$strings["Can forward to all my channel contacts via post @mentions"] = "Può inoltrare post a tutti i contatti del canale tramite una @menzione"; +App::$strings["Advanced - useful for creating group forum channels"] = "Impostazione avanzata - utile per creare un canale-forum di discussione"; +App::$strings["Can chat with me (when available)"] = "Può aprire una chat con me (se disponibile)"; +App::$strings["Can write to my file storage and photos"] = "Può modificare il mio archivio file e foto"; +App::$strings["Can edit my webpages"] = "Può modificare le mie pagine web"; +App::$strings["Somewhat advanced - very useful in open communities"] = "Piuttosto avanzato - molto utile nelle comunità aperte"; +App::$strings["Can administer my channel resources"] = "Può amministrare i contenuti del mio canale"; +App::$strings["Extremely advanced. Leave this alone unless you know what you are doing"] = "Impostazione pericolosa - lasciare il valore predefinito se non si è assolutamente sicuri"; +App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; +App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; +App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; +App::$strings["(Unknown)"] = "(Sconosciuto)"; +App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; +App::$strings["Visible to you only."] = "Visibile solo a te."; +App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; +App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; +App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; +App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; +App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; +App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; +App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; +App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; +App::$strings["Connection not found."] = "Contatto non trovato."; +App::$strings["profile photo"] = "foto del profilo"; App::$strings["Birthday"] = "Compleanno"; App::$strings["Age: "] = "Età:"; App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-GG oppure MM-GG"; @@ -1707,6 +1734,22 @@ App::$strings["__ctx:relative_date__ second"] = array( ); App::$strings["%1\$s's birthday"] = "Compleanno di %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Buon compleanno %1\$s"; +App::$strings["Not a valid email address"] = "Email non valida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; +App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; +App::$strings["An invitation is required."] = "È necessario un invito."; +App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; +App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; +App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; +App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; +App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; +App::$strings["your registration password"] = "la password di registrazione"; +App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; +App::$strings["Account approved."] = "Account approvato."; +App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; +App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; +App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; App::$strings["Frequently"] = "Frequentemente"; App::$strings["Hourly"] = "Ogni ora"; App::$strings["Twice daily"] = "Due volte al giorno"; @@ -1769,25 +1812,27 @@ App::$strings["Uncertain"] = "Incerto/a"; App::$strings["It's complicated"] = "Relazione complicata"; App::$strings["Don't care"] = "Chi se ne frega"; App::$strings["Ask me"] = "Chiedimelo"; -App::$strings["(Unknown)"] = "(Sconosciuto)"; -App::$strings["Visible to anybody on the internet."] = "Visibile a chiunque su internet."; -App::$strings["Visible to you only."] = "Visibile solo a te."; -App::$strings["Visible to anybody in this network."] = "Visibile a tutti su questa rete."; -App::$strings["Visible to anybody authenticated."] = "Visibile a chiunque sia autenticato."; -App::$strings["Visible to anybody on %s."] = "Visibile a tutti su %s."; -App::$strings["Visible to all connections."] = "Visibile a tutti coloro che ti seguono."; -App::$strings["Visible to approved connections."] = "Visibile ai contatti approvati."; -App::$strings["Visible to specific connections."] = "Visibile ad alcuni contatti scelti."; -App::$strings["Privacy group is empty."] = "Gruppo di canali vuoto."; -App::$strings["Privacy group: %s"] = "Gruppo di canali: %s"; -App::$strings["Connection not found."] = "Contatto non trovato."; -App::$strings["profile photo"] = "foto del profilo"; +App::$strings["Image/photo"] = "Immagine"; +App::$strings["Encrypted content"] = "Contenuto cifrato"; +App::$strings["Install %s element: "] = "Installa l'elemento %s:"; +App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; +App::$strings["spoiler"] = "spoiler"; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +App::$strings["$1 wrote:"] = "$1 ha scritto:"; +App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Inizio:"; +App::$strings["Finishes:"] = "Fine:"; +App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; +App::$strings["Not specified"] = "Non specificato"; +App::$strings["Needs Action"] = "Necessita di un intervento"; +App::$strings["Completed"] = "Completato"; +App::$strings["In Process"] = "In corso"; +App::$strings["Cancelled"] = "Annullato"; App::$strings["guest:"] = "ospite:"; App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "I controlli di sicurezza sono falliti. Probabilmente è accaduto perché la pagina è stata tenuta aperta troppo a lungo (ore?) prima di inviare il contenuto."; -App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; -App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; +App::$strings["Help:"] = "Guida:"; App::$strings["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un gruppo di canali con lo stesso nome esisteva in precedenza ed è stato ripristinato. I vecchi permessi saranno applicati ai nuovi canali. Se non vuoi che ciò accada, devi creare un gruppo con un nome diverso."; App::$strings["Add new connections to this privacy group"] = "Aggiungi nuovi contatti a questo gruppo di canali"; @@ -1797,16 +1842,6 @@ App::$strings["Edit group"] = "Modifica il gruppo"; App::$strings["Add privacy group"] = "Crea un gruppo di canali"; App::$strings["Channels not in any privacy group"] = "Canali che non sono in nessun gruppo"; App::$strings["add"] = "aggiungi"; -App::$strings["Image exceeds website size limit of %lu bytes"] = "L'immagine supera il limite massimo di %lu bytes"; -App::$strings["Image file is empty."] = "Il file dell'immagine è vuoto."; -App::$strings["Photo storage failed."] = "Impossibile salvare la foto."; -App::$strings["a new photo"] = "una nuova foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha pubblicato %2\$s su %3\$s"; -App::$strings["Photo Albums"] = "Album foto"; -App::$strings["Upload New Photos"] = "Carica nuove foto"; -App::$strings["New Page"] = "Nuova pagina web"; -App::$strings["Title"] = "Titolo"; -App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; App::$strings["Item was not found."] = "Elemento non trovato."; App::$strings["No source file."] = "Nessun file di origine."; App::$strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; @@ -1822,11 +1857,10 @@ App::$strings["Path not found."] = "Percorso del file non trovato."; App::$strings["mkdir failed."] = "mkdir fallito."; App::$strings["database storage failed."] = "scrittura su database fallita."; App::$strings["Empty path"] = "La posizione è vuota"; +App::$strings["New Page"] = "Nuova pagina web"; +App::$strings["Title"] = "Titolo"; App::$strings["Attachments:"] = "Allegati:"; -App::$strings["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; App::$strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; -App::$strings["Starts:"] = "Inizio:"; -App::$strings["Finishes:"] = "Fine:"; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; App::$strings["%s show less"] = "%s riduci"; App::$strings["%s expand"] = "%s mostra tutto"; @@ -1916,94 +1950,66 @@ App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you overrid App::$strings["Show"] = "Mostra"; App::$strings["Don't show"] = "Non mostrare"; App::$strings["Post permissions %s cannot be changed %s after a post is shared.
    These permissions set who is allowed to view the post."] = "I permessi del post %s non possono essere cambiati %s dopo che un post è stato condiviso.
    Questi permessi definiscono chi ha diritto di vedere il post."; -App::$strings["prev"] = "prec"; -App::$strings["first"] = "inizio"; -App::$strings["last"] = "fine"; -App::$strings["next"] = "succ"; -App::$strings["older"] = "più recenti"; -App::$strings["newer"] = "più nuovi"; -App::$strings["No connections"] = "Nessun contatto"; -App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; -App::$strings["poke"] = "poke"; -App::$strings["poked"] = "ha mandato un poke"; -App::$strings["ping"] = "ping"; -App::$strings["pinged"] = "ha effettuato un ping"; -App::$strings["prod"] = "spintone"; -App::$strings["prodded"] = "ha ricevuto uno spintone"; -App::$strings["slap"] = "schiaffo"; -App::$strings["slapped"] = "ha ricevuto uno schiaffo"; -App::$strings["finger"] = "finger"; -App::$strings["fingered"] = "ha ricevuto un finger"; -App::$strings["rebuff"] = "rifiuto"; -App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; -App::$strings["happy"] = "felice"; -App::$strings["sad"] = "triste"; -App::$strings["mellow"] = "calmo"; -App::$strings["tired"] = "stanco"; -App::$strings["perky"] = "vivace"; -App::$strings["angry"] = "arrabbiato"; -App::$strings["stupefied"] = "stupito"; -App::$strings["puzzled"] = "confuso"; -App::$strings["interested"] = "attento"; -App::$strings["bitter"] = "amaro"; -App::$strings["cheerful"] = "allegro"; -App::$strings["alive"] = "vivace"; -App::$strings["annoyed"] = "seccato"; -App::$strings["anxious"] = "ansioso"; -App::$strings["cranky"] = "irritabile"; -App::$strings["disturbed"] = "turbato"; -App::$strings["frustrated"] = "frustrato"; -App::$strings["depressed"] = "in depressione"; -App::$strings["motivated"] = "motivato"; -App::$strings["relaxed"] = "rilassato"; -App::$strings["surprised"] = "sorpreso"; -App::$strings["May"] = "Mag"; -App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; -App::$strings["unknown"] = "sconosciuta"; -App::$strings["remove category"] = "rimuovi la categoria"; -App::$strings["remove from file"] = "rimuovi dal file"; -App::$strings["default"] = "predefinito"; -App::$strings["Page layout"] = "Layout della pagina"; -App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; -App::$strings["Page content type"] = "Tipo di contenuto della pagina"; -App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; -App::$strings["activity"] = "l'attività"; -App::$strings["Design Tools"] = "Strumenti di design"; -App::$strings["Pages"] = "Pagine"; -App::$strings["Import website..."] = "Importazione sito web..."; -App::$strings["Select folder to import"] = "Scegli la cartella da importare"; -App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; -App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; -App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/percorso/alla/cartella"; -App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; -App::$strings["Select folder"] = "Scegli la cartella"; -App::$strings["Export website..."] = "Esporta il sito web..."; -App::$strings["Export to a zip file"] = "Esporta come file zip"; -App::$strings["website.zip"] = "sitoweb.zip"; -App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; -App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; -App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; -App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; -App::$strings["Specify folder"] = "Scegli la cartella"; -App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "Non posso creare un canale con un identificativo che già esiste su questo sistema. L'importazione è fallita."; -App::$strings["Channel clone failed. Import failed."] = "Impossibile clonare il canale. L'importazione è fallita."; -App::$strings["Unable to import element \""] = "Impossibile importare l'elemento \""; -App::$strings["Not a valid email address"] = "Email non valida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Il dominio della tua email attualmente non è permesso su questo sito"; -App::$strings["Your email address is already registered at this site."] = "La tua email è già registrata su questo sito."; -App::$strings["An invitation is required."] = "È necessario un invito."; -App::$strings["Invitation could not be verified."] = "L'invito non può essere verificato."; -App::$strings["Please enter the required information."] = "Inserisci le informazioni richieste."; -App::$strings["Failed to store account information."] = "Non è stato possibile salvare le informazioni del tuo account."; -App::$strings["Registration confirmation for %s"] = "Registrazione di %s confermata"; -App::$strings["Registration request at %s"] = "Richiesta di registrazione su %s"; -App::$strings["your registration password"] = "la password di registrazione"; -App::$strings["Registration details for %s"] = "Dettagli della registrazione di %s"; -App::$strings["Account approved."] = "Account approvato."; -App::$strings["Registration revoked for %s"] = "Registrazione revocata per %s"; -App::$strings["Click here to upgrade."] = "Clicca qui per aggiornare."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Questa operazione supera i limiti del tuo abbonamento."; -App::$strings["This action is not available under your subscription plan."] = "Questa operazione non è prevista dal tuo abbonamento."; +App::$strings["Unable to obtain identity information from database"] = "Impossibile ottenere le informazioni di identificazione dal database"; +App::$strings["Empty name"] = "Nome vuoto"; +App::$strings["Name too long"] = "Nome troppo lungo"; +App::$strings["No account identifier"] = "Account senza identificativo"; +App::$strings["Nickname is required."] = "Il nome dell'account è obbligatorio."; +App::$strings["Reserved nickname. Please choose another."] = "Nome utente riservato. Per favore scegline un altro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Il nome dell'account è già in uso oppure ha dei caratteri non supportati."; +App::$strings["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Status:"] = "Stato:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Like this channel"] = "Mi piace questo canale"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Compleanno:"; +App::$strings["for %1\$d %2\$s"] = "per %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Preferenze sessuali:"; +App::$strings["Tags:"] = "Tag:"; +App::$strings["Political Views:"] = "Orientamento politico:"; +App::$strings["Religion:"] = "Religione:"; +App::$strings["Hobbies/Interests:"] = "Interessi e hobby:"; +App::$strings["Likes:"] = "Mi piace:"; +App::$strings["Dislikes:"] = "Non mi piace:"; +App::$strings["Contact information and Social Networks:"] = "Contatti e social network:"; +App::$strings["My other channels:"] = "I miei altri canali:"; +App::$strings["Musical interests:"] = "Gusti musicali:"; +App::$strings["Books, literature:"] = "Libri, letteratura:"; +App::$strings["Television:"] = "Televisione:"; +App::$strings["Film/dance/culture/entertainment:"] = "Film, danza, cultura, intrattenimento:"; +App::$strings["Love/Romance:"] = "Amore:"; +App::$strings["Work/employment:"] = "Lavoro:"; +App::$strings["School/education:"] = "Scuola:"; +App::$strings["Like this thing"] = "Mi piace"; +App::$strings["New window"] = "Nuova finestra"; +App::$strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; +App::$strings["User '%s' deleted"] = "Utente '%s' eliminato"; +App::$strings["%d invitation available"] = array( + 0 => "%d invito disponibile", + 1 => "%d inviti disponibili", +); +App::$strings["Find Channels"] = "Ricerca canali"; +App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; +App::$strings["Connect/Follow"] = "Aggiungi"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; +App::$strings["Random Profile"] = "Profilo casuale"; +App::$strings["Invite Friends"] = "Invita amici"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; +App::$strings["Saved Folders"] = "Cartelle salvate"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Categories"] = "Categorie"; +App::$strings["%d connection in common"] = array( + 0 => "%d contatto in comune", + 1 => "%d contatti in comune", +); +App::$strings["show more"] = "mostra tutto"; App::$strings["Logged out."] = "Uscita effettuata."; App::$strings["Failed authentication"] = "Autenticazione fallita"; App::$strings["Login failed."] = "Accesso fallito."; @@ -2014,12 +2020,12 @@ App::$strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; App::$strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; App::$strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +App::$strings["poked"] = "ha mandato un poke"; App::$strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; App::$strings["Categories:"] = "Categorie:"; App::$strings["Filed under:"] = "Classificato come:"; App::$strings["View in context"] = "Vedi nel contesto"; App::$strings["remove"] = "rimuovi"; -App::$strings["Loading..."] = "Caricamento in corso..."; App::$strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; App::$strings["View Source"] = "Vedi il sorgente"; App::$strings["Follow Thread"] = "Segui la discussione"; @@ -2075,7 +2081,6 @@ App::$strings["About"] = "Informazioni"; App::$strings["Profile Details"] = "Dettagli del profilo"; App::$strings["Files and Storage"] = "Archivio file"; App::$strings["Chatrooms"] = "Chat"; -App::$strings["Bookmarks"] = "Segnalibri"; App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; App::$strings["Manage Webpages"] = "Gestisci le pagine web"; App::$strings["__ctx:noun__ Attending"] = array( @@ -2102,7 +2107,6 @@ App::$strings["__ctx:noun__ Abstain"] = array( 0 => "Astenuto", 1 => "Astenuti", ); -App::$strings["Categories"] = "Categorie"; App::$strings["Tags"] = "Tag"; App::$strings["Keywords"] = "Parole chiave"; App::$strings["have"] = "ho"; @@ -2111,6 +2115,137 @@ App::$strings["want"] = "voglio"; App::$strings["wants"] = "vuole"; App::$strings["likes"] = "gli piace"; App::$strings["dislikes"] = "non gli piace"; +App::$strings["prev"] = "prec"; +App::$strings["first"] = "inizio"; +App::$strings["last"] = "fine"; +App::$strings["next"] = "succ"; +App::$strings["older"] = "più recenti"; +App::$strings["newer"] = "più nuovi"; +App::$strings["No connections"] = "Nessun contatto"; +App::$strings["View all %s connections"] = "Mostra tutti i %s contatti"; +App::$strings["poke"] = "poke"; +App::$strings["ping"] = "ping"; +App::$strings["pinged"] = "ha effettuato un ping"; +App::$strings["prod"] = "spintone"; +App::$strings["prodded"] = "ha ricevuto uno spintone"; +App::$strings["slap"] = "schiaffo"; +App::$strings["slapped"] = "ha ricevuto uno schiaffo"; +App::$strings["finger"] = "finger"; +App::$strings["fingered"] = "ha ricevuto un finger"; +App::$strings["rebuff"] = "rifiuto"; +App::$strings["rebuffed"] = "ha ricevuto un rifiuto"; +App::$strings["happy"] = "felice"; +App::$strings["sad"] = "triste"; +App::$strings["mellow"] = "calmo"; +App::$strings["tired"] = "stanco"; +App::$strings["perky"] = "vivace"; +App::$strings["angry"] = "arrabbiato"; +App::$strings["stupefied"] = "stupito"; +App::$strings["puzzled"] = "confuso"; +App::$strings["interested"] = "attento"; +App::$strings["bitter"] = "amaro"; +App::$strings["cheerful"] = "allegro"; +App::$strings["alive"] = "vivace"; +App::$strings["annoyed"] = "seccato"; +App::$strings["anxious"] = "ansioso"; +App::$strings["cranky"] = "irritabile"; +App::$strings["disturbed"] = "turbato"; +App::$strings["frustrated"] = "frustrato"; +App::$strings["depressed"] = "in depressione"; +App::$strings["motivated"] = "motivato"; +App::$strings["relaxed"] = "rilassato"; +App::$strings["surprised"] = "sorpreso"; +App::$strings["May"] = "Mag"; +App::$strings["Unknown Attachment"] = "Allegato non riconoscuto"; +App::$strings["unknown"] = "sconosciuta"; +App::$strings["remove category"] = "rimuovi la categoria"; +App::$strings["remove from file"] = "rimuovi dal file"; +App::$strings["default"] = "predefinito"; +App::$strings["Page layout"] = "Layout della pagina"; +App::$strings["You can create your own with the layouts tool"] = "Puoi creare un tuo layout dalla configurazione delle pagine web"; +App::$strings["Page content type"] = "Tipo di contenuto della pagina"; +App::$strings["Select an alternate language"] = "Seleziona una lingua diversa"; +App::$strings["activity"] = "l'attività"; +App::$strings["Design Tools"] = "Strumenti di design"; +App::$strings["Pages"] = "Pagine"; +App::$strings["Import website..."] = "Importazione sito web..."; +App::$strings["Select folder to import"] = "Scegli la cartella da importare"; +App::$strings["Import from a zipped folder:"] = "Importa da un file zip:"; +App::$strings["Import from cloud files:"] = "Importa da un file su cloud:"; +App::$strings["/cloud/channel/path/to/folder"] = "/cloud/channel/posizione/della/cartella"; +App::$strings["Enter path to website files"] = "Inserisci la posizione dei file del sito web"; +App::$strings["Select folder"] = "Scegli la cartella"; +App::$strings["Export website..."] = "Esporta il sito web..."; +App::$strings["Export to a zip file"] = "Esporta come file zip"; +App::$strings["website.zip"] = "sitoweb.zip"; +App::$strings["Enter a name for the zip file."] = "Scegli il nome del file zip."; +App::$strings["Export to cloud files"] = "Esporta nell'archivio cloud"; +App::$strings["/path/to/export/folder"] = "/percorso/alla/cartella"; +App::$strings["Enter a path to a cloud files destination."] = "Scegli la posizione su una cartella cloud."; +App::$strings["Specify folder"] = "Scegli la cartella"; +App::$strings["Public Timeline"] = "Diario pubblico"; +App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; +App::$strings["Safe Mode"] = "Modalità SafeSearch"; +App::$strings["Public Forums Only"] = "Solo forum pubblici"; +App::$strings["This Website Only"] = "Solo in questo sito"; +App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; +App::$strings["[no subject]"] = "[nessun titolo]"; +App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; +App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; +App::$strings["System"] = "Sistema"; +App::$strings["New App"] = "Nuova app"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; +App::$strings["Add New Connection"] = "Aggiungi un contatto"; +App::$strings["Enter channel address"] = "Indirizzo del canale"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; +App::$strings["Notes"] = "Note"; +App::$strings["Remove term"] = "Rimuovi termine"; +App::$strings["Saved Searches"] = "Ricerche salvate"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione cloni"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Private Mail Menu"] = "Menu messaggi privati"; +App::$strings["Combined View"] = "Vista combinata"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["Wiki List"] = "Elenco wiki"; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["photo/image"] = "foto/immagine"; +App::$strings["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["Forums"] = "Forum"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Documentation"] = "Guida"; +App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; +App::$strings["Inspect queue"] = "Coda di attesa"; +App::$strings["DB updates"] = "Aggiornamenti al DB"; +App::$strings["Plugin Features"] = "Plugin"; +App::$strings["Invalid data packet"] = "Dati ricevuti non validi"; +App::$strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +App::$strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +App::$strings["invalid target signature"] = "la firma ricevuta non è valida"; App::$strings["General Features"] = "Funzionalità di base"; App::$strings["Content Expiration"] = "Scadenza"; App::$strings["Remove posts/comments and/or private messages at a future time"] = "Elimina i post, i commenti o i messaggi privati dopo un lasso di tempo"; @@ -2151,7 +2286,6 @@ App::$strings["Network and Stream Filtering"] = "Filtraggio dei contenuti"; App::$strings["Search by Date"] = "Ricerca per data"; App::$strings["Ability to select posts by date ranges"] = "Per selezionare i post in un intervallo tra date"; App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; -App::$strings["Saved Searches"] = "Ricerche salvate"; App::$strings["Save search terms for re-use"] = "Salva i termini delle ricerche per poterle ripetere"; App::$strings["Network Personal Tab"] = "Attività personale"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Abilita il link per mostrare solamente i contenuti con cui hai interagito"; @@ -2167,7 +2301,6 @@ App::$strings["Post Categories"] = "Categorie dei post"; App::$strings["Add categories to your posts"] = "Abilita le categorie per i tuoi post"; App::$strings["Emoji Reactions"] = "Risposte emoji"; App::$strings["Add emoji reaction ability to posts"] = "Permetti di rispondere ai post con degli emoji"; -App::$strings["Saved Folders"] = "Cartelle salvate"; App::$strings["Ability to file posts under folders"] = "Abilita la raccolta dei tuoi articoli in cartelle"; App::$strings["Dislike Posts"] = "Non mi piace"; App::$strings["Ability to dislike posts/comments"] = "Abilità la funzionalità \"non mi piace\" per i tuoi post"; @@ -2183,143 +2316,6 @@ App::$strings["Advanced Directory Search"] = "Ricerca avanzata sugli elenchi pub App::$strings["Allows creation of complex directory search queries"] = "Permette la creazione di ricerche complesse negli elenchi"; App::$strings["Advanced Theme and Layout Settings"] = "Impostazioni avanzate del tema e dei layout"; App::$strings["Allows fine tuning of themes and page layouts"] = "Permette una personalizzazione accurata del tema e dei layout"; -App::$strings["System"] = "Sistema"; -App::$strings["New App"] = "Nuova app"; -App::$strings["Suggestions"] = "Suggerimenti"; -App::$strings["See more..."] = "Altro..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Hai attivato %1$.0f delle %2$.0f connessioni permesse."; -App::$strings["Add New Connection"] = "Aggiungi un contatto"; -App::$strings["Enter channel address"] = "Indirizzo del canale"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Per esempio: bob@example.com, https://example.com/barbara"; -App::$strings["Notes"] = "Note"; -App::$strings["Remove term"] = "Rimuovi termine"; -App::$strings["Everything"] = "Tutto"; -App::$strings["Archives"] = "Archivi"; -App::$strings["Refresh"] = "Aggiorna"; -App::$strings["Account settings"] = "Il tuo account"; -App::$strings["Channel settings"] = "Impostazioni del canale"; -App::$strings["Additional features"] = "Funzionalità opzionali"; -App::$strings["Feature/Addon settings"] = "Componenti aggiuntivi"; -App::$strings["Display settings"] = "Aspetto"; -App::$strings["Manage locations"] = "Gestione repliche"; -App::$strings["Export channel"] = "Esporta il canale"; -App::$strings["Connected apps"] = "App connesse"; -App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; -App::$strings["Private Mail Menu"] = "Menu messaggi privati"; -App::$strings["Combined View"] = "Vista combinata"; -App::$strings["Inbox"] = "In arrivo"; -App::$strings["Outbox"] = "Inviati"; -App::$strings["New Message"] = "Nuovo messaggio"; -App::$strings["Conversations"] = "Conversazioni"; -App::$strings["Received Messages"] = "Ricevuti"; -App::$strings["Sent Messages"] = "Inviati"; -App::$strings["No messages."] = "Nessun messaggio."; -App::$strings["Delete conversation"] = "Elimina la conversazione"; -App::$strings["Events Tools"] = "Gestione eventi"; -App::$strings["Export Calendar"] = "Esporta calendario"; -App::$strings["Import Calendar"] = "Importa calendario"; -App::$strings["Overview"] = "Riepilogo"; -App::$strings["Chat Members"] = "Partecipanti"; -App::$strings["Wiki List"] = "Elenco wiki"; -App::$strings["Wiki Pages"] = "Pagine wiki"; -App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; -App::$strings["Suggested Chatrooms"] = "Chat suggerite"; -App::$strings["photo/image"] = "foto/immagine"; -App::$strings["Click to show more"] = "Clicca per mostrare tutto"; -App::$strings["Rating Tools"] = "Valutazione"; -App::$strings["Rate Me"] = "Valutami"; -App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; -App::$strings["Forums"] = "Forum"; -App::$strings["Tasks"] = "Attività"; -App::$strings["Documentation"] = "Guida"; -App::$strings["Project/Site Information"] = "Informazioni sul sito/progetto"; -App::$strings["For Members"] = "Per gli utenti"; -App::$strings["For Administrators"] = "Per gli amministratori"; -App::$strings["For Developers"] = "Per sviluppatori"; -App::$strings["Member registrations waiting for confirmation"] = "Richieste in attesa di conferma"; -App::$strings["Inspect queue"] = "Coda di attesa"; -App::$strings["DB updates"] = "Aggiornamenti al DB"; -App::$strings["Admin"] = "Amministrazione"; -App::$strings["Plugin Features"] = "Plugin"; -App::$strings["Image/photo"] = "Immagine"; -App::$strings["Encrypted content"] = "Contenuto cifrato"; -App::$strings["Install %s element: "] = "Installa l'elemento %s:"; -App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Questo post contiene un elemento %s installabile, tuttavia non hai i permessi necessari per l'installazione."; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; -App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; -App::$strings["spoiler"] = "spoiler"; -App::$strings["$1 wrote:"] = "$1 ha scritto:"; -App::$strings["%d invitation available"] = array( - 0 => "%d invito disponibile", - 1 => "%d inviti disponibili", -); -App::$strings["Find Channels"] = "Ricerca canali"; -App::$strings["Enter name or interest"] = "Scrivi un nome o un interesse"; -App::$strings["Connect/Follow"] = "Aggiungi"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Per esempio: Mario Rossi, Pesca"; -App::$strings["Random Profile"] = "Profilo casuale"; -App::$strings["Invite Friends"] = "Invita amici"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Per esempio: name=mario e country=italy"; -App::$strings["%d connection in common"] = array( - 0 => "%d contatto in comune", - 1 => "%d contatti in comune", -); -App::$strings["show more"] = "mostra tutto"; -App::$strings["Directory Options"] = "Visibilità negli elenchi pubblici"; -App::$strings["Safe Mode"] = "Modalità SafeSearch"; -App::$strings["Public Forums Only"] = "Solo forum pubblici"; -App::$strings["This Website Only"] = "Solo in questo sito"; -App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; -App::$strings["[no subject]"] = "[nessun titolo]"; -App::$strings["Unable to determine sender."] = "Impossibile determinare il mittente."; -App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; -App::$strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -App::$strings["Not specified"] = "Non specificato"; -App::$strings["Needs Action"] = "Necessita di un intervento"; -App::$strings["Completed"] = "Completato"; -App::$strings["In Process"] = "In corso"; -App::$strings["Cancelled"] = "Annullato"; -App::$strings["Logout"] = "Esci"; -App::$strings["End this session"] = "Chiudi questa sessione"; -App::$strings["Home"] = "Bacheca"; -App::$strings["Your posts and conversations"] = "I tuoi post e conversazioni"; -App::$strings["Your profile page"] = "Il tuo profilo"; -App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; -App::$strings["Edit your profile"] = "Modifica il tuo profilo"; -App::$strings["Your photos"] = "Le tue foto"; -App::$strings["Your files"] = "I tuoi file"; -App::$strings["Your chatrooms"] = "Le tue chat"; -App::$strings["Your bookmarks"] = "I tuoi segnalibri"; -App::$strings["Your webpages"] = "Le tue pagine web"; -App::$strings["Your wiki"] = "La tua wiki"; -App::$strings["Sign in"] = "Accedi"; -App::$strings["%s - click to logout"] = "%s - clicca per uscire"; -App::$strings["Remote authentication"] = "Accedi dal tuo hub"; -App::$strings["Click to authenticate to your home hub"] = "Clicca per farti riconoscere dal tuo hub principale"; -App::$strings["Home Page"] = "Bacheca"; -App::$strings["Create an account"] = "Crea un account"; -App::$strings["Help and documentation"] = "Guida e documentazione"; -App::$strings["Applications, utilities, links, games"] = "Applicazioni, utilità, link, giochi"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; -App::$strings["Channel Directory"] = "Elenchi pubblici dei canali"; -App::$strings["Your grid"] = "La tua rete"; -App::$strings["Mark all grid notifications seen"] = "Segna come lette le notifiche della tua rete"; -App::$strings["Channel home"] = "Bacheca del canale"; -App::$strings["Mark all channel notifications seen"] = "Segna come lette le notifiche del canale"; -App::$strings["Notices"] = "Avvisi"; -App::$strings["Notifications"] = "Notifiche"; -App::$strings["See all notifications"] = "Vedi tutte le notifiche"; -App::$strings["Private mail"] = "Messaggi privati"; -App::$strings["See all private messages"] = "Guarda tutti i messaggi privati"; -App::$strings["Mark all private messages seen"] = "Segna come letti tutti i messaggi privati"; -App::$strings["Event Calendar"] = "Calendario"; -App::$strings["See all events"] = "Guarda tutti gli eventi"; -App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; -App::$strings["Manage Your Channels"] = "Gestisci i tuoi canali"; -App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; -App::$strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; -App::$strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; -App::$strings["Please wait..."] = "Attendere..."; App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; App::$strings["Theme settings"] = "Impostazioni del tema"; App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; -- cgit v1.2.3 From c04c57ea0f34b84e59d63201314aa35eede2d875 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Sat, 24 Sep 2016 16:20:25 -0700 Subject: the rest of the backend for supporting scroll-to-comment from notifications. We still need an ajax handler as fragments are evaluated before content is loaded. --- view/tpl/conv_item.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index add80885b..7e42aa891 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -5,7 +5,7 @@
    {{$u.channels}} {{$u.account_created}}