From 5f6f87a7cd3030b1f17647fcad8cd775b145f15b Mon Sep 17 00:00:00 2001 From: mrjive Date: Mon, 29 Jan 2018 16:32:32 +0100 Subject: Update connections.tpl --- view/tpl/connections.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/connections.tpl b/view/tpl/connections.tpl index cfb7ae67e..09687350f 100755 --- a/view/tpl/connections.tpl +++ b/view/tpl/connections.tpl @@ -5,7 +5,7 @@  {{$label}} -
+
{{foreach $contacts as $contact}} {{include file="connection_template.tpl"}} {{/foreach}} -- cgit v1.2.3 From 7d0c1bb737f3683cd770ebd757d938f39a9b55ef Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 18 Feb 2018 20:24:41 -0500 Subject: Created test vehicle module oauth2test --- view/css/mod_oauth2test.css | 4 ++++ view/tpl/oauth2test.tpl | 13 +++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 view/css/mod_oauth2test.css create mode 100644 view/tpl/oauth2test.tpl (limited to 'view') diff --git a/view/css/mod_oauth2test.css b/view/css/mod_oauth2test.css new file mode 100644 index 000000000..0ef2896b5 --- /dev/null +++ b/view/css/mod_oauth2test.css @@ -0,0 +1,4 @@ +.oath2test-form-box { + border: #ccc thin solid; + padding: 1em; +} \ No newline at end of file diff --git a/view/tpl/oauth2test.tpl b/view/tpl/oauth2test.tpl new file mode 100644 index 000000000..d4887063c --- /dev/null +++ b/view/tpl/oauth2test.tpl @@ -0,0 +1,13 @@ +

OAuth 2.0 Test Vehicle

+ +{{foreach $endpoints as $ept}} +
+
+

{{$ept.3}}

+

{{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}& {{/foreach}} +

+ + +
+
+{{/foreach}} \ No newline at end of file -- cgit v1.2.3 From 89a825cd038df7da609d64ef0254ba58caaede31 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Tue, 20 Feb 2018 21:11:38 -0500 Subject: OAuth2TestVehicle module can create and delete oauth2 database tables. --- view/css/mod_oauth2test.css | 4 ---- view/css/mod_oauth2testvehicle.css | 4 ++++ view/tpl/oauth2test.tpl | 13 ------------- view/tpl/oauth2testvehicle.tpl | 13 +++++++++++++ 4 files changed, 17 insertions(+), 17 deletions(-) delete mode 100644 view/css/mod_oauth2test.css create mode 100644 view/css/mod_oauth2testvehicle.css delete mode 100644 view/tpl/oauth2test.tpl create mode 100644 view/tpl/oauth2testvehicle.tpl (limited to 'view') diff --git a/view/css/mod_oauth2test.css b/view/css/mod_oauth2test.css deleted file mode 100644 index 0ef2896b5..000000000 --- a/view/css/mod_oauth2test.css +++ /dev/null @@ -1,4 +0,0 @@ -.oath2test-form-box { - border: #ccc thin solid; - padding: 1em; -} \ No newline at end of file diff --git a/view/css/mod_oauth2testvehicle.css b/view/css/mod_oauth2testvehicle.css new file mode 100644 index 000000000..0ef2896b5 --- /dev/null +++ b/view/css/mod_oauth2testvehicle.css @@ -0,0 +1,4 @@ +.oath2test-form-box { + border: #ccc thin solid; + padding: 1em; +} \ No newline at end of file diff --git a/view/tpl/oauth2test.tpl b/view/tpl/oauth2test.tpl deleted file mode 100644 index d4887063c..000000000 --- a/view/tpl/oauth2test.tpl +++ /dev/null @@ -1,13 +0,0 @@ -

OAuth 2.0 Test Vehicle

- -{{foreach $endpoints as $ept}} -
-
-

{{$ept.3}}

-

{{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}& {{/foreach}} -

- - -
-
-{{/foreach}} \ No newline at end of file diff --git a/view/tpl/oauth2testvehicle.tpl b/view/tpl/oauth2testvehicle.tpl new file mode 100644 index 000000000..d4887063c --- /dev/null +++ b/view/tpl/oauth2testvehicle.tpl @@ -0,0 +1,13 @@ +

OAuth 2.0 Test Vehicle

+ +{{foreach $endpoints as $ept}} +
+
+

{{$ept.3}}

+

{{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}& {{/foreach}} +

+ + +
+
+{{/foreach}} \ No newline at end of file -- cgit v1.2.3 From 43fca182e3915734587abf389d819546ebade3a4 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Thu, 22 Feb 2018 15:10:05 -0500 Subject: The authorization step with client registration and authorization code retrieval working. Might not conform perfectly to OAuth2 spec, but it is a start. --- view/tpl/oauth2testvehicle.tpl | 4 ++-- view/tpl/oauth_authorize.tpl | 16 +++++++++++----- 2 files changed, 13 insertions(+), 7 deletions(-) (limited to 'view') diff --git a/view/tpl/oauth2testvehicle.tpl b/view/tpl/oauth2testvehicle.tpl index d4887063c..aebc71bb2 100644 --- a/view/tpl/oauth2testvehicle.tpl +++ b/view/tpl/oauth2testvehicle.tpl @@ -2,9 +2,9 @@ {{foreach $endpoints as $ept}}
-
+

{{$ept.3}}

-

{{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}& {{/foreach}} +

{{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}&{{/foreach}}

diff --git a/view/tpl/oauth_authorize.tpl b/view/tpl/oauth_authorize.tpl index 2b7afa80e..f5da11cdc 100755 --- a/view/tpl/oauth_authorize.tpl +++ b/view/tpl/oauth_authorize.tpl @@ -3,8 +3,14 @@

{{$app.name}}

-
-

{{$authorize}}

- -
-
+

{{$authorize}}

+
+
+ + + + + +
+
+
\ No newline at end of file -- cgit v1.2.3 From 64ee42fc3d00765bc5c60e451b86230ea38ffdfb Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sat, 24 Feb 2018 06:48:30 -0500 Subject: Add channel ID to user_id in clients table. Added TODO comments about dynamic client registration protocol. --- view/tpl/oauth2testvehicle.tpl | 2 +- view/tpl/oauth_authorize.tpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/tpl/oauth2testvehicle.tpl b/view/tpl/oauth2testvehicle.tpl index aebc71bb2..18bbfb1ff 100644 --- a/view/tpl/oauth2testvehicle.tpl +++ b/view/tpl/oauth2testvehicle.tpl @@ -2,7 +2,7 @@ {{foreach $endpoints as $ept}}
-
+

{{$ept.3}}

{{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}&{{/foreach}}

diff --git a/view/tpl/oauth_authorize.tpl b/view/tpl/oauth_authorize.tpl index f5da11cdc..72701ce52 100755 --- a/view/tpl/oauth_authorize.tpl +++ b/view/tpl/oauth_authorize.tpl @@ -2,8 +2,8 @@
-

{{$app.name}}

-

{{$authorize}}

+

{{$app.name}}

+

{{$authorize}}

-- cgit v1.2.3 From 45e0fc6802b360710becf7ddaf6aed6a9de1d876 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Mon, 26 Feb 2018 18:16:43 -0500 Subject: Successful OAuth2 sequence demonstrated with the test vehicle, including an authenticated API call using an access_token. --- view/tpl/oauth2testvehicle.tpl | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'view') diff --git a/view/tpl/oauth2testvehicle.tpl b/view/tpl/oauth2testvehicle.tpl index 18bbfb1ff..ce46b58c0 100644 --- a/view/tpl/oauth2testvehicle.tpl +++ b/view/tpl/oauth2testvehicle.tpl @@ -4,10 +4,18 @@

{{$ept.3}}

-

{{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}&{{/foreach}} -

+ {{$baseurl}}/{{$ept.0}}/?{{foreach $ept.1 as $field}}{{$field.0}}={{$field.1}}&{{/foreach}} +
- +  
-{{/foreach}} \ No newline at end of file +{{/foreach}} +
+

API response

+
+	
+	{{$api_response}}
+	
+	
+
\ No newline at end of file -- cgit v1.2.3 From bab00731a8c156c5d88bc1fc8a5bf4803d8c2cae Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 1 Mar 2018 13:46:25 +0100 Subject: fix issues with accordions in settings and comment out jquery.textinputs.js --- view/php/theme_init.php | 2 +- view/tpl/generic_addon_settings.tpl | 4 ++-- view/tpl/settings.tpl | 16 ++++++++-------- view/tpl/settings_addons.tpl | 2 +- view/tpl/settings_display.tpl | 12 ++++++------ view/tpl/settings_features.tpl | 4 ++-- 6 files changed, 20 insertions(+), 20 deletions(-) (limited to 'view') diff --git a/view/php/theme_init.php b/view/php/theme_init.php index 1e066c570..f2c46da28 100644 --- a/view/php/theme_init.php +++ b/view/php/theme_init.php @@ -15,7 +15,7 @@ head_add_js('jquery.js'); head_add_js('/library/justifiedGallery/jquery.justifiedGallery.min.js'); head_add_js('/library/sprintf.js/dist/sprintf.min.js'); -head_add_js('jquery.textinputs.js'); +//head_add_js('jquery.textinputs.js'); head_add_js('autocomplete.js'); head_add_js('/library/jquery-textcomplete/jquery.textcomplete.js'); diff --git a/view/tpl/generic_addon_settings.tpl b/view/tpl/generic_addon_settings.tpl index bf39b2aea..57028237a 100644 --- a/view/tpl/generic_addon_settings.tpl +++ b/view/tpl/generic_addon_settings.tpl @@ -1,12 +1,12 @@
-
+
{{$content}} {{if $addon.0}} diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 0f42a6e8a..130dc6918 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -11,12 +11,12 @@
-
+
{{include file="field_input.tpl" field=$username}} {{include file="field_select_grouped.tpl" field=$timezone}} @@ -37,12 +37,12 @@
-
+
{{include file="field_select_grouped.tpl" field=$role}}
@@ -96,12 +96,12 @@
-
+
@@ -160,12 +160,12 @@
-
+
{{if $profselect}} diff --git a/view/tpl/settings_addons.tpl b/view/tpl/settings_addons.tpl index 2a925f1f7..27cfa238a 100755 --- a/view/tpl/settings_addons.tpl +++ b/view/tpl/settings_addons.tpl @@ -1,8 +1,8 @@
-
{{$descrip}}

{{$title}}

+
diff --git a/view/tpl/settings_display.tpl b/view/tpl/settings_display.tpl index b0751eb5f..7600038ea 100755 --- a/view/tpl/settings_display.tpl +++ b/view/tpl/settings_display.tpl @@ -10,12 +10,12 @@
-
+
{{if $theme}} {{include file="field_themeselect.tpl" field=$theme}} @@ -33,12 +33,12 @@
-
+
{{if $theme_config}} {{$theme_config}} @@ -49,12 +49,12 @@
-
+
{{include file="field_input.tpl" field=$ajaxint}} {{include file="field_input.tpl" field=$itemspage}} diff --git a/view/tpl/settings_features.tpl b/view/tpl/settings_features.tpl index dfe049a7a..f8c162e17 100755 --- a/view/tpl/settings_features.tpl +++ b/view/tpl/settings_features.tpl @@ -9,12 +9,12 @@
-
+
{{foreach $f.1 as $fcat}} {{include file="field_checkbox.tpl" field=$fcat}} -- cgit v1.2.3 From 3da9107354f601926505ba92b3e8970c08203081 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Thu, 1 Mar 2018 19:41:59 +0100 Subject: Updated Spanish translation (hmessages.po/php and register_verify_member.tpl). --- view/es-es/hmessages.po | 2861 ++++++++++++++++++--------------- view/es-es/hstrings.php | 119 +- view/es-es/register_verify_member.tpl | 2 +- 3 files changed, 1615 insertions(+), 1367 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 8f6b8cb4e..95d413461 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -6,7 +6,7 @@ # alfonsomthd , 2015 # inboxwall , 2015 # jeroenpraat , 2015 -# Manuel Jiménez Friaza , 2017 +# Manuel Jiménez Friaza , 2017-2018 # Manuel Jiménez Friaza , 2015-2017 # Rafael, 2015 # tony baldwin , 2014 @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-13 12:54+0100\n" -"PO-Revision-Date: 2017-12-16 09:43+0000\n" +"POT-Creation-Date: 2018-02-28 08:31+0100\n" +"PO-Revision-Date: 2018-03-01 11:07+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" @@ -153,13 +153,13 @@ msgid "Special - Group Repository" msgstr "Especial - Repositorio de grupo" #: ../../Zotlabs/Access/PermissionRoles.php:287 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Settings/Channel.php:474 -#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Register.php:221 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Settings/Channel.php:473 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:226 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1308 -#: ../../include/event.php:1315 ../../include/connections.php:689 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:689 #: ../../include/connections.php:696 msgid "Other" msgstr "Otro" @@ -173,7 +173,7 @@ msgstr "Modo personalizado/experto" #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:29 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 #: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1198 msgid "Requested profile is not available." msgstr "El perfil solicitado no está disponible." @@ -188,7 +188,7 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Appman.php:86 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Article_edit.php:51 #: ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/New_channel.php:102 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 #: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 @@ -200,11 +200,11 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 #: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:400 #: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../Zotlabs/Module/Profile_photo.php:307 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:228 -#: ../../Zotlabs/Module/Item.php:245 ../../Zotlabs/Module/Item.php:255 -#: ../../Zotlabs/Module/Item.php:1085 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1099 ../../Zotlabs/Module/Page.php:34 #: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 @@ -215,15 +215,15 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:68 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:184 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:404 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Display.php:405 ../../Zotlabs/Module/Network.php:15 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 @@ -233,7 +233,7 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:169 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 #: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 #: ../../addon/gitwiki/Mod_Gitwiki.php:196 #: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 @@ -241,9 +241,9 @@ msgstr "El perfil solicitado no está disponible." #: ../../include/attach.php:270 ../../include/attach.php:284 #: ../../include/attach.php:293 ../../include/attach.php:366 #: ../../include/attach.php:380 ../../include/attach.php:387 -#: ../../include/attach.php:469 ../../include/attach.php:1008 -#: ../../include/attach.php:1082 ../../include/attach.php:1247 -#: ../../include/items.php:3633 ../../include/photos.php:27 +#: ../../include/attach.php:469 ../../include/attach.php:1019 +#: ../../include/attach.php:1093 ../../include/attach.php:1258 +#: ../../include/items.php:3656 ../../include/photos.php:27 msgid "Permission denied." msgstr "Acceso denegado." @@ -252,7 +252,7 @@ msgstr "Acceso denegado." msgid "Block Name" msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2288 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2402 msgid "Blocks" msgstr "Bloques" @@ -271,11 +271,11 @@ msgid "Edited" msgstr "Editado" #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Cards.php:96 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:273 ../../Zotlabs/Storage/Browser.php:379 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" msgstr "Crear" @@ -285,15 +285,15 @@ msgstr "Crear" #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Settings/Oauth.php:149 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:260 -#: ../../Zotlabs/Module/Connections.php:297 -#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Connections.php:265 +#: ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Connections.php:323 ../../Zotlabs/Module/Wiki.php:202 #: ../../Zotlabs/Module/Wiki.php:358 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Layouts.php:193 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:399 -#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:288 #: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 #: ../../addon/gitwiki/Mod_Gitwiki.php:151 #: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1297 @@ -310,19 +310,19 @@ msgstr "Compartir" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 #: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 #: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Settings/Oauth.php:150 #: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:268 +#: ../../Zotlabs/Module/Connections.php:273 #: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 #: ../../Zotlabs/Module/Profiles.php:803 #: ../../Zotlabs/Module/Editwebpage.php:167 #: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:400 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:286 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 #: ../../include/conversation.php:690 ../../include/conversation.php:733 msgid "Delete" msgstr "Eliminar" @@ -352,6 +352,7 @@ msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." #: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Falló el envío del mensaje." @@ -412,35 +413,36 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Site.php:289 #: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Security.php:104 #: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Channel.php:489 +#: ../../Zotlabs/Module/Settings/Channel.php:488 #: ../../Zotlabs/Module/Settings/Features.php:47 #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:52 -#: ../../Zotlabs/Module/Settings/Display.php:209 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 #: ../../Zotlabs/Module/Settings/Oauth.php:87 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 #: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:345 #: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 #: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 #: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:39 #: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 #: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:754 +#: ../../Zotlabs/Lib/ThreadItem.php:750 #: ../../Zotlabs/Widget/Eventstools.php:16 #: ../../Zotlabs/Widget/Wiki_pages.php:40 #: ../../Zotlabs/Widget/Wiki_pages.php:97 @@ -454,7 +456,7 @@ msgstr "3. Pulse [conectar]" #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 #: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 #: ../../addon/gitwiki/Mod_Gitwiki.php:155 #: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 #: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 @@ -463,14 +465,14 @@ msgstr "3. Pulse [conectar]" #: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 #: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 #: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:96 ../../addon/pubcrawl/pubcrawl.php:1053 +#: ../../addon/frphotos/frphotos.php:96 ../../addon/pubcrawl/pubcrawl.php:1054 #: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 #: ../../addon/flattrwidget/flattrwidget.php:124 #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 #: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:217 -#: ../../addon/twitter/twitter.php:259 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 #: ../../addon/smileybutton/smileybutton.php:219 #: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 #: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 @@ -479,21 +481,16 @@ msgstr "3. Pulse [conectar]" msgid "Submit" msgstr "Enviar" -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Cards.php:38 -#: ../../Zotlabs/Module/Cards.php:178 ../../Zotlabs/Lib/Apps.php:224 -#: ../../include/conversation.php:1890 ../../include/features.php:122 -#: ../../include/nav.php:490 -msgid "Cards" -msgstr "Fichas" +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:179 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:132 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Artículos" #: ../../Zotlabs/Module/Articles.php:95 msgid "Add Article" msgstr "Añadir un artículo" -#: ../../Zotlabs/Module/Articles.php:178 ../../include/nav.php:501 -msgid "Articles" -msgstr "Artículos" - #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 @@ -522,7 +519,7 @@ msgstr "Modificar la plantilla" #: ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Cloud.php:111 ../../Zotlabs/Module/Group.php:74 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:295 ../../Zotlabs/Web/WebServer.php:168 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 #: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 #: ../../addon/frphotos/frphotos.php:81 ../../addon/redfiles/redfiles.php:109 #: ../../include/items.php:358 @@ -537,7 +534,7 @@ msgstr "Identificador del perfil no válido" msgid "Profile Visibility Editor" msgstr "Editor de visibilidad del perfil" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1633 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1634 msgid "Profile" msgstr "Perfil" @@ -565,9 +562,9 @@ msgstr "Resumen: " #: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 #: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 #: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:744 ../../Zotlabs/Lib/Apps.php:822 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:832 #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:842 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:853 #: ../../include/conversation.php:1160 msgid "Unknown" msgstr "Desconocido" @@ -680,10 +677,12 @@ msgstr "Eliminar todos" #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 #: ../../Zotlabs/Module/Wiki.php:345 ../../Zotlabs/Module/Wiki.php:375 -#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 #: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1386 #: ../../include/conversation.php:1435 msgid "Cancel" @@ -698,85 +697,85 @@ msgstr "¡Disculpas! La edición de eventos recurrentes aún no se ha implementa #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 #: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:280 +#: ../../Zotlabs/Storage/Browser.php:283 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 #: ../../addon/gitwiki/Mod_Gitwiki.php:158 msgid "Name" msgstr "Nombre" -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 msgid "Organisation" msgstr "Organización" -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 msgid "Title" msgstr "Título" -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Phone" msgstr "Teléfono" #: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:928 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:790 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1775 msgid "Email" msgstr "Correo electrónico" -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Instant messenger" msgstr "Mensajería instantánea" -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Website" msgstr "Sitio web" #: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Address" msgstr "Dirección" -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Note" msgstr "Nota" -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1301 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1308 #: ../../include/connections.php:682 msgid "Mobile" msgstr "Móvil" -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1302 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1309 #: ../../include/connections.php:683 msgid "Home" msgstr "Inicio" -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1305 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1312 #: ../../include/connections.php:686 msgid "Work" msgstr "Trabajo" -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 #: ../../Zotlabs/Module/Profiles.php:799 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "Añadir un contacto" -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 #: ../../Zotlabs/Module/Profiles.php:800 msgid "Add Field" msgstr "Añadir un campo" @@ -785,36 +784,36 @@ msgstr "Añadir un campo" #: ../../Zotlabs/Module/Admin/Plugins.php:453 #: ../../Zotlabs/Module/Settings/Oauth.php:42 #: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:393 msgid "Update" msgstr "Actualizar" -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:943 +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 msgid "P.O. Box" msgstr "Buzón de correos" -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:944 +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 msgid "Additional" msgstr "Adicional" -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 msgid "Street" msgstr "Calle" -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:946 +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 msgid "Locality" msgstr "Localidad" -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:947 +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 msgid "Region" msgstr "Provincia, región o estado" -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 msgid "ZIP Code" msgstr "Código postal" -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:949 +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 #: ../../Zotlabs/Module/Profiles.php:760 msgid "Country" msgstr "País" @@ -832,7 +831,7 @@ msgid "This site is not a directory server" msgstr "Este sitio no es un servidor de directorio" #: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:431 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:508 msgid "You must be logged in to see this page." msgstr "Debe haber iniciado sesión para poder ver esta página." @@ -908,9 +907,13 @@ msgid "" " 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/Hq.php:136 -msgid "Welcome to hubzilla!" -msgstr "¡Bienvenido o bienvenida a Hubzilla!" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "¡Bienvenido a Hubzilla!" + +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "No tiene ningún mensaje sin leer..." #: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 @@ -919,25 +922,25 @@ msgstr "¡Bienvenido o bienvenida a Hubzilla!" msgid "Public access denied." msgstr "Acceso público denegado." -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:313 -#: ../../Zotlabs/Lib/Apps.php:250 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1029 ../../include/text.php:1041 -#: ../../include/acl_selectors.php:213 ../../include/nav.php:211 +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 msgid "Search" msgstr "Buscar" -#: ../../Zotlabs/Module/Search.php:225 +#: ../../Zotlabs/Module/Search.php:226 #, php-format msgid "Items tagged with: %s" msgstr "elementos etiquetados con: %s" -#: ../../Zotlabs/Module/Search.php:227 +#: ../../Zotlabs/Module/Search.php:228 #, php-format msgid "Search results for: %s" msgstr "Resultados de la búsqueda para: %s" -#: ../../Zotlabs/Module/Pubstream.php:81 -#: ../../Zotlabs/Widget/Notifications.php:129 +#: ../../Zotlabs/Module/Pubstream.php:93 +#: ../../Zotlabs/Widget/Notifications.php:131 msgid "Public Stream" msgstr "\"Stream\" público" @@ -1037,7 +1040,7 @@ 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:522 +#: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "(click to open/close)" msgstr "(pulsar para abrir o cerrar)" @@ -1061,17 +1064,17 @@ msgstr "Usar la autenticación mágica si está disponible" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:240 +#: ../../Zotlabs/Module/Admin/Site.php:252 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 #: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 #: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1096,8 +1099,8 @@ msgstr "Usar la autenticación mágica si está disponible" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1112,17 +1115,17 @@ msgstr "No" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:242 +#: ../../Zotlabs/Module/Admin/Site.php:254 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 #: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 #: ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1147,8 +1150,8 @@ msgstr "No" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1265,8 +1268,8 @@ msgid "Event not found." msgstr "Evento no encontrado." #: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:384 ../../include/conversation.php:119 -#: ../../include/text.php:1941 ../../include/event.php:1153 +#: ../../Zotlabs/Module/Like.php:385 ../../include/conversation.php:119 +#: ../../include/text.php:2007 ../../include/event.php:1153 msgid "event" msgstr "evento" @@ -1277,7 +1280,7 @@ msgstr "Editar el título del evento" #: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 #: ../../Zotlabs/Module/Appman.php:140 ../../Zotlabs/Module/Appman.php:141 #: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 -#: ../../include/datetime.php:265 +#: ../../include/datetime.php:205 msgid "Required" msgstr "Obligatorio" @@ -1328,7 +1331,7 @@ msgid "Edit Location" msgstr "Modificar la dirección" #: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:764 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:760 #: ../../include/conversation.php:1330 msgid "Preview" msgstr "Previsualizar" @@ -1358,7 +1361,7 @@ msgid "Delete event" msgstr "Borrar evento" #: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1760 +#: ../../include/text.php:1826 msgid "Link to Source" msgstr "Enlazar con la entrada en su ubicación original" @@ -1375,7 +1378,7 @@ msgid "Create Event" msgstr "Crear un evento" #: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1636 +#: ../../include/channel.php:1637 msgid "Export" msgstr "Exportar" @@ -1448,16 +1451,16 @@ msgid "Hub not found." msgstr "Servidor no encontrado" #: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:382 +#: ../../Zotlabs/Module/Like.php:383 #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:116 ../../include/text.php:1938 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:116 ../../include/text.php:2004 msgid "photo" msgstr "foto" -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:382 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:144 ../../include/text.php:1944 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:383 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:144 ../../include/text.php:2010 msgid "status" msgstr "el mensaje de estado" @@ -1534,66 +1537,70 @@ msgstr "Utilice este formulario para importar entradas existentes y contenido de msgid "File to Upload" msgstr "Fichero para subir" -#: ../../Zotlabs/Module/New_channel.php:121 +#: ../../Zotlabs/Module/New_channel.php:119 #: ../../Zotlabs/Module/Manage.php:138 #, 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/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:256 msgid "Name or caption" msgstr "Nombre o descripción" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:256 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/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:258 msgid "Choose a short nickname" msgstr "Elija un alias corto" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:258 #, 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/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:259 msgid "Channel role and privacy" msgstr "Clase de canal y privacidad" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:259 msgid "Select a channel role with your privacy requirements." msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:259 msgid "Read more about roles" msgstr "Leer más sobre los roles" -#: ../../Zotlabs/Module/New_channel.php:140 +#: ../../Zotlabs/Module/New_channel.php:138 msgid "Create Channel" msgstr "Crear un canal" -#: ../../Zotlabs/Module/New_channel.php:141 +#: ../../Zotlabs/Module/New_channel.php:139 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:142 +#: ../../Zotlabs/Module/New_channel.php:140 msgid "" "or import an existing channel from another location." msgstr "O importar un canal existente desde otro lugar." +#: ../../Zotlabs/Module/New_channel.php:145 +msgid "Validate" +msgstr "Validar" + #: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -1636,7 +1643,7 @@ msgid "" msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "Remove Channel" msgstr "Eliminar el canal" @@ -1649,12 +1656,12 @@ msgid "NEW" msgstr "NUEVO" #: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:282 ../../include/text.php:1394 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 msgid "Size" msgstr "Tamaño" #: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Storage/Browser.php:286 msgid "Last Modified" msgstr "Última modificación" @@ -2204,30 +2211,26 @@ msgstr "Gestionar las funcionalidades" msgid "Update has been marked successful" msgstr "La actualización ha sido marcada como exitosa" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 #, 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/Dbsync.php:32 +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 #, php-format msgid "Update %s was successfully applied." msgstr "La actualización de %s se ha realizado exitosamente." -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 #, 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/Dbsync.php:39 +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 #, 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/Dbsync.php:55 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." - #: ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Failed Updates" msgstr "Han fallado las actualizaciones" @@ -2240,12 +2243,16 @@ msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" msgid "Attempt to execute this update step automatically" msgstr "Intentar ejecutar este paso de actualización automáticamente" +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "No ha fallado ninguna actualización." + #: ../../Zotlabs/Module/Admin/Plugins.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:408 +#: ../../Zotlabs/Module/Display.php:409 #: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3546 +#: ../../include/items.php:3569 msgid "Item not found." msgstr "Elemento no encontrado." @@ -2271,12 +2278,12 @@ msgstr "Activar" #: ../../Zotlabs/Module/Admin/Plugins.php:341 #: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:164 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:275 +#: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../Zotlabs/Module/Admin/Security.php:86 #: ../../Zotlabs/Module/Admin.php:136 msgid "Administration" @@ -2294,9 +2301,9 @@ msgid "Toggle" msgstr "Cambiar" #: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:139 -#: ../../include/nav.php:224 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:105 +#: ../../include/nav.php:192 msgid "Settings" msgstr "Ajustes" @@ -2359,7 +2366,7 @@ msgstr "Descargar el repositorio" msgid "Install new repo" msgstr "Instalar un nuevo repositorio" -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 msgid "Install" msgstr "Instalar" @@ -2385,112 +2392,112 @@ msgstr "Cambiar la rama" msgid "Remove" msgstr "Eliminar" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#: ../../Zotlabs/Module/Admin/Accounts.php:37 #, php-format msgid "%s account blocked/unblocked" msgid_plural "%s account blocked/unblocked" msgstr[0] "%s cuenta bloqueada/desbloqueada" msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:43 +#: ../../Zotlabs/Module/Admin/Accounts.php:44 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s cuentas eliminadas" msgstr[1] "%s cuentas eliminadas" -#: ../../Zotlabs/Module/Admin/Accounts.php:79 +#: ../../Zotlabs/Module/Admin/Accounts.php:80 msgid "Account not found" msgstr "Cuenta no encontrada" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 ../../include/channel.php:2456 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2462 #, php-format msgid "Account '%s' deleted" msgstr "La cuenta '%s' ha sido eliminada" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:99 #, php-format msgid "Account '%s' blocked" msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#: ../../Zotlabs/Module/Admin/Accounts.php:107 #, php-format msgid "Account '%s' unblocked" msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 #: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 msgid "Accounts" msgstr "Cuentas" -#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Channels.php:148 msgid "select all" msgstr "seleccionar todo" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Accounts.php:169 msgid "Registrations waiting for confirm" msgstr "Inscripciones en espera de confirmación" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 msgid "Request date" msgstr "Fecha de solicitud" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "No registrations." msgstr "Sin registros." -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:732 +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:287 ../../include/conversation.php:732 msgid "Approve" msgstr "Aprobar" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 msgid "Deny" msgstr "Rechazar" -#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Block" msgstr "Bloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Accounts.php:176 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Unblock" msgstr "Desbloquear" -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:181 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/group.php:284 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:284 msgid "All Channels" msgstr "Todos los canales" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 msgid "Register date" msgstr "Fecha de registro" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 +#: ../../Zotlabs/Module/Admin/Accounts.php:185 msgid "Last login" msgstr "Último acceso" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:186 msgid "Expires" msgstr "Caduca" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:187 msgid "Service Class" msgstr "Clase de servicio" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 +#: ../../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 "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../Zotlabs/Module/Admin/Accounts.php:189 +#: ../../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?" @@ -2599,7 +2606,7 @@ msgid "Disallow Code" msgstr "No permitir código" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1808 ../../include/nav.php:410 +#: ../../include/conversation.php:1808 ../../include/nav.php:378 msgid "Channel" msgstr "Canal" @@ -2644,415 +2651,472 @@ msgstr "[Experimental]" msgid "[Unsupported]" msgstr "[No soportado]" -#: ../../Zotlabs/Module/Admin/Site.php:147 +#: ../../Zotlabs/Module/Admin/Site.php:158 msgid "Site settings updated." msgstr "Ajustes del sitio actualizados." -#: ../../Zotlabs/Module/Admin/Site.php:173 +#: ../../Zotlabs/Module/Admin/Site.php:184 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2968 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3082 msgid "Default" msgstr "Predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:184 -#: ../../Zotlabs/Module/Settings/Display.php:139 +#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Settings/Display.php:130 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Incompatible)" -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../Zotlabs/Module/Settings/Display.php:153 +#: ../../Zotlabs/Module/Admin/Site.php:202 msgid "mobile" msgstr "móvil" -#: ../../Zotlabs/Module/Admin/Site.php:193 +#: ../../Zotlabs/Module/Admin/Site.php:204 msgid "experimental" msgstr "experimental" -#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Admin/Site.php:206 msgid "unsupported" msgstr "no soportado" -#: ../../Zotlabs/Module/Admin/Site.php:241 +#: ../../Zotlabs/Module/Admin/Site.php:253 msgid "Yes - with approval" msgstr "Sí - con aprobación" -#: ../../Zotlabs/Module/Admin/Site.php:247 +#: ../../Zotlabs/Module/Admin/Site.php:259 msgid "My site is not a public server" msgstr "Mi sitio no es un servidor público" -#: ../../Zotlabs/Module/Admin/Site.php:248 +#: ../../Zotlabs/Module/Admin/Site.php:260 msgid "My site has paid access only" msgstr "Mi sitio es un servicio de pago" -#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Admin/Site.php:261 msgid "My site has free access only" msgstr "Mi sitio es un servicio gratuito" -#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Admin/Site.php:262 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:262 +#: ../../Zotlabs/Module/Admin/Site.php:274 msgid "Beginner/Basic" msgstr "Principiante / Básico" -#: ../../Zotlabs/Module/Admin/Site.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:275 msgid "Novice - not skilled but willing to learn" msgstr "Novato: no cualificado, pero dispuesto a aprender" -#: ../../Zotlabs/Module/Admin/Site.php:264 +#: ../../Zotlabs/Module/Admin/Site.php:276 msgid "Intermediate - somewhat comfortable" msgstr "Intermedio: bastante cómodo" -#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Site.php:277 msgid "Advanced - very comfortable" msgstr "Avanzado: muy cómodo" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:278 msgid "Expert - I can write computer code" msgstr "Experto: puedo escribir código informático" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:279 msgid "Wizard - I probably know more than you do" msgstr "Colaborador: probablemente sé más que tú" -#: ../../Zotlabs/Module/Admin/Site.php:276 ../../Zotlabs/Widget/Admin.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "Sitio" -#: ../../Zotlabs/Module/Admin/Site.php:278 -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:271 msgid "Registration" msgstr "Registro" -#: ../../Zotlabs/Module/Admin/Site.php:279 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "File upload" msgstr "Subir fichero" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Policies" msgstr "Políticas" -#: ../../Zotlabs/Module/Admin/Site.php:281 +#: ../../Zotlabs/Module/Admin/Site.php:293 #: ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Avanzado" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:297 #: ../../addon/statusnet/statusnet.php:891 msgid "Site name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Site default technical skill level" msgstr "Nivel de habilidad técnica predeterminado del sitio" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Used to provide a member experience matched to technical comfort level" msgstr "Se utiliza para proporcionar una experiencia a los miembros adaptada a su nivel de comodidad técnica" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Lock the technical skill level setting" msgstr "Bloquear el ajuste del nivel de habilidad técnica" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Members can set their own technical comfort level by default" msgstr "Los miembros pueden configurar su nivel de comodidad técnica por defecto" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Se permite HTML/CSS/JS sin filtrar" + +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Administrator Information" msgstr "Información del Administrador" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:293 -#: ../../Zotlabs/Module/Siteinfo.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Siteinfo.php:21 msgid "Site Information" msgstr "Información sobre el sitio" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Descripción pública de este sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "System language" msgstr "Idioma del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "System theme" msgstr "Tema gráfico del sistema" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Mobile system theme" msgstr "Tema del sistema para móviles" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Theme for mobile devices" msgstr "Tema para dispositivos móviles" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Allow Feeds as Connections" msgstr "Permitir contenidos RSS como conexiones" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "(Heavy system resource usage)" msgstr "(Uso intenso de los recursos del sistema)" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Maximum image size" msgstr "Tamaño máximo de la imagen" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Does this site allow new member registration?" msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "Invitation only" msgstr "Solo con una invitación" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age" +msgstr "Edad mínima" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Edad mínima (en años) para poder registrarse en este sitio." + +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Which best describes the types of account offered by this hub?" msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Register text" msgstr "Texto del registro" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Will be displayed prominently on the registration page." msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Site homepage to show visitors (default: login box)" msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Preserve site homepage URL" msgstr "Preservar la dirección de la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Accounts abandoned after x days" msgstr "Cuentas abandonadas después de x días" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Allowed friend domains" msgstr "Dominios amigos permitidos" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Verify Email Addresses" msgstr "Verificar las direcciones de correo electrónico" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Force publish" msgstr "Forzar la publicación" -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Import Public Streams" msgstr "Importar contenido público" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site only Public Streams" +msgstr "Solo contenido público en este sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado." + +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Login on Homepage" msgstr "Iniciar sesión en la página personal" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Enable context help" msgstr "Habilitar la ayuda contextual" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "Reply-to email address for system generated email." msgstr "Dirección de respuesta para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Sender (From) email address for system generated email." msgstr "Dirección del remitente (From) para el correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Name of email sender for system generated email." msgstr "Nombre del remitente del correo electrónico generado por el sistema." -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Directory Server URL" msgstr "URL del servidor de directorio" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Default directory server" msgstr "Servidor de directorio predeterminado" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:335 msgid "Proxy user" msgstr "Usuario del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:336 msgid "Proxy URL" msgstr "Dirección del proxy" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Network timeout" msgstr "Tiempo de espera de la red" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Delivery interval" msgstr "Intervalo de entrega" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "Deliveries per process" msgstr "Intentos de envío por proceso" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "Queue Threshold" msgstr "Umbral de la cola de espera" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Aplazar siempre la entrega inmediata si la cola contiene más de este número de entradas." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "Poll interval" msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "Path to ImageMagick convert program" msgstr "Ruta al programa de conversión de ImageMagick" -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" msgstr "Si está configurado, utilice este programa para generar miniaturas de fotos para imágenes de gran tamaño ( > 4000 píxeles en cualquiera de las dos dimensiones), de lo contrario se puede agotar la memoria. Ejemplo: /usr/bin/convert" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "Allow SVG thumbnails in file browser" msgstr "Permitir miniaturas SVG en el navegador de archivos" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "WARNING: SVG images may contain malicious code." msgstr "ADVERTENCIA: Las imágenes SVG pueden contener código malicioso." -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Maximum Load Average" msgstr "Carga media máxima" -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Expiration period in days for imported (grid/network) content" msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "0 for no expiration of imported content" msgstr "0 para que no caduque el contenido importado" +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Crear esta página primero. Por defecto es %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Page to display after creating a new channel" +msgstr "Página a mostrar después de la creación de un nuevo canal" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Recommend: profiles, go, or settings" +msgstr "Recomendar: perfiles, ir, o ajustes" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Optional: site location" +msgstr "Opcional: ubicación del sitio" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Region or country" +msgstr "Región o país" + #: ../../Zotlabs/Module/Admin/Profs.php:69 msgid "New Profile Field" msgstr "Nuevo campo en el perfil" @@ -3095,8 +3159,8 @@ msgstr "Información adicional (opcional)" #: ../../Zotlabs/Module/Admin/Profs.php:74 #: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1030 -#: ../../include/text.php:1042 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 msgid "Save" msgstr "Guardar" @@ -3295,7 +3359,7 @@ msgid "Visible to:" msgstr "Visible para:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:118 ../../include/acl_selectors.php:183 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "Perfil" @@ -3328,25 +3392,25 @@ msgstr "Nombre de la autorización" #: ../../Zotlabs/Module/Settings/Permcats.php:103 #: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:250 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 msgid "My Settings" msgstr "Mis ajustes" #: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:248 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 msgid "inherited" msgstr "heredado" #: ../../Zotlabs/Module/Settings/Permcats.php:108 #: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:253 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 msgid "Individual Permissions" msgstr "Permisos individuales" #: ../../Zotlabs/Module/Settings/Permcats.php:109 #: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Connedit.php:894 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -3359,7 +3423,7 @@ msgstr "Algunos permisos pueden ser heredados de los extremely permissive (should be used with caution)" msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Channel.php:510 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/Channel.php:512 +#: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Private - default private, never open or public" msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:512 msgid "Blocked - default blocked to/from everybody" msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "Allow others to tag your posts" msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 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/Channel.php:517 +#: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Channel Permission Limits" msgstr "Límites de los permisos del canal" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 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/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 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/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 #, php-format msgid "This website expires after %d days." msgstr "Este sitio web caduca después de %d días." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "This website does not expire imported content." msgstr "Este sitio web no caduca el contenido importado." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 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/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Maximum Friend Requests/Day:" msgstr "Máximo de solicitudes de amistad por día:" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "May reduce spam activity" msgstr "Podría reducir la actividad de spam" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:520 msgid "Default Privacy Group" msgstr "Grupo de canales predeterminado" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:522 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/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Profile to assign new connections" msgstr "Perfil para asignar a las nuevas conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "Channel permissions category:" msgstr "Categoría de los permisos del canal:" -#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "Default Permissions Group" msgstr "Grupo de permisos predeterminados" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Maximum private messages per day from unknown people:" msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Useful to reduce spamming" msgstr "Útil para reducir el envío de correo no deseado" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Configuración de las notificaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:543 msgid "By default post a status message when:" msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "accepting a friend request" msgstr "Acepte una solicitud de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "joining a forum/community" msgstr "al unirse a un foro o comunidad" -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "making an interesting profile change" msgstr "Realice un cambio interesante en su perfil" -#: ../../Zotlabs/Module/Settings/Channel.php:548 +#: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "Send a notification email when:" msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "You receive a connection request" msgstr "Reciba una solicitud de conexión" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "Your connections are confirmed" msgstr "Sus conexiones hayan sido confirmadas" -#: ../../Zotlabs/Module/Settings/Channel.php:551 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Someone writes on your profile wall" msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../Zotlabs/Module/Settings/Channel.php:552 +#: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "Someone writes a followup comment" msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../Zotlabs/Module/Settings/Channel.php:553 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "You receive a private message" msgstr "Reciba un mensaje privado" -#: ../../Zotlabs/Module/Settings/Channel.php:554 +#: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "You receive a friend suggestion" msgstr "Reciba una sugerencia de amistad" -#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "You are tagged in a post" msgstr "Usted sea etiquetado en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You are poked/prodded/etc. in a post" msgstr "Reciba un toque o incitación en una publicación" -#: ../../Zotlabs/Module/Settings/Channel.php:558 +#: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "Someone likes your post/comment" msgstr "Alguien muestre agrado por su entrada o comentario" -#: ../../Zotlabs/Module/Settings/Channel.php:561 +#: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Show visual notifications including:" msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../Zotlabs/Module/Settings/Channel.php:563 +#: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Unseen grid activity" msgstr "Nueva actividad en la red" -#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Unseen channel activity" msgstr "Actividad no vista en el canal" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 msgid "Unseen private messages" msgstr "Mensajes privados no leídos" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:569 #: ../../Zotlabs/Module/Settings/Channel.php:570 #: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:572 #: ../../addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "Recomendado" -#: ../../Zotlabs/Module/Settings/Channel.php:566 +#: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Upcoming events" msgstr "Próximos eventos" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "Events today" msgstr "Eventos de hoy" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Upcoming birthdays" msgstr "Próximos cumpleaños" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Not available in all themes" msgstr "No disponible en todos los temas" -#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "System (personal) notifications" msgstr "Notificaciones del sistema (personales)" -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "System info messages" msgstr "Mensajes de información del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "System critical alerts" msgstr "Alertas críticas del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "New connections" msgstr "Nuevas conexiones" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "System Registrations" msgstr "Registros del sistema" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "Unseen shared files" msgstr "Ficheros compartidos no vistos" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "Unseen public activity" msgstr "Actividad pública no vista" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "Email notification hub (hostname)" msgstr "Email de notificación del hub (nombre del host)" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "Si su canal está replicado en múltiples hubs, colóquelo en su ubicación preferida. Esto evitará la duplicación de notificaciones por correo electrónico. Ejemplo: %s" -#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:576 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/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 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/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Must be greater than 0" msgstr "Debe ser mayor que 0" -#: ../../Zotlabs/Module/Settings/Channel.php:585 +#: ../../Zotlabs/Module/Settings/Channel.php:584 msgid "Advanced Account/Page Type Settings" msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Change the behaviour of this account for special situations" msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:587 msgid "Miscellaneous Settings" msgstr "Ajustes diversos" -#: ../../Zotlabs/Module/Settings/Channel.php:589 +#: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Default photo upload folder" msgstr "Carpeta por defecto de las fotos subidas" +#: ../../Zotlabs/Module/Settings/Channel.php:588 #: ../../Zotlabs/Module/Settings/Channel.php:589 -#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "%Y - current year, %m - current month" msgstr "%Y - año en curso, %m - mes actual" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Default file upload folder" msgstr "Carpeta por defecto de los ficheros subidos" -#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:591 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/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Remove this channel." msgstr "Eliminar este canal." -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "Firefox Share $Projectname provider" msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Start calendar week on Monday" msgstr "Comenzar el calendario semanal por el lunes" @@ -3824,7 +3887,7 @@ msgid "Expires (yyyy-mm-dd)" msgstr "Expira (aaaa-mm-dd)" #: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Connedit.php:890 msgid "Their Settings" msgstr "Sus ajustes" @@ -3889,8 +3952,10 @@ msgid "Your technical skill level" msgstr "Su nivel de habilidad técnica" #: ../../Zotlabs/Module/Settings/Account.php:116 -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" +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad" #: ../../Zotlabs/Module/Settings/Account.php:120 #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -3901,148 +3966,148 @@ msgstr "Eliminar cuenta" msgid "Remove this account including all its channels" msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../Zotlabs/Module/Settings/Featured.php:21 +#: ../../Zotlabs/Module/Settings/Featured.php:23 msgid "Affinity Slider settings updated." msgstr "Se han actualizado los ajustes del controlador de afinidad." -#: ../../Zotlabs/Module/Settings/Featured.php:36 +#: ../../Zotlabs/Module/Settings/Featured.php:38 msgid "No feature settings configured" msgstr "No se ha establecido la configuración de los complementos" -#: ../../Zotlabs/Module/Settings/Featured.php:43 +#: ../../Zotlabs/Module/Settings/Featured.php:45 msgid "Default maximum affinity level" msgstr "Nivel máximo de afinidad por defecto" -#: ../../Zotlabs/Module/Settings/Featured.php:48 +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 por defecto 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 msgid "Default minimum affinity level" msgstr "Nivel mínimo de afinidad por defecto" -#: ../../Zotlabs/Module/Settings/Featured.php:52 +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 - por defecto 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 msgid "Affinity Slider Settings" msgstr "Ajustes del controlador de afinidad" -#: ../../Zotlabs/Module/Settings/Featured.php:62 +#: ../../Zotlabs/Module/Settings/Featured.php:64 msgid "Feature/Addon Settings" msgstr "Ajustes de los complementos" -#: ../../Zotlabs/Module/Settings/Display.php:147 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" - -#: ../../Zotlabs/Module/Settings/Display.php:150 +#: ../../Zotlabs/Module/Settings/Display.php:139 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Experimental)" -#: ../../Zotlabs/Module/Settings/Display.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:187 msgid "Display Settings" msgstr "Ajustes de visualización" -#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Module/Settings/Display.php:188 msgid "Theme Settings" msgstr "Ajustes del tema" -#: ../../Zotlabs/Module/Settings/Display.php:206 +#: ../../Zotlabs/Module/Settings/Display.php:189 msgid "Custom Theme Settings" msgstr "Ajustes personalizados del tema" -#: ../../Zotlabs/Module/Settings/Display.php:207 +#: ../../Zotlabs/Module/Settings/Display.php:190 msgid "Content Settings" msgstr "Ajustes del contenido" -#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:196 msgid "Display Theme:" msgstr "Tema gráfico del perfil:" -#: ../../Zotlabs/Module/Settings/Display.php:214 +#: ../../Zotlabs/Module/Settings/Display.php:197 msgid "Select scheme" msgstr "Elegir un esquema" -#: ../../Zotlabs/Module/Settings/Display.php:216 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" - -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Preload images before rendering the page" msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../Zotlabs/Module/Settings/Display.php:218 +#: ../../Zotlabs/Module/Settings/Display.php:200 msgid "Enable user zoom on mobile devices" msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Update browser every xx seconds" msgstr "Actualizar navegador cada xx segundos" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Minimum of 10 seconds, no maximum" msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum number of conversations to load at any time:" msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum of 100 items" msgstr "Máximo de 100 elementos" -#: ../../Zotlabs/Module/Settings/Display.php:221 +#: ../../Zotlabs/Module/Settings/Display.php:203 msgid "Show emoticons (smilies) as images" msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Provide channel menu in navigation bar" msgstr "Proporcionar un menú de canales en la barra de navegación" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Default: channel menu located in app menu" msgstr "Predeterminado: menú de canales ubicado en el menú de aplicaciones" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Manual conversation updates" msgstr "Actualizaciones manuales de la conversación" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Default is on, turning this off may increase screen jumping" msgstr "El valor predeterminado está activado, al desactivarlo puede aumentar el salto de pantalla" -#: ../../Zotlabs/Module/Settings/Display.php:224 +#: ../../Zotlabs/Module/Settings/Display.php:206 msgid "Link post titles to source" msgstr "Enlazar título de la publicación a la fuente original" -#: ../../Zotlabs/Module/Settings/Display.php:225 +#: ../../Zotlabs/Module/Settings/Display.php:207 msgid "System Page Layout Editor - (advanced)" msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../Zotlabs/Module/Settings/Display.php:228 +#: ../../Zotlabs/Module/Settings/Display.php:210 msgid "Use blog/list mode on channel page" msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../Zotlabs/Module/Settings/Display.php:228 -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "(comments displayed separately)" msgstr "(comentarios mostrados de forma separada)" -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "Use blog/list mode on grid page" msgstr "Mostrar mi red en modo blog" -#: ../../Zotlabs/Module/Settings/Display.php:230 +#: ../../Zotlabs/Module/Settings/Display.php:212 msgid "Channel page max height of content (in pixels)" msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../Zotlabs/Module/Settings/Display.php:230 -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "click to expand content exceeding this height" msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "Grid page max height of content (in pixels)" msgstr "Altura máxima del contenido de mi red (en píxeles)" @@ -4066,7 +4131,7 @@ msgstr "Nombre de la aplicación" #: ../../Zotlabs/Module/Settings/Oauth.php:90 #: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:775 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 msgid "Consumer Key" msgstr "Consumer Key" @@ -4077,7 +4142,7 @@ msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 2 #: ../../Zotlabs/Module/Settings/Oauth.php:91 #: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:776 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 msgid "Consumer Secret" msgstr "Consumer Secret" @@ -4137,9 +4202,9 @@ msgstr "Editar álbum" #: ../../Zotlabs/Module/Embedphotos.php:158 #: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Photos.php:844 #: ../../Zotlabs/Module/Photos.php:1381 -#: ../../Zotlabs/Module/Profile_photo.php:437 +#: ../../Zotlabs/Module/Profile_photo.php:458 #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Storage/Browser.php:274 ../../Zotlabs/Storage/Browser.php:381 +#: ../../Zotlabs/Storage/Browser.php:277 ../../Zotlabs/Storage/Browser.php:384 #: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 #: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 msgid "Upload" @@ -4206,7 +4271,7 @@ msgstr "Dirección para la foto o elemento (opcional)" #: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 #: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 #: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:218 +#: ../../include/acl_selectors.php:123 msgid "Permissions" msgstr "Permisos" @@ -4303,16 +4368,16 @@ msgstr "Este proceso puede tardar varios minutos en completarse. Por favor enví msgid "Authentication failed." msgstr "Falló la autenticación." -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1665 -#: ../../include/channel.php:2301 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1583 +#: ../../include/channel.php:2307 msgid "Remote Authentication" msgstr "Acceso desde su servidor" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2302 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2308 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2303 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2309 msgid "Authenticate" msgstr "Acceder" @@ -4320,23 +4385,23 @@ msgstr "Acceder" msgid "Permissions denied." msgstr "Permisos denegados." -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2312 +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2426 msgid "Import" msgstr "Importar" -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 msgid "Authorize application connection" msgstr "Autorizar una conexión de aplicación" -#: ../../Zotlabs/Module/Api.php:73 +#: ../../Zotlabs/Module/Api.php:75 msgid "Return to your app and insert this Security Code:" msgstr "Vuelva a su aplicación e introduzca este código de seguridad: " -#: ../../Zotlabs/Module/Api.php:83 +#: ../../Zotlabs/Module/Api.php:85 msgid "Please login to continue." msgstr "Por favor inicie sesión para continuar." -#: ../../Zotlabs/Module/Api.php:95 +#: ../../Zotlabs/Module/Api.php:97 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -4354,15 +4419,15 @@ msgstr "Modificar este bloque" msgid "vcard" msgstr "vcard" -#: ../../Zotlabs/Module/Apps.php:47 ../../Zotlabs/Lib/Apps.php:223 +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 msgid "Apps" msgstr "Aplicaciones (apps)" -#: ../../Zotlabs/Module/Apps.php:50 +#: ../../Zotlabs/Module/Apps.php:51 msgid "Manage apps" msgstr "Gestionar las aplicaciones" -#: ../../Zotlabs/Module/Apps.php:51 +#: ../../Zotlabs/Module/Apps.php:52 msgid "Create new app" msgstr "Crear una nueva aplicación" @@ -4372,7 +4437,7 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s está %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:247 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 msgid "Mood" msgstr "Estado de ánimo" @@ -4412,12 +4477,12 @@ msgstr "Nuevas" #: ../../Zotlabs/Module/Connections.php:88 #: ../../Zotlabs/Module/Connections.php:102 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:30 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 msgid "All" msgstr "Todos/as" #: ../../Zotlabs/Module/Connections.php:133 -#: ../../Zotlabs/Widget/Notifications.php:82 +#: ../../Zotlabs/Widget/Notifications.php:84 msgid "New Connections" msgstr "Nuevas conexiones" @@ -4457,70 +4522,70 @@ msgstr "Archivadas" msgid "Not connected at this location" msgstr "No está conectado/a en esta ubicación" -#: ../../Zotlabs/Module/Connections.php:258 +#: ../../Zotlabs/Module/Connections.php:263 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Connections.php:259 +#: ../../Zotlabs/Module/Connections.php:264 msgid "Edit connection" msgstr "Editar conexión" -#: ../../Zotlabs/Module/Connections.php:261 +#: ../../Zotlabs/Module/Connections.php:266 msgid "Delete connection" msgstr "Eliminar conexión" -#: ../../Zotlabs/Module/Connections.php:270 +#: ../../Zotlabs/Module/Connections.php:275 msgid "Channel address" msgstr "Dirección del canal" -#: ../../Zotlabs/Module/Connections.php:272 +#: ../../Zotlabs/Module/Connections.php:277 msgid "Network" msgstr "Red" -#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Connections.php:280 msgid "Call" msgstr "Llamar" -#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connections.php:282 msgid "Status" msgstr "Estado" -#: ../../Zotlabs/Module/Connections.php:279 +#: ../../Zotlabs/Module/Connections.php:284 msgid "Connected" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:286 msgid "Approve connection" msgstr "Aprobar esta conexión" -#: ../../Zotlabs/Module/Connections.php:283 +#: ../../Zotlabs/Module/Connections.php:288 msgid "Ignore connection" msgstr "Ignorar esta conexión" -#: ../../Zotlabs/Module/Connections.php:284 +#: ../../Zotlabs/Module/Connections.php:289 #: ../../Zotlabs/Module/Connedit.php:630 msgid "Ignore" msgstr "Ignorar" -#: ../../Zotlabs/Module/Connections.php:285 +#: ../../Zotlabs/Module/Connections.php:290 msgid "Recent activity" msgstr "Actividad reciente" -#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229 -#: ../../include/text.php:959 ../../include/nav.php:114 +#: ../../Zotlabs/Module/Connections.php:315 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 msgid "Connections" msgstr "Conexiones" -#: ../../Zotlabs/Module/Connections.php:314 +#: ../../Zotlabs/Module/Connections.php:320 msgid "Search your connections" msgstr "Buscar sus conexiones" -#: ../../Zotlabs/Module/Connections.php:315 +#: ../../Zotlabs/Module/Connections.php:321 msgid "Connections search" msgstr "Buscar conexiones" -#: ../../Zotlabs/Module/Connections.php:316 +#: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Directory.php:396 #: ../../Zotlabs/Module/Directory.php:401 ../../include/contact_widgets.php:23 msgid "Find" @@ -4718,12 +4783,12 @@ msgid "Please wait" msgstr "Espere por favor" #: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:751 +#: ../../Zotlabs/Lib/ThreadItem.php:747 msgid "This is you" msgstr "Este es usted" #: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/js_strings.php:6 +#: ../../Zotlabs/Lib/ThreadItem.php:749 ../../include/js_strings.php:6 msgid "Comment" msgstr "Comentar" @@ -4773,8 +4838,8 @@ msgid "View all" msgstr "Ver todo" #: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1978 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:593 +#: ../../include/conversation.php:1978 ../../include/channel.php:1540 +#: ../../include/taxonomy.php:597 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -4812,7 +4877,7 @@ msgid "Dislikes" msgstr "No me gusta" #: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:220 +#: ../../include/acl_selectors.php:125 msgid "Close" msgstr "Cerrar" @@ -4847,7 +4912,7 @@ msgid "Error downloading wiki: " msgstr "Error al descargar el wiki: " #: ../../Zotlabs/Module/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146 -#: ../../include/conversation.php:1925 ../../include/nav.php:526 +#: ../../include/conversation.php:1925 ../../include/nav.php:494 msgid "Wikis" msgstr "Wikis" @@ -4871,23 +4936,23 @@ msgstr "Tipo de contenido" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1802 -#: ../../include/features.php:378 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1868 msgid "Markdown" msgstr "Markdown" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1800 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1866 msgid "BBcode" msgstr "BBcode" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1803 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1869 msgid "Text" msgstr "Texto" -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:281 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 #: ../../addon/gitwiki/Mod_Gitwiki.php:159 msgid "Type" msgstr "Tipo" @@ -4954,8 +5019,11 @@ msgstr "Incluir una imagen de los álbumes de fotos" msgid "Embed an image from your albums" msgstr "Incluir una imagen de sus álbumes" -#: ../../Zotlabs/Module/Wiki.php:376 ../../addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1387 ../../include/conversation.php:1434 +#: ../../Zotlabs/Module/Wiki.php:376 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../addon/gitwiki/Mod_Gitwiki.php:268 ../../include/conversation.php:1387 +#: ../../include/conversation.php:1434 msgid "OK" msgstr "OK" @@ -5084,7 +5152,7 @@ msgstr "Editar otro diseño" msgid "System layout" msgstr "Diseño del sistema" -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:248 +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 #: ../../include/conversation.php:1092 msgid "Poke" msgstr "Toques y otras cosas" @@ -5113,97 +5181,97 @@ msgstr "Elegir qué desea enviar al destinatario" msgid "Make this post private" msgstr "Convertir en privado este envío" -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:66 #: ../../Zotlabs/Module/Cover_photo.php:56 msgid "Image uploaded but image cropping failed." msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:240 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 #: ../../include/photo/photo_driver.php:740 msgid "Profile Photos" msgstr "Fotos del perfil" -#: ../../Zotlabs/Module/Profile_photo.php:137 +#: ../../Zotlabs/Module/Profile_photo.php:142 #: ../../Zotlabs/Module/Cover_photo.php:159 msgid "Image resize failed." msgstr "El ajuste del tamaño de la imagen ha fallado." -#: ../../Zotlabs/Module/Profile_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:218 #: ../../addon/openclipatar/openclipatar.php:298 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:225 #: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 msgid "Unable to process image" msgstr "No ha sido posible procesar la imagen" -#: ../../Zotlabs/Module/Profile_photo.php:252 +#: ../../Zotlabs/Module/Profile_photo.php:260 #: ../../Zotlabs/Module/Cover_photo.php:197 msgid "Image upload failed." msgstr "La carga de la imagen ha fallado." -#: ../../Zotlabs/Module/Profile_photo.php:271 +#: ../../Zotlabs/Module/Profile_photo.php:279 #: ../../Zotlabs/Module/Cover_photo.php:214 msgid "Unable to process image." msgstr "No ha sido posible procesar la imagen." -#: ../../Zotlabs/Module/Profile_photo.php:332 -#: ../../Zotlabs/Module/Profile_photo.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Cover_photo.php:307 #: ../../Zotlabs/Module/Cover_photo.php:322 msgid "Photo not available." msgstr "Foto no disponible." -#: ../../Zotlabs/Module/Profile_photo.php:434 +#: ../../Zotlabs/Module/Profile_photo.php:455 #: ../../Zotlabs/Module/Cover_photo.php:358 msgid "Upload File:" msgstr "Subir fichero:" -#: ../../Zotlabs/Module/Profile_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:456 #: ../../Zotlabs/Module/Cover_photo.php:359 msgid "Select a profile:" msgstr "Seleccionar un perfil:" -#: ../../Zotlabs/Module/Profile_photo.php:436 +#: ../../Zotlabs/Module/Profile_photo.php:457 msgid "Use Photo for Profile" msgstr "Usar la fotografía para el perfil" -#: ../../Zotlabs/Module/Profile_photo.php:436 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Profile_photo.php:437 -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 +#: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Use" msgstr "Usar" -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "skip this step" -msgstr "Omitir este paso" - -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes de fotos" - #: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Cover_photo.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:363 +#: ../../Zotlabs/Module/Cover_photo.php:364 +msgid "Use a photo from your albums" +msgstr "Usar una foto de sus álbumes" + +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +msgid "Select existing photo" +msgstr "Seleccionar una foto existente" + +#: ../../Zotlabs/Module/Profile_photo.php:486 +#: ../../Zotlabs/Module/Cover_photo.php:386 msgid "Crop Image" msgstr "Recortar imagen" -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:487 +#: ../../Zotlabs/Module/Cover_photo.php:387 msgid "Please adjust the image cropping for optimum viewing." msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:489 +#: ../../Zotlabs/Module/Cover_photo.php:389 msgid "Done Editing" msgstr "Edición completada" @@ -5215,65 +5283,65 @@ msgstr "Ausente" msgid "Online" msgstr "Conectado/a" -#: ../../Zotlabs/Module/Item.php:193 +#: ../../Zotlabs/Module/Item.php:194 msgid "Unable to locate original post." msgstr "No ha sido posible encontrar la entrada original." -#: ../../Zotlabs/Module/Item.php:475 +#: ../../Zotlabs/Module/Item.php:476 msgid "Empty post discarded." msgstr "La entrada vacía ha sido desechada." -#: ../../Zotlabs/Module/Item.php:853 +#: ../../Zotlabs/Module/Item.php:867 msgid "Duplicate post suppressed." msgstr "Se ha suprimido la entrada duplicada." -#: ../../Zotlabs/Module/Item.php:998 +#: ../../Zotlabs/Module/Item.php:1012 msgid "System error. Post not saved." msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../Zotlabs/Module/Item.php:1034 +#: ../../Zotlabs/Module/Item.php:1048 msgid "Your comment is awaiting approval." msgstr "Su comentario está pendiente de aprobación." -#: ../../Zotlabs/Module/Item.php:1139 +#: ../../Zotlabs/Module/Item.php:1153 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:1168 +#: ../../Zotlabs/Module/Item.php:1182 #, 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:1175 +#: ../../Zotlabs/Module/Item.php:1189 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Ha alcanzado su límite de %1$.0f páginas web." -#: ../../Zotlabs/Module/Ping.php:311 +#: ../../Zotlabs/Module/Ping.php:320 msgid "sent you a private message" msgstr "le ha enviado un mensaje privado" -#: ../../Zotlabs/Module/Ping.php:360 +#: ../../Zotlabs/Module/Ping.php:372 msgid "added your channel" msgstr "añadió este canal a sus conexiones" -#: ../../Zotlabs/Module/Ping.php:384 +#: ../../Zotlabs/Module/Ping.php:396 msgid "requires approval" msgstr "requiere aprobación" -#: ../../Zotlabs/Module/Ping.php:394 +#: ../../Zotlabs/Module/Ping.php:406 msgid "g A l F d" msgstr "g A l d F" -#: ../../Zotlabs/Module/Ping.php:412 +#: ../../Zotlabs/Module/Ping.php:424 msgid "[today]" msgstr "[hoy]" -#: ../../Zotlabs/Module/Ping.php:421 +#: ../../Zotlabs/Module/Ping.php:433 msgid "posted an event" msgstr "publicó un evento" -#: ../../Zotlabs/Module/Ping.php:454 +#: ../../Zotlabs/Module/Ping.php:466 msgid "shared a file with you" msgstr "compartió un archivo con usted" @@ -5283,7 +5351,7 @@ msgstr "Elemento no válido." #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 #: ../../Zotlabs/Module/Display.php:133 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:168 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 #: ../../include/help.php:81 msgid "Page not found." msgstr "Página no encontrada." @@ -5336,9 +5404,9 @@ msgstr "No ha sido posible establecer los parámetros de la libreta de direccion msgid "Connection has been removed." msgstr "La conexión ha sido eliminada." -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:241 +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 #: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:148 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 msgid "View Profile" msgstr "Ver el perfil" @@ -5448,15 +5516,15 @@ msgstr "Afinidad" msgid "Open Set Affinity section by default" msgstr "Abrir por defecto la sección para definir la afinidad" -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:26 +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 msgid "Me" msgstr "Yo" -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:27 +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 msgid "Family" msgstr "Familia" -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:29 +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 msgid "Acquaintances" msgstr "Conocidos/as" @@ -5488,119 +5556,124 @@ msgstr "Ajustar el perfil" msgid "Set Affinity & Profile" msgstr "Ajustar la afinidad y el perfil" -#: ../../Zotlabs/Module/Connedit.php:855 +#: ../../Zotlabs/Module/Connedit.php:838 msgid "This connection is unreachable from this location." msgstr "No se puede acceder a la conexión desde este sitio." -#: ../../Zotlabs/Module/Connedit.php:856 +#: ../../Zotlabs/Module/Connedit.php:839 msgid "This connection may be unreachable from other channel locations." msgstr "Esta conexión puede ser inaccesible desde otras ubicaciones del canal." -#: ../../Zotlabs/Module/Connedit.php:858 +#: ../../Zotlabs/Module/Connedit.php:841 msgid "Location independence is not supported by their network." msgstr "La independencia de ubicación no es compatible con su red." -#: ../../Zotlabs/Module/Connedit.php:864 +#: ../../Zotlabs/Module/Connedit.php:847 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." msgstr "Esta conexión no es accesible desde este sitio. La independencia de ubicación no es compatible con su red." -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 #: ../../Zotlabs/Widget/Settings_menu.php:109 msgid "Connection Default Permissions" msgstr "Permisos predeterminados de conexión" -#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4134 +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4164 #, php-format msgid "Connection: %s" msgstr "Conexión: %s" -#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 msgid "Apply these permissions automatically" msgstr "Aplicar estos permisos automaticamente" -#: ../../Zotlabs/Module/Connedit.php:868 +#: ../../Zotlabs/Module/Connedit.php:851 msgid "Connection requests will be approved without your interaction" msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 msgid "Permission role" msgstr "Rol de acceso" -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:241 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Cargando" + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 msgid "Add permission role" msgstr "Añadir un rol de acceso" -#: ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:860 msgid "This connection's primary address is" msgstr "La dirección primaria de esta conexión es" -#: ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Connedit.php:861 msgid "Available locations:" msgstr "Ubicaciones disponibles:" -#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:245 +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Connedit.php:884 +#: ../../Zotlabs/Module/Connedit.php:867 msgid "Connection Tools" msgstr "Gestión de las conexiones" -#: ../../Zotlabs/Module/Connedit.php:886 +#: ../../Zotlabs/Module/Connedit.php:869 msgid "Slide to adjust your degree of friendship" msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Connedit.php:871 msgid "Slide to adjust your rating" msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 msgid "Optionally explain your rating" msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Connedit.php:891 +#: ../../Zotlabs/Module/Connedit.php:874 msgid "Custom Filter" msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Connedit.php:892 +#: ../../Zotlabs/Module/Connedit.php:875 msgid "Only import posts with this text" msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 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:893 +#: ../../Zotlabs/Module/Connedit.php:876 msgid "Do not import posts with this text" msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:895 +#: ../../Zotlabs/Module/Connedit.php:878 msgid "This information is public!" msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Connedit.php:900 +#: ../../Zotlabs/Module/Connedit.php:883 msgid "Connection Pending Approval" msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Connedit.php:905 +#: ../../Zotlabs/Module/Connedit.php:888 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura." -#: ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Connedit.php:895 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -5608,11 +5681,11 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../Zotlabs/Module/Connedit.php:913 +#: ../../Zotlabs/Module/Connedit.php:896 msgid "Last update:" msgstr "Última actualización:" -#: ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Connedit.php:904 msgid "Details" msgstr "Detalles" @@ -5646,7 +5719,7 @@ msgid "Please enter a link URL:" msgstr "Por favor, introduzca la dirección del enlace:" #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:768 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:764 #: ../../include/conversation.php:1432 msgid "Encrypt text" msgstr "Cifrar texto" @@ -5680,14 +5753,14 @@ msgstr "Caducidad" msgid "min" msgstr "min" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:242 -#: ../../include/conversation.php:1831 ../../include/nav.php:433 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1831 ../../include/nav.php:401 msgid "Photos" msgstr "Fotos" -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 -#: ../../Zotlabs/Storage/Browser.php:269 ../../include/conversation.php:1839 -#: ../../include/nav.php:441 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1839 +#: ../../include/nav.php:409 msgid "Files" msgstr "Ficheros" @@ -5727,7 +5800,7 @@ msgstr "El menú se puede usar para guardar marcadores" msgid "Submit and proceed" msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2289 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2403 msgid "Menus" msgstr "Menús" @@ -5779,12 +5852,12 @@ msgstr "El título del menú tal como será visto por los demás" msgid "Allow bookmarks" msgstr "Permitir marcadores" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2290 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2404 msgid "Layouts" msgstr "Plantillas" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:245 -#: ../../include/nav.php:208 ../../include/nav.php:312 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 #: ../../include/help.php:68 ../../include/help.php:74 msgid "Help" msgstr "Ayuda" @@ -5802,20 +5875,44 @@ msgid "Download PDL file" msgstr "Descargar el fichero PDL" #: ../../Zotlabs/Module/Cloud.php:114 +msgid "Please refresh page" +msgstr "Por favor, recargue la página" + +#: ../../Zotlabs/Module/Cloud.php:117 msgid "Unknown error" msgstr "Error desconocido" +#: ../../Zotlabs/Module/Email_validation.php:35 +msgid "Email Verification Required" +msgstr "Verificación obligatoria del correo electrónico" + +#: ../../Zotlabs/Module/Email_validation.php:36 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje." + +#: ../../Zotlabs/Module/Email_validation.php:37 +msgid "Resend Email" +msgstr "Reenvío de correo electrónico" + +#: ../../Zotlabs/Module/Email_validation.php:40 +msgid "Validation token" +msgstr "Token de validación" + #: ../../Zotlabs/Module/Tagger.php:48 msgid "Post not found." msgstr "Mensaje no encontrado." #: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:335 +#: ../../include/bbcode.php:339 msgid "post" msgstr "la entrada" #: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:1946 +#: ../../include/text.php:2012 msgid "comment" msgstr "el comentario" @@ -5863,7 +5960,7 @@ msgid "Could not create privacy group." msgstr "No se puede crear el grupo de canales" #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4101 +#: ../../include/items.php:4131 msgid "Privacy group not found." msgstr "Grupo de canales no encontrado." @@ -6171,18 +6268,81 @@ msgstr "Información de contacto y redes sociales" msgid "My other channels" msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Profiles.php:788 -msgid "Communications" -msgstr "Comunicaciones" +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Communications" +msgstr "Comunicaciones" + +#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1316 +msgid "Profile Image" +msgstr "Imagen del perfil" + +#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1297 +#: ../../include/nav.php:117 +msgid "Edit Profiles" +msgstr "Editar perfiles" + +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Esta página está disponible sólo para los miembros del sitio" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Bienvenido/a" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "¿Qué le gustaría hacer?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro." + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Subir una foto de perfil" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Subir una foto de portada del perfil" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Editar su perfil por defecto" + +#: ../../Zotlabs/Module/Go.php:38 +msgid "View friend suggestions" +msgstr "Ver sugerencias de amistad" + +#: ../../Zotlabs/Module/Go.php:39 +msgid "View the directory to find other interesting channels" +msgstr "Ver el directorio para encontrar otros canales interesantes" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Ver o modificar los ajustes de su canal" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Ver el sitio o la documentación del proyecto" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Visitar la página principal de su canal" -#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1316 -msgid "Profile Image" -msgstr "Imagen del perfil" +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca" -#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1297 -#: ../../include/nav.php:151 -msgid "Edit Profiles" -msgstr "Editar perfiles" +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Ver el \"stream\" público. Advertencia: este contenido no está moderado" #: ../../Zotlabs/Module/Editwebpage.php:139 msgid "Page link" @@ -6196,8 +6356,8 @@ msgstr "Editar la página web" msgid "Create a new channel" msgstr "Crear un nuevo canal" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Channel Manager" msgstr "Administración de canales" @@ -6231,7 +6391,13 @@ msgstr "%d nuevas solicitudes de conexión" msgid "Delegated Channel" msgstr "Canal delegado" -#: ../../Zotlabs/Module/Cards.php:95 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:181 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1890 +#: ../../include/features.php:122 ../../include/nav.php:458 +msgid "Cards" +msgstr "Fichas" + +#: ../../Zotlabs/Module/Cards.php:99 msgid "Add Card" msgstr "Añadir una ficha" @@ -6239,45 +6405,45 @@ msgstr "Añadir una ficha" msgid "This directory server requires an access token" msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Siteinfo.php:18 msgid "About this site" msgstr "Acerca de este sitio" -#: ../../Zotlabs/Module/Siteinfo.php:20 +#: ../../Zotlabs/Module/Siteinfo.php:19 msgid "Site Name" msgstr "Nombre del sitio" -#: ../../Zotlabs/Module/Siteinfo.php:24 +#: ../../Zotlabs/Module/Siteinfo.php:23 msgid "Administrator" msgstr "Administrador" -#: ../../Zotlabs/Module/Siteinfo.php:26 ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:234 msgid "Terms of Service" msgstr "Términos del servicio" -#: ../../Zotlabs/Module/Siteinfo.php:27 +#: ../../Zotlabs/Module/Siteinfo.php:26 msgid "Software and Project information" msgstr "Información sobre el software y el proyecto" -#: ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Siteinfo.php:27 msgid "This site is powered by $Projectname" msgstr "Este sitio funciona con $Projectname" -#: ../../Zotlabs/Module/Siteinfo.php:29 +#: ../../Zotlabs/Module/Siteinfo.php:28 msgid "" "Federated and decentralised networking and identity services provided by Zot" msgstr "Servicios federados y descentralizados de identidad y redes proporcionados por Zot" -#: ../../Zotlabs/Module/Siteinfo.php:31 +#: ../../Zotlabs/Module/Siteinfo.php:30 #, php-format msgid "Version %s" msgstr "Versión %s" -#: ../../Zotlabs/Module/Siteinfo.php:32 +#: ../../Zotlabs/Module/Siteinfo.php:31 msgid "Project homepage" msgstr "Página principal del proyecto" -#: ../../Zotlabs/Module/Siteinfo.php:33 +#: ../../Zotlabs/Module/Siteinfo.php:32 msgid "Developer homepage" msgstr "Página principal del desarrollador" @@ -6318,8 +6484,8 @@ msgstr "Exportar elementos de una página web" msgid "Export selected" msgstr "Exportar los elementos seleccionados" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:238 -#: ../../include/conversation.php:1912 ../../include/nav.php:513 +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1912 ../../include/nav.php:481 msgid "Webpages" msgstr "Páginas web" @@ -6479,7 +6645,7 @@ msgid "*" msgstr "*" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:228 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:238 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -6535,88 +6701,88 @@ msgstr "Fuente eliminada" msgid "Unable to remove source." msgstr "No se puede eliminar la fuente." -#: ../../Zotlabs/Module/Like.php:22 +#: ../../Zotlabs/Module/Like.php:54 msgid "Like/Dislike" msgstr "Me gusta/No me gusta" -#: ../../Zotlabs/Module/Like.php:27 +#: ../../Zotlabs/Module/Like.php:59 msgid "This action is restricted to members." msgstr "Esta acción está restringida solo para miembros." -#: ../../Zotlabs/Module/Like.php:28 +#: ../../Zotlabs/Module/Like.php:60 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/Like.php:108 ../../Zotlabs/Module/Like.php:134 -#: ../../Zotlabs/Module/Like.php:172 +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 msgid "Invalid request." msgstr "Solicitud incorrecta." -#: ../../Zotlabs/Module/Like.php:120 ../../include/conversation.php:122 +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 msgid "channel" msgstr "el canal" -#: ../../Zotlabs/Module/Like.php:149 +#: ../../Zotlabs/Module/Like.php:150 msgid "thing" msgstr "elemento" -#: ../../Zotlabs/Module/Like.php:195 +#: ../../Zotlabs/Module/Like.php:196 msgid "Channel unavailable." msgstr "Canal no disponible." -#: ../../Zotlabs/Module/Like.php:243 +#: ../../Zotlabs/Module/Like.php:244 msgid "Previous action reversed." msgstr "Acción anterior revocada." -#: ../../Zotlabs/Module/Like.php:435 ../../addon/diaspora/Receiver.php:1462 -#: ../../addon/pubcrawl/as.php:1330 ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:436 ../../addon/diaspora/Receiver.php:1547 +#: ../../addon/pubcrawl/as.php:1394 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:437 ../../addon/pubcrawl/as.php:1332 +#: ../../Zotlabs/Module/Like.php:438 ../../addon/pubcrawl/as.php:1396 #: ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "A %1$s no le gusta %3$s de %2$s" -#: ../../Zotlabs/Module/Like.php:439 +#: ../../Zotlabs/Module/Like.php:440 #, 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/Like.php:441 +#: ../../Zotlabs/Module/Like.php:442 #, 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/Like.php:443 +#: ../../Zotlabs/Module/Like.php:444 #, 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/Like.php:445 +#: ../../Zotlabs/Module/Like.php:446 ../../addon/diaspora/Receiver.php:2031 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s de %2$s: %1$s participa" -#: ../../Zotlabs/Module/Like.php:447 +#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2033 #, 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/Like.php:449 +#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2035 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../Zotlabs/Module/Like.php:561 +#: ../../Zotlabs/Module/Like.php:562 msgid "Action completed." msgstr "Acción completada." -#: ../../Zotlabs/Module/Like.php:562 +#: ../../Zotlabs/Module/Like.php:563 msgid "Thank you." msgstr "Gracias." @@ -6639,12 +6805,12 @@ msgstr "Estado:" msgid "Homepage: " msgstr "Página personal:" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1564 +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1565 msgid "Age:" msgstr "Edad:" #: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1392 -#: ../../include/event.php:53 ../../include/event.php:85 +#: ../../include/event.php:54 ../../include/event.php:86 msgid "Location:" msgstr "Ubicación:" @@ -6652,11 +6818,11 @@ msgstr "Ubicación:" msgid "Description:" msgstr "Descripción:" -#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1580 +#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1581 msgid "Hometown:" msgstr "Lugar de nacimiento:" -#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1588 +#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1589 msgid "About:" msgstr "Sobre mí:" @@ -6896,19 +7062,19 @@ msgstr "Software" msgid "Rate" msgstr "Valorar" -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 msgid "webpage" msgstr "página web" -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:269 +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 msgid "block" msgstr "bloque" -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:266 +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 msgid "layout" msgstr "plantilla" -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:272 +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 msgid "menu" msgstr "menú" @@ -6986,115 +7152,115 @@ msgstr "Su registro está pendiente de aprobación por el propietario del sitio. msgid "Your registration can not be processed." msgstr "Su registro no puede ser procesado." -#: ../../Zotlabs/Module/Register.php:192 +#: ../../Zotlabs/Module/Register.php:194 msgid "Registration on this hub is disabled." msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Register.php:201 +#: ../../Zotlabs/Module/Register.php:203 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:202 +#: ../../Zotlabs/Module/Register.php:204 msgid "Register at another affiliated hub." msgstr "Registrarse en otro hub afiliado." -#: ../../Zotlabs/Module/Register.php:212 +#: ../../Zotlabs/Module/Register.php:214 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:235 +#: ../../Zotlabs/Module/Register.php:240 #, php-format msgid "I accept the %s for this website" msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Register.php:241 +#: ../../Zotlabs/Module/Register.php:247 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:252 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Register.php:246 +#: ../../Zotlabs/Module/Register.php:253 msgid "Choose a password" msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Register.php:247 +#: ../../Zotlabs/Module/Register.php:254 msgid "Please re-enter your password" msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Register.php:248 +#: ../../Zotlabs/Module/Register.php:255 msgid "Please enter your invitation code" msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:260 msgid "no" msgstr "no" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:260 msgid "yes" msgstr "sí" -#: ../../Zotlabs/Module/Register.php:268 +#: ../../Zotlabs/Module/Register.php:276 msgid "Membership on this site is by invitation only." msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Register.php:280 ../../boot.php:1645 -#: ../../include/nav.php:196 +#: ../../Zotlabs/Module/Register.php:288 ../../boot.php:1563 +#: ../../include/nav.php:164 msgid "Register" msgstr "Registrarse" -#: ../../Zotlabs/Module/Register.php:281 +#: ../../Zotlabs/Module/Register.php:289 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." +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones." #: ../../Zotlabs/Module/Cover_photo.php:136 #: ../../Zotlabs/Module/Cover_photo.php:186 msgid "Cover Photos" msgstr "Imágenes de portada del perfil" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4478 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4508 msgid "female" msgstr "mujer" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4479 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4509 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4480 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4510 msgid "male" msgstr "hombre" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4481 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4511 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4483 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4513 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s ha actualizado su %2$s" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2053 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2059 msgid "cover photo" msgstr "Imagen de portada del perfil" #: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Upload Cover Photo" -msgstr "Subir imagen de portada del perfil" +msgid "Change Cover Photo" +msgstr "Cambiar la foto de portada del perfil" #: ../../Zotlabs/Module/Help.php:23 msgid "Documentation Search" msgstr "Búsqueda de Documentación" #: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1821 -#: ../../include/nav.php:423 +#: ../../include/nav.php:391 msgid "About" msgstr "Mi perfil" @@ -7118,11 +7284,11 @@ msgstr "Documentación de $Projectname" msgid "Contents" msgstr "Contenidos" -#: ../../Zotlabs/Module/Display.php:349 +#: ../../Zotlabs/Module/Display.php:350 msgid "Article" msgstr "Artículo" -#: ../../Zotlabs/Module/Display.php:401 +#: ../../Zotlabs/Module/Display.php:402 msgid "Item has been removed." msgstr "Se ha eliminado el elemento." @@ -7138,44 +7304,44 @@ msgstr "Eliminar etiqueta del elemento." msgid "Select a tag to remove: " msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../Zotlabs/Module/Network.php:97 +#: ../../Zotlabs/Module/Network.php:100 msgid "No such group" msgstr "No se encuentra el grupo" -#: ../../Zotlabs/Module/Network.php:137 +#: ../../Zotlabs/Module/Network.php:142 msgid "No such channel" msgstr "No se encuentra el canal" -#: ../../Zotlabs/Module/Network.php:142 +#: ../../Zotlabs/Module/Network.php:147 msgid "forum" msgstr "foro" -#: ../../Zotlabs/Module/Network.php:154 +#: ../../Zotlabs/Module/Network.php:159 msgid "Search Results For:" msgstr "Buscar resultados para:" -#: ../../Zotlabs/Module/Network.php:222 +#: ../../Zotlabs/Module/Network.php:230 msgid "Privacy group is empty" msgstr "El grupo de canales está vacío" -#: ../../Zotlabs/Module/Network.php:231 +#: ../../Zotlabs/Module/Network.php:240 msgid "Privacy group: " msgstr "Grupo de canales: " -#: ../../Zotlabs/Module/Network.php:257 +#: ../../Zotlabs/Module/Network.php:268 msgid "Invalid connection." msgstr "Conexión no válida." -#: ../../Zotlabs/Module/Network.php:276 ../../addon/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:289 ../../addon/redred/redred.php:65 msgid "Invalid channel." msgstr "El canal no es válido." -#: ../../Zotlabs/Module/Acl.php:358 +#: ../../Zotlabs/Module/Acl.php:361 msgid "network" msgstr "red" #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" msgstr "$Projectname" @@ -7225,7 +7391,7 @@ msgid "Show URL to this file" msgstr "Mostrar la dirección de este fichero" #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 +#: ../../Zotlabs/Storage/Browser.php:397 msgid "Show in your contacts shared folder" msgstr "Mostrar en la carpeta compartida con sus contactos" @@ -7241,16 +7407,28 @@ msgstr "Ninguna conexión en común." msgid "View Common Connections" msgstr "Ver las conexiones comunes" +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Ha fallado el token de verificación." + +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Reenvío del email de verificación" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "No se puede reenviar el mensaje de verificación por correo electrónico." + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Sin conexiones." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:83 #, php-format msgid "Visit %s's profile [%s]" msgstr "Visitar el perfil de %s [%s]" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:113 msgid "View Connections" msgstr "Ver conexiones" @@ -7359,7 +7537,7 @@ msgid "" "Password reset failed." msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1673 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1591 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -7433,143 +7611,143 @@ msgstr "4. Experto - Puedo escribir código informático" msgid "5. Wizard - I probably know more than you do" msgstr "5. Colaborador - probablemente sé más que tú" -#: ../../Zotlabs/Lib/Apps.php:225 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Site Admin" msgstr "Administrador del sitio" -#: ../../Zotlabs/Lib/Apps.php:226 ../../addon/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 msgid "Report Bug" msgstr "Informe de errores" -#: ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Lib/Apps.php:233 msgid "View Bookmarks" msgstr "Ver los marcadores" -#: ../../Zotlabs/Lib/Apps.php:228 +#: ../../Zotlabs/Lib/Apps.php:234 msgid "My Chatrooms" msgstr "Mis salas de chat" -#: ../../Zotlabs/Lib/Apps.php:230 +#: ../../Zotlabs/Lib/Apps.php:236 msgid "Firefox Share" msgstr "Servicio de compartición de Firefox" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:237 msgid "Remote Diagnostics" msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/Apps.php:232 ../../include/features.php:352 +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:362 msgid "Suggest Channels" msgstr "Sugerir canales" -#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1664 -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1582 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Login" msgstr "Iniciar sesión" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/nav.php:105 +#: ../../Zotlabs/Lib/Apps.php:241 msgid "Activity" msgstr "Actividad" -#: ../../Zotlabs/Lib/Apps.php:239 ../../include/conversation.php:1928 -#: ../../include/features.php:95 ../../include/nav.php:529 +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1928 +#: ../../include/features.php:95 ../../include/nav.php:497 msgid "Wiki" msgstr "Wiki" -#: ../../Zotlabs/Lib/Apps.php:240 ../../include/nav.php:109 +#: ../../Zotlabs/Lib/Apps.php:246 msgid "Channel Home" msgstr "Mi canal" -#: ../../Zotlabs/Lib/Apps.php:243 ../../include/conversation.php:1850 -#: ../../include/conversation.php:1853 ../../include/nav.php:131 +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1850 +#: ../../include/conversation.php:1853 msgid "Events" msgstr "Eventos" -#: ../../Zotlabs/Lib/Apps.php:244 +#: ../../Zotlabs/Lib/Apps.php:250 msgid "Directory" msgstr "Directorio" -#: ../../Zotlabs/Lib/Apps.php:246 ../../include/nav.php:123 +#: ../../Zotlabs/Lib/Apps.php:252 msgid "Mail" msgstr "Correo" -#: ../../Zotlabs/Lib/Apps.php:249 +#: ../../Zotlabs/Lib/Apps.php:255 msgid "Chat" msgstr "Chat" -#: ../../Zotlabs/Lib/Apps.php:251 +#: ../../Zotlabs/Lib/Apps.php:257 msgid "Probe" msgstr "Probar" -#: ../../Zotlabs/Lib/Apps.php:252 +#: ../../Zotlabs/Lib/Apps.php:258 msgid "Suggest" msgstr "Sugerir" -#: ../../Zotlabs/Lib/Apps.php:253 +#: ../../Zotlabs/Lib/Apps.php:259 msgid "Random Channel" msgstr "Canal aleatorio" -#: ../../Zotlabs/Lib/Apps.php:254 +#: ../../Zotlabs/Lib/Apps.php:260 msgid "Invite" msgstr "Invitar" -#: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "Funcionalidades" -#: ../../Zotlabs/Lib/Apps.php:256 ../../addon/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 msgid "Language" msgstr "Idioma" -#: ../../Zotlabs/Lib/Apps.php:257 +#: ../../Zotlabs/Lib/Apps.php:263 msgid "Post" msgstr "Publicación" -#: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "Foto del perfil" -#: ../../Zotlabs/Lib/Apps.php:397 +#: ../../Zotlabs/Lib/Apps.php:407 msgid "Purchase" msgstr "Comprar" -#: ../../Zotlabs/Lib/Apps.php:401 +#: ../../Zotlabs/Lib/Apps.php:411 msgid "Undelete" msgstr "Recuperar" -#: ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/Apps.php:419 msgid "Add to app-tray" msgstr "Añadir a la bandeja de aplicaciones" -#: ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/Apps.php:420 msgid "Remove from app-tray" msgstr "Quitar de la bandeja de aplicaciones" -#: ../../Zotlabs/Lib/Apps.php:411 +#: ../../Zotlabs/Lib/Apps.php:421 msgid "Pin to navbar" msgstr "Fijar en la barra de navegación" -#: ../../Zotlabs/Lib/Apps.php:412 +#: ../../Zotlabs/Lib/Apps.php:422 msgid "Unpin from navbar" msgstr "Quitar de la barra de navegación" -#: ../../Zotlabs/Lib/Permcat.php:58 +#: ../../Zotlabs/Lib/Permcat.php:82 msgctxt "permcat" msgid "default" msgstr "por defecto" -#: ../../Zotlabs/Lib/Permcat.php:96 +#: ../../Zotlabs/Lib/Permcat.php:133 msgctxt "permcat" msgid "follower" msgstr "seguidor" -#: ../../Zotlabs/Lib/Permcat.php:100 +#: ../../Zotlabs/Lib/Permcat.php:137 msgctxt "permcat" msgid "contributor" msgstr "contribuidor" -#: ../../Zotlabs/Lib/Permcat.php:104 +#: ../../Zotlabs/Lib/Permcat.php:141 msgctxt "permcat" msgid "publisher" msgstr "editor" @@ -7638,18 +7816,18 @@ msgid "Message" msgstr "Mensaje" #: ../../Zotlabs/Lib/NativeWikiPage.php:597 -#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:674 -#: ../../include/bbcode.php:822 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:706 +#: ../../include/bbcode.php:865 msgid "Different viewers will see this text differently" msgstr "Visitantes diferentes verán este texto de forma distinta" #: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:128 +#: ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "Visible para su público predeterminado." #: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:201 +#: ../../include/acl_selectors.php:106 msgid "Only me" msgstr "Sólo yo" @@ -7730,8 +7908,8 @@ msgstr "La sala está llena." msgid "$Projectname Notification" msgstr "Notificación de $Projectname" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 -#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:48 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "$projectname" @@ -7744,219 +7922,258 @@ msgstr "Gracias," msgid "%s Administrator" msgstr "%s Administrador" -#: ../../Zotlabs/Lib/Enotify.php:116 +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Este email ha sido enviado por %1$s a %2$s." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s" + +#: ../../Zotlabs/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Para dejar de recibir estos mensajes, por favor, ajuste su %s" + +#: ../../Zotlabs/Lib/Enotify.php:120 #, php-format msgid "%s " msgstr "%s " -#: ../../Zotlabs/Lib/Enotify.php:120 +#: ../../Zotlabs/Lib/Enotify.php:124 #, php-format msgid "[$Projectname:Notify] New mail received at %s" msgstr "[$Projectname:Aviso] Nuevo correo recibido en %s" -#: ../../Zotlabs/Lib/Enotify.php:122 +#: ../../Zotlabs/Lib/Enotify.php:126 #, 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:123 +#: ../../Zotlabs/Lib/Enotify.php:127 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s le ha enviado %2$s." -#: ../../Zotlabs/Lib/Enotify.php:123 +#: ../../Zotlabs/Lib/Enotify.php:127 msgid "a private message" msgstr "un mensaje privado" -#: ../../Zotlabs/Lib/Enotify.php:124 +#: ../../Zotlabs/Lib/Enotify.php:128 #, 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:184 +#: ../../Zotlabs/Lib/Enotify.php:141 +msgid "commented on" +msgstr "ha comentado sobre" + +#: ../../Zotlabs/Lib/Enotify.php:152 +msgid "liked" +msgstr "ha gustado de " + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "disliked" +msgstr "no ha gustado de " + +#: ../../Zotlabs/Lib/Enotify.php:198 #, 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]" +msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s[zrl=%4$s]un %5$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Lib/Enotify.php:207 #, 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] " +msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s] %6$sde %5$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:201 +#: ../../Zotlabs/Lib/Enotify.php:217 #, 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]" +msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s] ]su %5$s [/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:213 +#: ../../Zotlabs/Lib/Enotify.php:230 #, php-format msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "[$Projectname:Aviso] Comentario moderado en la conversación #%1$d por %2$s" -#: ../../Zotlabs/Lib/Enotify.php:215 +#: ../../Zotlabs/Lib/Enotify.php:232 #, php-format 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:216 +#: ../../Zotlabs/Lib/Enotify.php:233 #, 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:219 ../../Zotlabs/Lib/Enotify.php:301 -#: ../../Zotlabs/Lib/Enotify.php:318 ../../Zotlabs/Lib/Enotify.php:344 -#: ../../Zotlabs/Lib/Enotify.php:362 ../../Zotlabs/Lib/Enotify.php:376 +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 +#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 #, 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:223 ../../Zotlabs/Lib/Enotify.php:224 +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 #, php-format msgid "Please visit %s to approve or reject this comment." msgstr "Por favor, visite %spara aprobar o rechazar este comentario." -#: ../../Zotlabs/Lib/Enotify.php:282 +#: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" msgstr "%1$s, %2$s ha mostrado su agrado por [zrl=%3$s]%4$s creado por usted[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:297 +#: ../../Zotlabs/Lib/Enotify.php:314 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "[$Projectname:Aviso] \"Me gusta\" de %2$s en la conversación #%1$d" -#: ../../Zotlabs/Lib/Enotify.php:298 +#: ../../Zotlabs/Lib/Enotify.php:315 #, php-format msgid "%1$s, %2$s liked an item/conversation you created." msgstr "%1$s, %2$s ha mostrado su agrado por un elemento o conversación que ha creado usted." -#: ../../Zotlabs/Lib/Enotify.php:309 +#: ../../Zotlabs/Lib/Enotify.php:326 #, php-format 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:311 +#: ../../Zotlabs/Lib/Enotify.php:328 #, 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:313 +#: ../../Zotlabs/Lib/Enotify.php:330 #, 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:337 +#: ../../Zotlabs/Lib/Enotify.php:354 #, php-format msgid "[$Projectname:Notify] %s tagged you" msgstr "[$Projectname:Aviso] %s le ha etiquetado" -#: ../../Zotlabs/Lib/Enotify.php:338 +#: ../../Zotlabs/Lib/Enotify.php:355 #, 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:339 +#: ../../Zotlabs/Lib/Enotify.php:356 #, 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:351 +#: ../../Zotlabs/Lib/Enotify.php:368 #, php-format msgid "[$Projectname:Notify] %1$s poked you" msgstr "[$Projectname:Aviso] %1$s le ha dado un toque" -#: ../../Zotlabs/Lib/Enotify.php:352 +#: ../../Zotlabs/Lib/Enotify.php:369 #, 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:353 +#: ../../Zotlabs/Lib/Enotify.php:370 #, 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:369 +#: ../../Zotlabs/Lib/Enotify.php:386 #, php-format msgid "[$Projectname:Notify] %s tagged your post" msgstr "[$Projectname:Aviso] %s ha etiquetado su entrada" -#: ../../Zotlabs/Lib/Enotify.php:370 +#: ../../Zotlabs/Lib/Enotify.php:387 #, 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:371 +#: ../../Zotlabs/Lib/Enotify.php:388 #, 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:383 +#: ../../Zotlabs/Lib/Enotify.php:400 msgid "[$Projectname:Notify] Introduction received" msgstr "[$Projectname:Aviso] Ha recibido una solicitud de conexión" -#: ../../Zotlabs/Lib/Enotify.php:384 +#: ../../Zotlabs/Lib/Enotify.php:401 #, 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:385 +#: ../../Zotlabs/Lib/Enotify.php:402 #, 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:389 ../../Zotlabs/Lib/Enotify.php:408 +#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 #, php-format msgid "You may visit their profile at %s" msgstr "Puede visitar su perfil en %s" -#: ../../Zotlabs/Lib/Enotify.php:391 +#: ../../Zotlabs/Lib/Enotify.php:408 #, 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:398 +#: ../../Zotlabs/Lib/Enotify.php:415 msgid "[$Projectname:Notify] Friend suggestion received" msgstr "[$Projectname:Aviso] Ha recibido una sugerencia de conexión" -#: ../../Zotlabs/Lib/Enotify.php:399 +#: ../../Zotlabs/Lib/Enotify.php:416 #, 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:400 +#: ../../Zotlabs/Lib/Enotify.php:417 #, 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:406 +#: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" msgstr "Nombre:" -#: ../../Zotlabs/Lib/Enotify.php:407 +#: ../../Zotlabs/Lib/Enotify.php:424 msgid "Photo:" msgstr "Foto:" -#: ../../Zotlabs/Lib/Enotify.php:410 +#: ../../Zotlabs/Lib/Enotify.php:427 #, 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:629 +#: ../../Zotlabs/Lib/Enotify.php:647 msgid "[$Projectname:Notify]" msgstr "[$Projectname:Aviso]" -#: ../../Zotlabs/Lib/Enotify.php:793 +#: ../../Zotlabs/Lib/Enotify.php:815 msgid "created a new post" msgstr "ha creado una nueva entrada" -#: ../../Zotlabs/Lib/Enotify.php:794 +#: ../../Zotlabs/Lib/Enotify.php:816 #, php-format msgid "commented on %s's post" msgstr "ha comentado la entrada de %s" +#: ../../Zotlabs/Lib/Enotify.php:823 +#, php-format +msgid "edited a post dated %s" +msgstr "ha editado una entrada fechada el%s" + +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "edited a comment dated %s" +msgstr "ha editado un comentario fechado el %s" + #: ../../Zotlabs/Lib/NativeWiki.php:151 msgid "Wiki updated successfully" msgstr "El wiki se ha actualizado con éxito" @@ -7965,12 +8182,12 @@ msgstr "El wiki se ha actualizado con éxito" msgid "Wiki files deleted successfully" msgstr "Se han borrado con éxito los ficheros del wiki" -#: ../../Zotlabs/Lib/DB_Upgrade.php:95 +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../Zotlabs/Lib/DB_Upgrade.php:101 +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." @@ -8035,11 +8252,11 @@ msgstr "Firma de mensaje incorrecta" msgid "Add Tag" msgstr "Añadir etiqueta" -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:506 +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 msgid "like" msgstr "me gusta" -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:507 +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 msgid "dislike" msgstr "no me gusta" @@ -8132,51 +8349,51 @@ msgstr "Esta es una previsualización sin guardar" msgid "%s show all" msgstr "%s mostrar todo" -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1377 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 msgid "Bold" msgstr "Negrita" -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1378 +#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 msgid "Italic" msgstr "Itálico " -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1379 +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 msgid "Underline" msgstr "Subrayar" -#: ../../Zotlabs/Lib/ThreadItem.php:758 ../../include/conversation.php:1380 +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 msgid "Quote" msgstr "Citar" -#: ../../Zotlabs/Lib/ThreadItem.php:759 ../../include/conversation.php:1381 +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 msgid "Code" msgstr "Código" -#: ../../Zotlabs/Lib/ThreadItem.php:760 +#: ../../Zotlabs/Lib/ThreadItem.php:756 msgid "Image" msgstr "Imagen" -#: ../../Zotlabs/Lib/ThreadItem.php:761 +#: ../../Zotlabs/Lib/ThreadItem.php:757 msgid "Attach File" msgstr "Fichero adjunto" -#: ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../Zotlabs/Lib/ThreadItem.php:758 msgid "Insert Link" msgstr "Insertar enlace" -#: ../../Zotlabs/Lib/ThreadItem.php:763 +#: ../../Zotlabs/Lib/ThreadItem.php:759 msgid "Video" msgstr "Vídeo" -#: ../../Zotlabs/Lib/ThreadItem.php:773 +#: ../../Zotlabs/Lib/ThreadItem.php:769 msgid "Your full name (required)" msgstr "Su nombre completo (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:774 +#: ../../Zotlabs/Lib/ThreadItem.php:770 msgid "Your email address (required)" msgstr "Su dirección de correo electrónico (requerido)" -#: ../../Zotlabs/Lib/ThreadItem.php:775 +#: ../../Zotlabs/Lib/ThreadItem.php:771 msgid "Your website URL (optional)" msgstr "La URL de su sitio web (opcional)" @@ -8192,11 +8409,11 @@ msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:284 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2707 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 msgid "Collection" msgstr "Colección" @@ -8208,8 +8425,8 @@ msgstr "Principal" msgid "Addressbook" msgstr "Libreta de direcciones" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:452 -#: ../../include/nav.php:455 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 msgid "Calendar" msgstr "Calendario" @@ -8221,41 +8438,41 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:270 +#: ../../Zotlabs/Storage/Browser.php:273 msgid "Total" msgstr "Total" -#: ../../Zotlabs/Storage/Browser.php:272 +#: ../../Zotlabs/Storage/Browser.php:275 msgid "Shared" msgstr "Compartido" -#: ../../Zotlabs/Storage/Browser.php:350 +#: ../../Zotlabs/Storage/Browser.php:353 #, 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:355 +#: ../../Zotlabs/Storage/Browser.php:358 #, 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:366 +#: ../../Zotlabs/Storage/Browser.php:369 msgid "WARNING:" msgstr "ATENCIÓN: " -#: ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Storage/Browser.php:381 msgid "Create new folder" msgstr "Crear nueva carpeta" -#: ../../Zotlabs/Storage/Browser.php:380 +#: ../../Zotlabs/Storage/Browser.php:383 msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Storage/Browser.php:393 +#: ../../Zotlabs/Storage/Browser.php:396 msgid "Drop files here to immediately upload" msgstr "Arrastre los ficheros aquí para subirlos de forma inmediata" -#: ../../Zotlabs/Widget/Forums.php:99 +#: ../../Zotlabs/Widget/Forums.php:100 msgid "Forums" msgstr "Foros" @@ -8338,8 +8555,8 @@ msgstr "Seleccionar una agenda para importarla" #: ../../Zotlabs/Widget/Appcategories.php:40 #: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 #: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 -#: ../../include/taxonomy.php:337 ../../include/taxonomy.php:419 -#: ../../include/taxonomy.php:439 ../../include/taxonomy.php:460 +#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 +#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 msgid "Categories" msgstr "Temas" @@ -8381,21 +8598,21 @@ msgstr "Menú de correo privado" msgid "Combined View" msgstr "Vista combinada" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:126 +#: ../../Zotlabs/Widget/Mailmenu.php:20 msgid "Inbox" msgstr "Bandeja de entrada" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:127 +#: ../../Zotlabs/Widget/Mailmenu.php:25 msgid "Outbox" msgstr "Bandeja de salida" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:128 +#: ../../Zotlabs/Widget/Mailmenu.php:30 msgid "New Message" msgstr "Nuevo mensaje" #: ../../Zotlabs/Widget/Chatroom_list.php:16 #: ../../include/conversation.php:1864 ../../include/conversation.php:1867 -#: ../../include/nav.php:466 ../../include/nav.php:469 +#: ../../include/nav.php:434 ../../include/nav.php:437 msgid "Chatrooms" msgstr "Salas de chat" @@ -8477,7 +8694,7 @@ msgstr "foto/imagen" msgid "Remove term" msgstr "Eliminar término" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:316 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:326 msgid "Saved Searches" msgstr "Búsquedas guardadas" @@ -8502,7 +8719,7 @@ msgstr "Páginas del wiki" msgid "Page name" msgstr "Nombre de la página" -#: ../../Zotlabs/Widget/Affinity.php:49 +#: ../../Zotlabs/Widget/Affinity.php:45 msgid "Refresh" msgstr "Recargar" @@ -8519,7 +8736,7 @@ msgid "See more..." msgstr "Ver más..." #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:414 +#: ../../include/features.php:415 msgid "Saved Folders" msgstr "Carpetas guardadas" @@ -8539,7 +8756,7 @@ msgstr "Examinar la cola" msgid "DB updates" msgstr "Actualizaciones de la base de datos" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:231 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 msgid "Admin" msgstr "Administrador" @@ -8599,7 +8816,7 @@ msgstr "Nueva actividad en la red" msgid "New Network Activity Notifications" msgstr "Avisos de nueva actividad en la red" -#: ../../Zotlabs/Widget/Notifications.php:20 ../../include/nav.php:106 +#: ../../Zotlabs/Widget/Notifications.php:20 msgid "View your network activity" msgstr "Ver su actividad en la red" @@ -8608,161 +8825,163 @@ msgid "Mark all notifications read" msgstr "Marcar todas las notificaciones como leídas" #: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:44 -#: ../../Zotlabs/Widget/Notifications.php:139 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 msgid "Show new posts only" msgstr "Mostrar solo las entradas nuevas" -#: ../../Zotlabs/Widget/Notifications.php:34 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "Filtrar por nombre" + +#: ../../Zotlabs/Widget/Notifications.php:35 msgid "New Home Activity" msgstr "Nueva actividad en su página principal" -#: ../../Zotlabs/Widget/Notifications.php:35 +#: ../../Zotlabs/Widget/Notifications.php:36 msgid "New Home Activity Notifications" msgstr "Avisos de nueva actividad en su página principal" -#: ../../Zotlabs/Widget/Notifications.php:38 +#: ../../Zotlabs/Widget/Notifications.php:39 msgid "View your home activity" msgstr "Ver su actividad en su página principal" -#: ../../Zotlabs/Widget/Notifications.php:41 -#: ../../Zotlabs/Widget/Notifications.php:136 +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 msgid "Mark all notifications seen" msgstr "Marcar todas las notificaciones como vistas" -#: ../../Zotlabs/Widget/Notifications.php:52 +#: ../../Zotlabs/Widget/Notifications.php:54 msgid "New Mails" msgstr "Nuevos mensajes de correo" -#: ../../Zotlabs/Widget/Notifications.php:53 +#: ../../Zotlabs/Widget/Notifications.php:55 msgid "New Mails Notifications" msgstr "Avisos de nuevos mensajes de correo" -#: ../../Zotlabs/Widget/Notifications.php:56 +#: ../../Zotlabs/Widget/Notifications.php:58 msgid "View your private mails" msgstr "Ver sus correos privados" -#: ../../Zotlabs/Widget/Notifications.php:59 +#: ../../Zotlabs/Widget/Notifications.php:61 msgid "Mark all messages seen" msgstr "Marcar todos los mensajes como vistos" -#: ../../Zotlabs/Widget/Notifications.php:67 +#: ../../Zotlabs/Widget/Notifications.php:69 msgid "New Events" msgstr "Eventos nuevos" -#: ../../Zotlabs/Widget/Notifications.php:68 +#: ../../Zotlabs/Widget/Notifications.php:70 msgid "New Events Notifications" msgstr "Avisos de nuevos eventos" -#: ../../Zotlabs/Widget/Notifications.php:71 ../../include/nav.php:132 +#: ../../Zotlabs/Widget/Notifications.php:73 msgid "View events" msgstr "Ver los eventos" -#: ../../Zotlabs/Widget/Notifications.php:74 ../../include/nav.php:133 +#: ../../Zotlabs/Widget/Notifications.php:76 msgid "Mark all events seen" msgstr "Marcar todos los eventos como leidos" -#: ../../Zotlabs/Widget/Notifications.php:83 +#: ../../Zotlabs/Widget/Notifications.php:85 msgid "New Connections Notifications" msgstr "Avisos de nuevas conexiones" -#: ../../Zotlabs/Widget/Notifications.php:86 +#: ../../Zotlabs/Widget/Notifications.php:88 msgid "View all connections" msgstr "Ver todas las conexiones" -#: ../../Zotlabs/Widget/Notifications.php:94 +#: ../../Zotlabs/Widget/Notifications.php:96 msgid "New Files" msgstr "Ficheros nuevos" -#: ../../Zotlabs/Widget/Notifications.php:95 +#: ../../Zotlabs/Widget/Notifications.php:97 msgid "New Files Notifications" msgstr "Avisos de nuevos ficheros" -#: ../../Zotlabs/Widget/Notifications.php:102 -#: ../../Zotlabs/Widget/Notifications.php:103 ../../include/nav.php:119 +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 msgid "Notices" msgstr "Avisos" -#: ../../Zotlabs/Widget/Notifications.php:106 +#: ../../Zotlabs/Widget/Notifications.php:108 msgid "View all notices" msgstr "Ver todos los avisos" -#: ../../Zotlabs/Widget/Notifications.php:109 +#: ../../Zotlabs/Widget/Notifications.php:111 msgid "Mark all notices seen" msgstr "Marcar como leídos todos los avisos" -#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:121 msgid "New Registrations" msgstr "Registros nuevos" -#: ../../Zotlabs/Widget/Notifications.php:120 +#: ../../Zotlabs/Widget/Notifications.php:122 msgid "New Registrations Notifications" msgstr "Notificaciones de nuevos registros" -#: ../../Zotlabs/Widget/Notifications.php:130 +#: ../../Zotlabs/Widget/Notifications.php:132 msgid "Public Stream Notifications" msgstr "Avisos del \"stream\" público" -#: ../../Zotlabs/Widget/Notifications.php:133 +#: ../../Zotlabs/Widget/Notifications.php:135 msgid "View the public stream" msgstr "Ver el \"stream\" público" -#: ../../Zotlabs/Widget/Notifications.php:147 ../../include/nav.php:316 -msgid "Loading" -msgstr "Cargando" +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Lo sentimos, por el momento no ha recibido ninguna notificación" #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "No se ha encontrado el canal de origen." -#: ../../boot.php:1644 +#: ../../boot.php:1562 msgid "Create an account to access services and applications" msgstr "Crear una cuenta para acceder a los servicios y aplicaciones" -#: ../../boot.php:1663 ../../include/nav.php:145 ../../include/nav.php:174 -#: ../../include/nav.php:191 +#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 msgid "Logout" msgstr "Finalizar sesión" -#: ../../boot.php:1667 +#: ../../boot.php:1585 msgid "Login/Email" msgstr "Inicio de sesión / Correo electrónico" -#: ../../boot.php:1668 +#: ../../boot.php:1586 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1669 +#: ../../boot.php:1587 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1672 +#: ../../boot.php:1590 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2257 -msgid "toggle mobile" -msgstr "cambiar a modo móvil" - -#: ../../boot.php:2419 +#: ../../boot.php:2347 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Error SSL del sitio web en %s" -#: ../../boot.php:2424 +#: ../../boot.php:2352 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:2540 +#: ../../boot.php:2468 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Las tareas de Cron no están funcionando en %s" -#: ../../boot.php:2545 +#: ../../boot.php:2473 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2546 ../../include/datetime.php:292 +#: ../../boot.php:2474 ../../include/datetime.php:232 msgid "never" msgstr "nunca" @@ -8887,7 +9106,7 @@ msgid "Errors encountered deleting database table " msgstr "Errores encontrados al eliminar la tabla de la base de datos" #: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:773 +#: ../../addon/twitter/twitter.php:779 msgid "Submit Settings" msgstr "Enviar los ajustes" @@ -9090,7 +9309,7 @@ msgid "Page to load after image selection." msgstr "Página para cargar después de la selección de imágenes." #: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 -#: ../../include/nav.php:153 +#: ../../include/nav.php:119 msgid "Edit Profile" msgstr "Editar el perfil" @@ -9147,6 +9366,11 @@ msgstr "Subida por: " msgid "Drawn by: " msgstr "Creada por: " +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "Usar esta imagen" + #: ../../addon/openclipatar/openclipatar.php:192 msgid "Or select from a free OpenClipart.org image:" msgstr "O seleccionar una imagen gratuita de OpenClipart.org: " @@ -9163,10 +9387,6 @@ msgstr "Error desconocido. Por favor, inténtelo otra vez." msgid "Profile photo updated successfully." msgstr "Se ha actualizado con éxito la foto de perfil." -#: ../../addon/zotvi/zot6.php:25 ../../include/zot.php:4051 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" - #: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "Indicador (\"flag\") de fotos de adultos" @@ -9263,7 +9483,7 @@ msgstr "Se han guardado los ajustes de NSFW." msgid "Possible adult content" msgstr "Posible contenido para adultos" -#: ../../addon/nsfw/nsfw.php:211 +#: ../../addon/nsfw/nsfw.php:222 #, php-format msgid "%s - view" msgstr "ver - %s" @@ -9320,6 +9540,15 @@ msgstr "Publicar en Dreamwidth de forma predeterminada" msgid "Dreamwidth Post Settings" msgstr "Ajustes de publicación en Dreamwidth" +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "Nuevo registro" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "Mensaje enviado a %s. Registro de una nueva cuenta: %s" + #: ../../addon/dirstats/dirstats.php:94 msgid "Hubzilla Directory Stats" msgstr "Estadísticas de directorio de Hubzilla" @@ -9568,17 +9797,17 @@ msgstr "Fecha de nacimiento" msgid "OpenID protocol error. No ID returned." msgstr "Error de protocolo OpenID. No se recuperó ninguna ID." -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:289 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 msgid "Login failed." msgstr "El acceso ha fallado." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 +#: ../../include/selectors.php:66 ../../include/channel.php:1481 msgid "Male" msgstr "Hombre" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 +#: ../../include/selectors.php:66 ../../include/channel.php:1479 msgid "Female" msgstr "Mujer" @@ -9765,39 +9994,39 @@ msgstr "una declaración de amor eterno" msgid "declared undying love for" msgstr "ha declarado amor eterno a" -#: ../../addon/diaspora/diaspora.php:772 +#: ../../addon/diaspora/diaspora.php:778 msgid "Diaspora Protocol Settings updated." msgstr "Los ajustes del protocolo de Diaspora se han actualizado." -#: ../../addon/diaspora/diaspora.php:791 +#: ../../addon/diaspora/diaspora.php:797 msgid "" "The Diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo de Diaspora no admite la independencia de la ubicación. Las conexiones que realice dentro de esa red pueden ser inaccesibles desde ubicaciones de canales alternativos." -#: ../../addon/diaspora/diaspora.php:794 +#: ../../addon/diaspora/diaspora.php:800 msgid "Enable the Diaspora protocol for this channel" msgstr "Activar el protocolo de Diaspora para este canal" -#: ../../addon/diaspora/diaspora.php:798 +#: ../../addon/diaspora/diaspora.php:804 msgid "Allow any Diaspora member to comment on your public posts" msgstr "Permitir a cualquier miembro de Diaspora comentar sus entradas públicas" -#: ../../addon/diaspora/diaspora.php:802 +#: ../../addon/diaspora/diaspora.php:808 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Impedir que sus \"hashtags\" sean redirigidos a otros sitios " -#: ../../addon/diaspora/diaspora.php:806 +#: ../../addon/diaspora/diaspora.php:812 msgid "" "Sign and forward posts and comments with no existing Diaspora signature" msgstr "Firmar y enviar entradas y comentarios sin firma de Diaspora" -#: ../../addon/diaspora/diaspora.php:811 +#: ../../addon/diaspora/diaspora.php:817 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "\"Hashtags\" seguidos (separados por comas, sin incluir #)" -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 msgid "Diaspora Protocol Settings" msgstr "Ajustes del protocolo de Diaspora" @@ -9991,6 +10220,10 @@ msgstr "Prueba de correo" msgid "Message subject" msgstr "Asunto del mensaje" +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Usar markdown para editar las entradas" + #: ../../addon/openstreetmap/openstreetmap.php:146 msgid "View Larger" msgstr "Ver más grande" @@ -10073,7 +10306,7 @@ msgid "Hubzilla to Friendica Post Settings" msgstr "Ajustes de publicación de Hubzilla a Friendica" #: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 -#: ../../include/channel.php:1567 +#: ../../include/channel.php:1568 msgid "Status:" msgstr "Estado:" @@ -10238,35 +10471,35 @@ msgstr "Nombre de inicio de sesión en Friendica" msgid "Friendica Login Password" msgstr "Contraseña de inicio de sesión en Friendica" -#: ../../addon/pubcrawl/as.php:1077 ../../addon/pubcrawl/as.php:1164 -#: ../../addon/pubcrawl/as.php:1339 ../../include/network.php:1768 +#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 +#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 msgid "ActivityPub" msgstr "ActivityPub" -#: ../../addon/pubcrawl/pubcrawl.php:1033 +#: ../../addon/pubcrawl/pubcrawl.php:1034 msgid "ActivityPub Protocol Settings updated." msgstr "Se han actualizado los ajustes del protocolo ActivityPub." -#: ../../addon/pubcrawl/pubcrawl.php:1042 +#: ../../addon/pubcrawl/pubcrawl.php:1043 msgid "" "The ActivityPub protocol does not support location independence. Connections" " you make within that network may be unreachable from alternate channel " "locations." msgstr "El protocolo ActivityPub no soporta la independencia de ubicación. Las conexiones que realice dentro de esa red pueden no ser accesibles desde ubicaciones de canales alternativos." -#: ../../addon/pubcrawl/pubcrawl.php:1045 +#: ../../addon/pubcrawl/pubcrawl.php:1046 msgid "Enable the ActivityPub protocol for this channel" msgstr "Activar el protocolo ActivityPub para este canal" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Send multi-media HTML articles" msgstr "Enviar artículos multimedia en HTML" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Not supported by some microblog services such as Mastodon" msgstr "No soportado por algunos servicios de microblog como Mastodon" -#: ../../addon/pubcrawl/pubcrawl.php:1053 +#: ../../addon/pubcrawl/pubcrawl.php:1054 msgid "ActivityPub Protocol Settings" msgstr "Ajustes del protocolo ActivityPub" @@ -10572,7 +10805,7 @@ msgstr "La API actual de GNU social es " msgid "Cancel GNU social Connection" msgstr "Cancelar la conexión de GNU social" -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:232 +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 msgid "Currently connected to: " msgstr "Actualmente está conectado a: " @@ -10604,7 +10837,7 @@ msgid "" "account by default" msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta GNU-social asociada de forma predeterminada" -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 msgid "Clear OAuth configuration" msgstr "Limpiar la configuración de OAuth" @@ -10632,39 +10865,39 @@ msgstr "Generador QR" msgid "Enter some text" msgstr "Escribir algún texto" -#: ../../addon/chess/chess.php:278 ../../addon/chess/chess.php:465 +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 msgid "Invalid game." msgstr "Juego no válido." -#: ../../addon/chess/chess.php:284 ../../addon/chess/chess.php:471 +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 msgid "You are not a player in this game." msgstr "Usted no participa en este juego." -#: ../../addon/chess/chess.php:340 +#: ../../addon/chess/chess.php:415 msgid "You must be a local channel to create a game." msgstr "Debe ser un canal local para crear un juego" -#: ../../addon/chess/chess.php:358 +#: ../../addon/chess/chess.php:433 msgid "You must select one opponent that is not yourself." msgstr "Debe seleccionar un oponente que no sea usted mismo." -#: ../../addon/chess/chess.php:367 -msgid "You must select white or black." -msgstr "Debe elegir blancas o negras." +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "Elegido un color aleatorio." -#: ../../addon/chess/chess.php:375 +#: ../../addon/chess/chess.php:452 msgid "Error creating new game." msgstr "Error al crear un nuevo juego." -#: ../../addon/chess/chess.php:409 ../../include/channel.php:1152 +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 msgid "Requested channel is not available." msgstr "El canal solicitado no está disponible." -#: ../../addon/chess/chess.php:423 +#: ../../addon/chess/chess.php:500 msgid "You must select a local channel /chess/channelname" msgstr "Debe seleccionar un canal local /chess/nombredelcanal" -#: ../../addon/chess/chess.php:969 +#: ../../addon/chess/chess.php:1066 msgid "Enable notifications" msgstr "Habilitar notificaciones" @@ -10672,17 +10905,17 @@ msgstr "Habilitar notificaciones" msgid "Post to Twitter" msgstr "Publicar en Twitter" -#: ../../addon/twitter/twitter.php:154 +#: ../../addon/twitter/twitter.php:155 msgid "Twitter settings updated." msgstr "Se han actualizado los ajustes de Twitter." -#: ../../addon/twitter/twitter.php:183 +#: ../../addon/twitter/twitter.php:184 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "No se encontró ningún par de \"consumer key\" para Twitter. Póngase en contacto con el administrador del sitio." -#: ../../addon/twitter/twitter.php:205 +#: ../../addon/twitter/twitter.php:206 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -10691,15 +10924,15 @@ msgid "" " be posted to Twitter." msgstr "En esta instancia de Hubzilla, el complemento de Twitter estaba habilitado pero aún no ha conectado su cuenta a la cuenta de Twitter. Para ello, haga clic en el botón de abajo, para obtener un PIN de Twitter que debe copiar en el cuadro de entrada a continuación y enviar el formulario. Solo sus entradas públicas se publicarán en Twitter." -#: ../../addon/twitter/twitter.php:207 +#: ../../addon/twitter/twitter.php:208 msgid "Log in with Twitter" msgstr "Iniciar sesión en Twitter" -#: ../../addon/twitter/twitter.php:210 +#: ../../addon/twitter/twitter.php:211 msgid "Copy the PIN from Twitter here" msgstr "Copiar aquí el PIN de Twitter" -#: ../../addon/twitter/twitter.php:237 +#: ../../addon/twitter/twitter.php:238 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -10707,27 +10940,35 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido." -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "Allow posting to Twitter" msgstr "Permitir la publicación en Twitter" -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "" "If enabled your public postings can be posted to the associated Twitter " "account" msgstr "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "Longitud del mensaje en Twitter" + +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "Longitud máxima del tweet" + +#: ../../addon/twitter/twitter.php:252 msgid "Send public postings to Twitter by default" msgstr "Enviar mensajes públicos a Twitter de forma predeterminada" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:252 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" msgstr "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada." -#: ../../addon/twitter/twitter.php:264 +#: ../../addon/twitter/twitter.php:270 msgid "Twitter Post Settings" msgstr "Ajustes de publicación en Twitter" @@ -10951,8 +11192,8 @@ msgstr "Compartir identidad extendida" #: ../../addon/sendzid/sendzid.php:26 msgid "" "Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Compartir su identidad con todos los sitios web en Internet. Cuando se inhabilita, la identidad sólo se comparte con los sitios de la matriz." +"identity is only shared with $Projectname sites." +msgstr "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de $Projectname." #: ../../addon/tictac/tictac.php:21 msgid "Three Dimensional Tic-Tac-Toe" @@ -11335,11 +11576,11 @@ msgstr "Transexual" msgid "Hermaphrodite" msgstr "Hermafrodita" -#: ../../include/selectors.php:49 ../../include/channel.php:1484 +#: ../../include/selectors.php:49 ../../include/channel.php:1485 msgid "Neuter" msgstr "Neutral" -#: ../../include/selectors.php:49 ../../include/channel.php:1486 +#: ../../include/selectors.php:49 ../../include/channel.php:1487 msgid "Non-specific" msgstr "No especificado" @@ -11539,8 +11780,8 @@ msgstr "%1$s ahora está conectado/a con %2$s" msgid "%1$s poked %2$s" msgstr "%1$s ha dado un toque a %2$s" -#: ../../include/conversation.php:251 ../../include/text.php:1104 -#: ../../include/text.php:1109 +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 msgid "poked" msgstr "ha dado un toque a" @@ -11742,32 +11983,32 @@ msgstr "Correo basura" msgid "Posts flagged as SPAM" msgstr "Publicaciones marcadas como basura" -#: ../../include/conversation.php:1811 ../../include/nav.php:413 +#: ../../include/conversation.php:1811 ../../include/nav.php:381 msgid "Status Messages and Posts" msgstr "Mensajes de estado y publicaciones" -#: ../../include/conversation.php:1824 ../../include/nav.php:426 +#: ../../include/conversation.php:1824 ../../include/nav.php:394 msgid "Profile Details" msgstr "Detalles del perfil" -#: ../../include/conversation.php:1834 ../../include/nav.php:436 +#: ../../include/conversation.php:1834 ../../include/nav.php:404 #: ../../include/photos.php:655 msgid "Photo Albums" msgstr "Álbumes de fotos" -#: ../../include/conversation.php:1842 ../../include/nav.php:444 +#: ../../include/conversation.php:1842 ../../include/nav.php:412 msgid "Files and Storage" msgstr "Ficheros y repositorio" -#: ../../include/conversation.php:1879 ../../include/nav.php:479 +#: ../../include/conversation.php:1879 ../../include/nav.php:447 msgid "Bookmarks" msgstr "Marcadores" -#: ../../include/conversation.php:1882 ../../include/nav.php:482 +#: ../../include/conversation.php:1882 ../../include/nav.php:450 msgid "Saved Bookmarks" msgstr "Marcadores guardados" -#: ../../include/conversation.php:1893 ../../include/nav.php:493 +#: ../../include/conversation.php:1893 ../../include/nav.php:461 msgid "View Cards" msgstr "Ver las fichas" @@ -11775,11 +12016,11 @@ msgstr "Ver las fichas" msgid "articles" msgstr "artículos" -#: ../../include/conversation.php:1904 ../../include/nav.php:504 +#: ../../include/conversation.php:1904 ../../include/nav.php:472 msgid "View Articles" msgstr "Ver los artículos" -#: ../../include/conversation.php:1915 ../../include/nav.php:516 +#: ../../include/conversation.php:1915 ../../include/nav.php:484 msgid "View Webpages" msgstr "Ver páginas web" @@ -11851,368 +12092,368 @@ 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:105 +#: ../../include/import.php:106 msgid "Cloned channel not found. Import failed." msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../include/text.php:478 +#: ../../include/text.php:492 msgid "prev" msgstr "anterior" -#: ../../include/text.php:480 +#: ../../include/text.php:494 msgid "first" msgstr "primera" -#: ../../include/text.php:509 +#: ../../include/text.php:523 msgid "last" msgstr "última" -#: ../../include/text.php:512 +#: ../../include/text.php:526 msgid "next" msgstr "próxima" -#: ../../include/text.php:523 +#: ../../include/text.php:537 msgid "older" msgstr "más antiguas" -#: ../../include/text.php:525 +#: ../../include/text.php:539 msgid "newer" msgstr "más recientes" -#: ../../include/text.php:947 +#: ../../include/text.php:961 msgid "No connections" msgstr "Sin conexiones" -#: ../../include/text.php:972 +#: ../../include/text.php:993 #, php-format msgid "View all %s connections" msgstr "Ver todas las %s conexiones" -#: ../../include/text.php:1104 ../../include/text.php:1109 +#: ../../include/text.php:1129 ../../include/text.php:1133 msgid "poke" msgstr "un toque" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "ping" msgstr "un \"ping\"" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "pinged" msgstr "ha enviado un \"ping\" a" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prod" msgstr "una incitación " -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prodded" msgstr "ha incitado a " -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slap" msgstr "una bofetada " -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slapped" msgstr "ha abofeteado a " -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "finger" msgstr "un \"finger\" " -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "fingered" msgstr "envió un \"finger\" a" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuff" msgstr "un reproche" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuffed" msgstr "ha hecho un reproche a " -#: ../../include/text.php:1126 +#: ../../include/text.php:1161 msgid "happy" msgstr "feliz " -#: ../../include/text.php:1127 +#: ../../include/text.php:1162 msgid "sad" msgstr "triste " -#: ../../include/text.php:1128 +#: ../../include/text.php:1163 msgid "mellow" msgstr "tranquilo/a" -#: ../../include/text.php:1129 +#: ../../include/text.php:1164 msgid "tired" msgstr "cansado/a " -#: ../../include/text.php:1130 +#: ../../include/text.php:1165 msgid "perky" msgstr "vivaz" -#: ../../include/text.php:1131 +#: ../../include/text.php:1166 msgid "angry" msgstr "enfadado/a" -#: ../../include/text.php:1132 +#: ../../include/text.php:1167 msgid "stupefied" msgstr "asombrado/a" -#: ../../include/text.php:1133 +#: ../../include/text.php:1168 msgid "puzzled" msgstr "perplejo/a" -#: ../../include/text.php:1134 +#: ../../include/text.php:1169 msgid "interested" msgstr "interesado/a" -#: ../../include/text.php:1135 +#: ../../include/text.php:1170 msgid "bitter" msgstr "amargado/a" -#: ../../include/text.php:1136 +#: ../../include/text.php:1171 msgid "cheerful" msgstr "alegre" -#: ../../include/text.php:1137 +#: ../../include/text.php:1172 msgid "alive" msgstr "animado/a" -#: ../../include/text.php:1138 +#: ../../include/text.php:1173 msgid "annoyed" msgstr "molesto/a" -#: ../../include/text.php:1139 +#: ../../include/text.php:1174 msgid "anxious" msgstr "ansioso/a" -#: ../../include/text.php:1140 +#: ../../include/text.php:1175 msgid "cranky" msgstr "de mal humor" -#: ../../include/text.php:1141 +#: ../../include/text.php:1176 msgid "disturbed" msgstr "perturbado/a" -#: ../../include/text.php:1142 +#: ../../include/text.php:1177 msgid "frustrated" msgstr "frustrado/a" -#: ../../include/text.php:1143 +#: ../../include/text.php:1178 msgid "depressed" msgstr "deprimido/a" -#: ../../include/text.php:1144 +#: ../../include/text.php:1179 msgid "motivated" msgstr "motivado/a" -#: ../../include/text.php:1145 +#: ../../include/text.php:1180 msgid "relaxed" msgstr "relajado/a" -#: ../../include/text.php:1146 +#: ../../include/text.php:1181 msgid "surprised" msgstr "sorprendido/a" -#: ../../include/text.php:1320 ../../include/js_strings.php:70 +#: ../../include/text.php:1360 ../../include/js_strings.php:76 msgid "Monday" msgstr "lunes" -#: ../../include/text.php:1320 ../../include/js_strings.php:71 +#: ../../include/text.php:1360 ../../include/js_strings.php:77 msgid "Tuesday" msgstr "martes" -#: ../../include/text.php:1320 ../../include/js_strings.php:72 +#: ../../include/text.php:1360 ../../include/js_strings.php:78 msgid "Wednesday" msgstr "miércoles" -#: ../../include/text.php:1320 ../../include/js_strings.php:73 +#: ../../include/text.php:1360 ../../include/js_strings.php:79 msgid "Thursday" msgstr "jueves" -#: ../../include/text.php:1320 ../../include/js_strings.php:74 +#: ../../include/text.php:1360 ../../include/js_strings.php:80 msgid "Friday" msgstr "viernes" -#: ../../include/text.php:1320 ../../include/js_strings.php:75 +#: ../../include/text.php:1360 ../../include/js_strings.php:81 msgid "Saturday" msgstr "sábado" -#: ../../include/text.php:1320 ../../include/js_strings.php:69 +#: ../../include/text.php:1360 ../../include/js_strings.php:75 msgid "Sunday" msgstr "domingo" -#: ../../include/text.php:1324 ../../include/js_strings.php:45 +#: ../../include/text.php:1364 ../../include/js_strings.php:51 msgid "January" msgstr "enero" -#: ../../include/text.php:1324 ../../include/js_strings.php:46 +#: ../../include/text.php:1364 ../../include/js_strings.php:52 msgid "February" msgstr "febrero" -#: ../../include/text.php:1324 ../../include/js_strings.php:47 +#: ../../include/text.php:1364 ../../include/js_strings.php:53 msgid "March" msgstr "marzo" -#: ../../include/text.php:1324 ../../include/js_strings.php:48 +#: ../../include/text.php:1364 ../../include/js_strings.php:54 msgid "April" msgstr "abril" -#: ../../include/text.php:1324 +#: ../../include/text.php:1364 msgid "May" msgstr "mayo" -#: ../../include/text.php:1324 ../../include/js_strings.php:50 +#: ../../include/text.php:1364 ../../include/js_strings.php:56 msgid "June" msgstr "junio" -#: ../../include/text.php:1324 ../../include/js_strings.php:51 +#: ../../include/text.php:1364 ../../include/js_strings.php:57 msgid "July" msgstr "julio" -#: ../../include/text.php:1324 ../../include/js_strings.php:52 +#: ../../include/text.php:1364 ../../include/js_strings.php:58 msgid "August" msgstr "agosto" -#: ../../include/text.php:1324 ../../include/js_strings.php:53 +#: ../../include/text.php:1364 ../../include/js_strings.php:59 msgid "September" msgstr "septiembre" -#: ../../include/text.php:1324 ../../include/js_strings.php:54 +#: ../../include/text.php:1364 ../../include/js_strings.php:60 msgid "October" msgstr "octubre" -#: ../../include/text.php:1324 ../../include/js_strings.php:55 +#: ../../include/text.php:1364 ../../include/js_strings.php:61 msgid "November" msgstr "noviembre" -#: ../../include/text.php:1324 ../../include/js_strings.php:56 +#: ../../include/text.php:1364 ../../include/js_strings.php:62 msgid "December" msgstr "diciembre" -#: ../../include/text.php:1388 ../../include/text.php:1392 +#: ../../include/text.php:1428 ../../include/text.php:1432 msgid "Unknown Attachment" msgstr "Adjunto no reconocido" -#: ../../include/text.php:1394 ../../include/feedutils.php:825 +#: ../../include/text.php:1434 ../../include/feedutils.php:852 msgid "unknown" msgstr "desconocido" -#: ../../include/text.php:1430 +#: ../../include/text.php:1470 msgid "remove category" msgstr "eliminar el tema" -#: ../../include/text.php:1504 +#: ../../include/text.php:1544 msgid "remove from file" msgstr "eliminar del fichero" -#: ../../include/text.php:1623 ../../include/message.php:12 +#: ../../include/text.php:1686 ../../include/message.php:12 msgid "Download binary/encrypted content" msgstr "Descargar contenido binario o cifrado" -#: ../../include/text.php:1782 ../../include/language.php:364 +#: ../../include/text.php:1848 ../../include/language.php:397 msgid "default" msgstr "por defecto" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "Page layout" msgstr "Plantilla de la página" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 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:1801 +#: ../../include/text.php:1867 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:1804 +#: ../../include/text.php:1870 msgid "Comanche Layout" msgstr "Plantilla de Comanche" -#: ../../include/text.php:1809 +#: ../../include/text.php:1875 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:1818 +#: ../../include/text.php:1884 msgid "Page content type" msgstr "Tipo de contenido de la página" -#: ../../include/text.php:1951 +#: ../../include/text.php:2017 msgid "activity" msgstr "la actividad" -#: ../../include/text.php:2014 +#: ../../include/text.php:2099 msgid "a-z, 0-9, -, and _ only" msgstr "a-z, 0-9, -, and _ only" -#: ../../include/text.php:2285 +#: ../../include/text.php:2399 msgid "Design Tools" msgstr "Herramientas de diseño web" -#: ../../include/text.php:2291 +#: ../../include/text.php:2405 msgid "Pages" msgstr "Páginas" -#: ../../include/text.php:2313 +#: ../../include/text.php:2427 msgid "Import website..." msgstr "Importar un sitio web..." -#: ../../include/text.php:2314 +#: ../../include/text.php:2428 msgid "Select folder to import" msgstr "Seleccionar la carpeta que se va a importar" -#: ../../include/text.php:2315 +#: ../../include/text.php:2429 msgid "Import from a zipped folder:" msgstr "Importar desde una carpeta comprimida: " -#: ../../include/text.php:2316 +#: ../../include/text.php:2430 msgid "Import from cloud files:" msgstr "Importar desde los ficheros en la nube: " -#: ../../include/text.php:2317 +#: ../../include/text.php:2431 msgid "/cloud/channel/path/to/folder" msgstr "/cloud/canal/ruta/a la/carpeta" -#: ../../include/text.php:2318 +#: ../../include/text.php:2432 msgid "Enter path to website files" msgstr "Ruta a los ficheros del sitio web" -#: ../../include/text.php:2319 +#: ../../include/text.php:2433 msgid "Select folder" msgstr "Seleccionar la carpeta" -#: ../../include/text.php:2320 +#: ../../include/text.php:2434 msgid "Export website..." msgstr "Exportar un sitio web..." -#: ../../include/text.php:2321 +#: ../../include/text.php:2435 msgid "Export to a zip file" msgstr "Exportar a un fichero comprimido .zip" -#: ../../include/text.php:2322 +#: ../../include/text.php:2436 msgid "website.zip" msgstr "sitio_web.zip" -#: ../../include/text.php:2323 +#: ../../include/text.php:2437 msgid "Enter a name for the zip file." msgstr "Escriba un nombre para el fichero zip." -#: ../../include/text.php:2324 +#: ../../include/text.php:2438 msgid "Export to cloud files" msgstr "Exportar a la nube de ficheros" -#: ../../include/text.php:2325 +#: ../../include/text.php:2439 msgid "/path/to/export/folder" msgstr "/ruta/para/exportar/carpeta" -#: ../../include/text.php:2326 +#: ../../include/text.php:2440 msgid "Enter a path to a cloud files destination." msgstr "Escriba una ruta de destino a la nube de ficheros." -#: ../../include/text.php:2327 +#: ../../include/text.php:2441 msgid "Specify folder" msgstr "Especificar una carpeta" @@ -12260,7 +12501,7 @@ msgstr "Conexiones comunes" msgid "View all %d common connections" msgstr "Ver todas las %d conexiones comunes" -#: ../../include/markdown.php:158 ../../include/bbcode.php:339 +#: ../../include/markdown.php:158 ../../include/bbcode.php:343 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s escribió %2$s siguiente %3$s" @@ -12364,182 +12605,182 @@ msgstr "Por favor, introduzca una dirección de enlace" 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 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "antes" +#: ../../include/js_strings.php:33 +msgid "timeago.suffixAgo" +msgstr "timeago.suffixAgo" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "desde ahora" +#: ../../include/js_strings.php:34 +msgid "timeago.suffixFromNow" +msgstr "timeago.suffixFromNow" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "menos de un minuto" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "alrededor de un minuto" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d minutos" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "alrededor de una hora" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "alrededor de %d horas" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "un día" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d días" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "alrededor de un mes" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d meses" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "alrededor de un año" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d años" -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:43 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:49 +#: ../../include/js_strings.php:55 msgctxt "long" msgid "May" msgstr "mayo" -#: ../../include/js_strings.php:57 +#: ../../include/js_strings.php:63 msgid "Jan" msgstr "ene" -#: ../../include/js_strings.php:58 +#: ../../include/js_strings.php:64 msgid "Feb" msgstr "feb" -#: ../../include/js_strings.php:59 +#: ../../include/js_strings.php:65 msgid "Mar" msgstr "mar" -#: ../../include/js_strings.php:60 +#: ../../include/js_strings.php:66 msgid "Apr" msgstr "abr" -#: ../../include/js_strings.php:61 +#: ../../include/js_strings.php:67 msgctxt "short" msgid "May" msgstr "may" -#: ../../include/js_strings.php:62 +#: ../../include/js_strings.php:68 msgid "Jun" msgstr "jun" -#: ../../include/js_strings.php:63 +#: ../../include/js_strings.php:69 msgid "Jul" msgstr "jul" -#: ../../include/js_strings.php:64 +#: ../../include/js_strings.php:70 msgid "Aug" msgstr "ago" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:71 msgid "Sep" msgstr "sep" -#: ../../include/js_strings.php:66 +#: ../../include/js_strings.php:72 msgid "Oct" msgstr "oct" -#: ../../include/js_strings.php:67 +#: ../../include/js_strings.php:73 msgid "Nov" msgstr "nov" -#: ../../include/js_strings.php:68 +#: ../../include/js_strings.php:74 msgid "Dec" msgstr "dic" -#: ../../include/js_strings.php:76 +#: ../../include/js_strings.php:82 msgid "Sun" msgstr "dom" -#: ../../include/js_strings.php:77 +#: ../../include/js_strings.php:83 msgid "Mon" msgstr "lun" -#: ../../include/js_strings.php:78 +#: ../../include/js_strings.php:84 msgid "Tue" msgstr "mar" -#: ../../include/js_strings.php:79 +#: ../../include/js_strings.php:85 msgid "Wed" msgstr "mié" -#: ../../include/js_strings.php:80 +#: ../../include/js_strings.php:86 msgid "Thu" msgstr "jue" -#: ../../include/js_strings.php:81 +#: ../../include/js_strings.php:87 msgid "Fri" msgstr "vie" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:88 msgid "Sat" msgstr "sáb" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:89 msgctxt "calendar" msgid "today" msgstr "hoy" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:90 msgctxt "calendar" msgid "month" msgstr "mes" -#: ../../include/js_strings.php:85 +#: ../../include/js_strings.php:91 msgctxt "calendar" msgid "week" msgstr "semana" -#: ../../include/js_strings.php:86 +#: ../../include/js_strings.php:92 msgctxt "calendar" msgid "day" msgstr "día" -#: ../../include/js_strings.php:87 +#: ../../include/js_strings.php:93 msgctxt "calendar" msgid "All day" msgstr "Todos los días" @@ -12587,61 +12828,61 @@ msgstr "%1$s ha actualizado %2$s, cambiando %3$s." msgid "Item was not found." msgstr "Elemento no encontrado." -#: ../../include/attach.php:553 +#: ../../include/attach.php:554 msgid "No source file." msgstr "Ningún fichero de origen" -#: ../../include/attach.php:575 +#: ../../include/attach.php:576 msgid "Cannot locate file to replace" msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../include/attach.php:593 +#: ../../include/attach.php:595 msgid "Cannot locate file to revise/update" msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../include/attach.php:734 +#: ../../include/attach.php:737 #, php-format msgid "File exceeds size limit of %d" msgstr "El fichero supera el limite de tamaño de %d" -#: ../../include/attach.php:754 +#: ../../include/attach.php:758 #, 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:929 +#: ../../include/attach.php:940 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:948 +#: ../../include/attach.php:959 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:1022 ../../include/attach.php:1038 +#: ../../include/attach.php:1033 ../../include/attach.php:1049 msgid "Path not available." msgstr "Ruta no disponible." -#: ../../include/attach.php:1087 ../../include/attach.php:1252 +#: ../../include/attach.php:1098 ../../include/attach.php:1263 msgid "Empty pathname" msgstr "Ruta vacía" -#: ../../include/attach.php:1113 +#: ../../include/attach.php:1124 msgid "duplicate filename or path" msgstr "Nombre duplicado de ruta o fichero" -#: ../../include/attach.php:1138 +#: ../../include/attach.php:1149 msgid "Path not found." msgstr "Ruta no encontrada" -#: ../../include/attach.php:1206 +#: ../../include/attach.php:1217 msgid "mkdir failed." msgstr "mkdir ha fallado." -#: ../../include/attach.php:1210 +#: ../../include/attach.php:1221 msgid "database storage failed." msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../include/attach.php:1258 +#: ../../include/attach.php:1269 msgid "Empty path" msgstr "Ruta vacía" @@ -12688,34 +12929,34 @@ msgstr "Visible para las conexiones permitidas." msgid "Visible to specific connections." msgstr "Visible para conexiones específicas." -#: ../../include/items.php:4117 +#: ../../include/items.php:4147 msgid "Privacy group is empty." msgstr "El grupo de canales está vacío." -#: ../../include/items.php:4124 +#: ../../include/items.php:4154 #, php-format msgid "Privacy group: %s" msgstr "Grupo de canales: %s" -#: ../../include/items.php:4136 +#: ../../include/items.php:4166 msgid "Connection not found." msgstr "Conexión no encontrada" -#: ../../include/items.php:4485 +#: ../../include/items.php:4515 msgid "profile photo" msgstr "foto del perfil" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 #, php-format msgid "[Edited %s]" msgstr "[se ha editado %s]" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Post" msgstr "Publicar" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Comment" msgstr "Comentar" @@ -12760,11 +13001,11 @@ msgstr "Crear un nuevo perfil" msgid "Visible to everybody" msgstr "Visible para todos" -#: ../../include/channel.php:1396 ../../include/channel.php:1523 +#: ../../include/channel.php:1396 ../../include/channel.php:1524 msgid "Gender:" msgstr "Género:" -#: ../../include/channel.php:1398 ../../include/channel.php:1578 +#: ../../include/channel.php:1398 ../../include/channel.php:1579 msgid "Homepage:" msgstr "Página personal:" @@ -12772,108 +13013,112 @@ msgstr "Página personal:" msgid "Online Now" msgstr "Ahora en línea" -#: ../../include/channel.php:1482 +#: ../../include/channel.php:1452 +msgid "Change your profile photo" +msgstr "Cambiar su foto del perfil" + +#: ../../include/channel.php:1483 msgid "Trans" msgstr "Trans" -#: ../../include/channel.php:1528 +#: ../../include/channel.php:1529 msgid "Like this channel" msgstr "Me gusta este canal" -#: ../../include/channel.php:1552 +#: ../../include/channel.php:1553 msgid "j F, Y" msgstr "j F Y" -#: ../../include/channel.php:1553 +#: ../../include/channel.php:1554 msgid "j F" msgstr "j F" -#: ../../include/channel.php:1560 +#: ../../include/channel.php:1561 msgid "Birthday:" msgstr "Cumpleaños:" -#: ../../include/channel.php:1573 +#: ../../include/channel.php:1574 #, php-format msgid "for %1$d %2$s" msgstr "por %1$d %2$s" -#: ../../include/channel.php:1576 +#: ../../include/channel.php:1577 msgid "Sexual Preference:" msgstr "Orientación sexual:" -#: ../../include/channel.php:1582 +#: ../../include/channel.php:1583 msgid "Tags:" msgstr "Etiquetas:" -#: ../../include/channel.php:1584 +#: ../../include/channel.php:1585 msgid "Political Views:" msgstr "Posición política:" -#: ../../include/channel.php:1586 +#: ../../include/channel.php:1587 msgid "Religion:" msgstr "Religión:" -#: ../../include/channel.php:1590 +#: ../../include/channel.php:1591 msgid "Hobbies/Interests:" msgstr "Aficciones o intereses:" -#: ../../include/channel.php:1592 +#: ../../include/channel.php:1593 msgid "Likes:" msgstr "Me gusta:" -#: ../../include/channel.php:1594 +#: ../../include/channel.php:1595 msgid "Dislikes:" msgstr "No me gusta:" -#: ../../include/channel.php:1596 +#: ../../include/channel.php:1597 msgid "Contact information and Social Networks:" msgstr "Información de contacto y redes sociales:" -#: ../../include/channel.php:1598 +#: ../../include/channel.php:1599 msgid "My other channels:" msgstr "Mis otros canales:" -#: ../../include/channel.php:1600 +#: ../../include/channel.php:1601 msgid "Musical interests:" msgstr "Preferencias musicales:" -#: ../../include/channel.php:1602 +#: ../../include/channel.php:1603 msgid "Books, literature:" msgstr "Libros, literatura:" -#: ../../include/channel.php:1604 +#: ../../include/channel.php:1605 msgid "Television:" msgstr "Televisión:" -#: ../../include/channel.php:1606 +#: ../../include/channel.php:1607 msgid "Film/dance/culture/entertainment:" msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../include/channel.php:1608 +#: ../../include/channel.php:1609 msgid "Love/Romance:" msgstr "Vida sentimental o amorosa:" -#: ../../include/channel.php:1610 +#: ../../include/channel.php:1611 msgid "Work/employment:" msgstr "Trabajo:" -#: ../../include/channel.php:1612 +#: ../../include/channel.php:1613 msgid "School/education:" msgstr "Estudios:" -#: ../../include/channel.php:1635 +#: ../../include/channel.php:1636 msgid "Like this thing" msgstr "Me gusta esto" -#: ../../include/event.php:23 ../../include/event.php:70 +#: ../../include/event.php:24 ../../include/event.php:71 msgid "l F d, Y \\@ g:i A" msgstr "l d de F, Y \\@ G:i" -#: ../../include/event.php:31 ../../include/event.php:74 +#: ../../include/event.php:32 ../../include/event.php:75 msgid "Starts:" msgstr "Comienza:" -#: ../../include/event.php:41 ../../include/event.php:78 +#: ../../include/event.php:42 ../../include/event.php:79 msgid "Finishes:" msgstr "Finaliza:" @@ -12881,167 +13126,175 @@ msgstr "Finaliza:" msgid "This event has been added to your calendar." msgstr "Este evento ha sido añadido a su calendario." -#: ../../include/event.php:1220 +#: ../../include/event.php:1227 msgid "Not specified" msgstr "Sin especificar" -#: ../../include/event.php:1221 +#: ../../include/event.php:1228 msgid "Needs Action" msgstr "Necesita de una intervención" -#: ../../include/event.php:1222 +#: ../../include/event.php:1229 msgid "Completed" msgstr "Completado/a" -#: ../../include/event.php:1223 +#: ../../include/event.php:1230 msgid "In Process" msgstr "En proceso" -#: ../../include/event.php:1224 +#: ../../include/event.php:1231 msgid "Cancelled" msgstr "Cancelado/a" -#: ../../include/event.php:1303 ../../include/connections.php:684 +#: ../../include/event.php:1310 ../../include/connections.php:684 msgid "Home, Voice" msgstr "Llamadas particulares" -#: ../../include/event.php:1304 ../../include/connections.php:685 +#: ../../include/event.php:1311 ../../include/connections.php:685 msgid "Home, Fax" msgstr "Fax particular" -#: ../../include/event.php:1306 ../../include/connections.php:687 +#: ../../include/event.php:1313 ../../include/connections.php:687 msgid "Work, Voice" msgstr "Llamadas de trabajo" -#: ../../include/event.php:1307 ../../include/connections.php:688 +#: ../../include/event.php:1314 ../../include/connections.php:688 msgid "Work, Fax" msgstr "Fax de trabajo" -#: ../../include/network.php:761 +#: ../../include/network.php:762 msgid "view full size" msgstr "Ver en el tamaño original" -#: ../../include/network.php:1763 ../../include/network.php:1764 +#: ../../include/network.php:1769 ../../include/network.php:1770 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1765 +#: ../../include/network.php:1771 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1766 +#: ../../include/network.php:1772 msgid "GNU-Social" msgstr "GNU Social" -#: ../../include/network.php:1767 +#: ../../include/network.php:1773 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1770 +#: ../../include/network.php:1776 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1771 +#: ../../include/network.php:1777 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1772 +#: ../../include/network.php:1778 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:1773 +#: ../../include/network.php:1779 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1774 +#: ../../include/network.php:1780 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1775 +#: ../../include/network.php:1781 msgid "MySpace" msgstr "MySpace" -#: ../../include/language.php:377 +#: ../../include/language.php:410 msgid "Select an alternate language" msgstr "Seleccionar un idioma alternativo" -#: ../../include/acl_selectors.php:208 +#: ../../include/acl_selectors.php:113 msgid "Who can see this?" msgstr "¿Quién puede ver esto?" -#: ../../include/acl_selectors.php:209 +#: ../../include/acl_selectors.php:114 msgid "Custom selection" msgstr "Selección personalizada" -#: ../../include/acl_selectors.php:210 +#: ../../include/acl_selectors.php:115 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/acl_selectors.php:211 +#: ../../include/acl_selectors.php:116 msgid "Show" msgstr "Mostrar" -#: ../../include/acl_selectors.php:212 +#: ../../include/acl_selectors.php:117 msgid "Don't show" msgstr "No mostrar" -#: ../../include/acl_selectors.php:245 +#: ../../include/acl_selectors.php:150 #, 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/dba/dba_driver.php:190 +#: ../../include/dba/dba_driver.php:178 #, 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/bbcode.php:194 ../../include/bbcode.php:1106 -#: ../../include/bbcode.php:1109 ../../include/bbcode.php:1114 -#: ../../include/bbcode.php:1117 ../../include/bbcode.php:1120 -#: ../../include/bbcode.php:1123 ../../include/bbcode.php:1128 -#: ../../include/bbcode.php:1131 ../../include/bbcode.php:1136 -#: ../../include/bbcode.php:1139 ../../include/bbcode.php:1142 -#: ../../include/bbcode.php:1145 +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 +#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 +#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 +#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 +#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 +#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 +#: ../../include/bbcode.php:1190 msgid "Image/photo" msgstr "Imagen/foto" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1156 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 msgid "Encrypted content" msgstr "Contenido cifrado" -#: ../../include/bbcode.php:249 +#: ../../include/bbcode.php:253 #, php-format msgid "Install %1$s element %2$s" msgstr "Instalar el elemento de%1$s%2$s" -#: ../../include/bbcode.php:253 +#: ../../include/bbcode.php:257 #, 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:331 +#: ../../include/bbcode.php:335 msgid "card" msgstr "ficha" -#: ../../include/bbcode.php:333 +#: ../../include/bbcode.php:337 msgid "article" msgstr "artículo" -#: ../../include/bbcode.php:416 ../../include/bbcode.php:424 +#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 msgid "Click to open/close" msgstr "Pulsar para abrir/cerrar" -#: ../../include/bbcode.php:424 +#: ../../include/bbcode.php:428 msgid "spoiler" msgstr "spoiler" -#: ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:441 +msgid "View article" +msgstr "Ver artículo" + +#: ../../include/bbcode.php:441 +msgid "View summary" +msgstr "Ver sumario" + +#: ../../include/bbcode.php:1139 msgid "$1 wrote:" msgstr "$1 escribió:" @@ -13061,7 +13314,7 @@ msgstr "Contenido incorporado" msgid "Embedding disabled" msgstr "Incrustación deshabilitada" -#: ../../include/zid.php:340 +#: ../../include/zid.php:346 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s da la bienvenida a %2$s" @@ -13118,6 +13371,10 @@ msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia msgid "Create personal planning cards" msgstr "Crear fichas de planificación personal" +#: ../../include/features.php:133 +msgid "Create interactive articles" +msgstr "Crear artículos interactivos" + #: ../../include/features.php:141 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" @@ -13164,250 +13421,246 @@ msgstr "Selección del huso horario del evento" msgid "Allow event creation in timezones other than your own." msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." -#: ../../include/features.php:195 +#: ../../include/features.php:196 +msgid "Premium Channel" +msgstr "Canal premium" + +#: ../../include/features.php:197 +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/features.php:205 msgid "Advanced Directory Search" msgstr "Búsqueda avanzada en el directorio" -#: ../../include/features.php:196 +#: ../../include/features.php:206 msgid "Allows creation of complex directory search queries" msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" -#: ../../include/features.php:204 +#: ../../include/features.php:214 msgid "Advanced Theme and Layout Settings" msgstr "Ajustes avanzados de temas y esquemas" -#: ../../include/features.php:205 +#: ../../include/features.php:215 msgid "Allows fine tuning of themes and page layouts" msgstr "Permitir el ajuste fino de temas y esquemas de páginas" -#: ../../include/features.php:215 +#: ../../include/features.php:225 msgid "Post Composition Features" msgstr "Opciones para la redacción de entradas" -#: ../../include/features.php:219 +#: ../../include/features.php:229 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:220 +#: ../../include/features.php:230 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:229 +#: ../../include/features.php:239 msgid "Automatically import channel content from other channels or feeds" msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/features.php:237 +#: ../../include/features.php:247 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:238 +#: ../../include/features.php:248 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:246 +#: ../../include/features.php:256 msgid "Enable Voting Tools" msgstr "Permitir entradas con votación" -#: ../../include/features.php:247 +#: ../../include/features.php:257 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:255 +#: ../../include/features.php:265 msgid "Disable Comments" msgstr "Deshabilitar comentarios" -#: ../../include/features.php:256 +#: ../../include/features.php:266 msgid "Provide the option to disable comments for a post" msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" -#: ../../include/features.php:264 +#: ../../include/features.php:274 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:265 +#: ../../include/features.php:275 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:273 +#: ../../include/features.php:283 msgid "Content Expiration" msgstr "Caducidad del contenido" -#: ../../include/features.php:274 +#: ../../include/features.php:284 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:282 +#: ../../include/features.php:292 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:283 +#: ../../include/features.php:293 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:294 +#: ../../include/features.php:304 msgid "Network and Stream Filtering" msgstr "Filtrado del contenido" -#: ../../include/features.php:298 +#: ../../include/features.php:308 msgid "Search by Date" msgstr "Buscar por fecha" -#: ../../include/features.php:299 +#: ../../include/features.php:309 msgid "Ability to select posts by date ranges" msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/features.php:307 ../../include/group.php:328 +#: ../../include/features.php:317 ../../include/group.php:328 msgid "Privacy Groups" msgstr "Grupos de canales" -#: ../../include/features.php:308 +#: ../../include/features.php:318 msgid "Enable management and selection of privacy groups" msgstr "Activar la gestión y selección de grupos de canales" -#: ../../include/features.php:317 +#: ../../include/features.php:327 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:325 +#: ../../include/features.php:335 msgid "Network Personal Tab" msgstr "Actividad personal" -#: ../../include/features.php:326 +#: ../../include/features.php:336 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:334 +#: ../../include/features.php:344 msgid "Network New Tab" msgstr "Contenido nuevo" -#: ../../include/features.php:335 +#: ../../include/features.php:345 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:343 +#: ../../include/features.php:353 msgid "Affinity Tool" msgstr "Herramienta de afinidad" -#: ../../include/features.php:344 +#: ../../include/features.php:354 msgid "Filter stream activity by depth of relationships" msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/features.php:353 +#: ../../include/features.php:363 msgid "Show friend and connection suggestions" msgstr "Mostrar sugerencias de amigos y conexiones" -#: ../../include/features.php:361 +#: ../../include/features.php:371 msgid "Connection Filtering" msgstr "Filtrado de conexiones" -#: ../../include/features.php:362 +#: ../../include/features.php:372 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/features.php:374 +#: ../../include/features.php:384 msgid "Post/Comment Tools" msgstr "Gestión de entradas y comentarios" -#: ../../include/features.php:379 -msgid "Use markdown for editing posts" -msgstr "Usar markdown para editar las entradas" - -#: ../../include/features.php:387 +#: ../../include/features.php:388 msgid "Community Tagging" msgstr "Etiquetas de la comunidad" -#: ../../include/features.php:388 +#: ../../include/features.php:389 msgid "Ability to tag existing posts" msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/features.php:396 +#: ../../include/features.php:397 msgid "Post Categories" msgstr "Temas de las entradas" -#: ../../include/features.php:397 +#: ../../include/features.php:398 msgid "Add categories to your posts" msgstr "Añadir temas a sus publicaciones" -#: ../../include/features.php:405 +#: ../../include/features.php:406 msgid "Emoji Reactions" msgstr "Emoticonos \"emoji\"" -#: ../../include/features.php:406 +#: ../../include/features.php:407 msgid "Add emoji reaction ability to posts" msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/features.php:415 +#: ../../include/features.php:416 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:423 +#: ../../include/features.php:424 msgid "Dislike Posts" msgstr "Desagrado de publicaciones" -#: ../../include/features.php:424 +#: ../../include/features.php:425 msgid "Ability to dislike posts/comments" msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/features.php:432 +#: ../../include/features.php:433 msgid "Star Posts" msgstr "Entradas destacadas" -#: ../../include/features.php:433 +#: ../../include/features.php:434 msgid "Ability to mark special posts with a star indicator" msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/features.php:441 +#: ../../include/features.php:442 msgid "Tag Cloud" msgstr "Nube de etiquetas" -#: ../../include/features.php:442 +#: ../../include/features.php:443 msgid "Provide a personal tag cloud on your channel page" msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../include/features.php:453 -msgid "Premium Channel" -msgstr "Canal premium" - -#: ../../include/features.php:454 -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:377 ../../include/taxonomy.php:398 +#: ../../include/taxonomy.php:384 ../../include/taxonomy.php:405 msgid "Tags" msgstr "Etiquetas" -#: ../../include/taxonomy.php:483 +#: ../../include/taxonomy.php:487 msgid "Keywords" msgstr "Palabras clave" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "have" msgstr "tener" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "has" msgstr "tiene" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "want" msgstr "quiero" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "wants" msgstr "quiere" -#: ../../include/taxonomy.php:506 +#: ../../include/taxonomy.php:510 msgid "likes" msgstr "gusta de" -#: ../../include/taxonomy.php:507 +#: ../../include/taxonomy.php:511 msgid "dislikes" msgstr "no gusta de" @@ -13439,256 +13692,204 @@ msgstr "Por favor introduzca la información requerida." msgid "Failed to store account information." msgstr "La información de la cuenta no se ha podido guardar." -#: ../../include/account.php:291 +#: ../../include/account.php:313 #, php-format msgid "Registration confirmation for %s" msgstr "Confirmación de registro para %s" -#: ../../include/account.php:360 +#: ../../include/account.php:382 #, php-format msgid "Registration request at %s" msgstr "Solicitud de registro en %s" -#: ../../include/account.php:382 +#: ../../include/account.php:404 msgid "your registration password" msgstr "su contraseña de registro" -#: ../../include/account.php:388 ../../include/account.php:450 +#: ../../include/account.php:410 ../../include/account.php:472 #, php-format msgid "Registration details for %s" msgstr "Detalles del registro de %s" -#: ../../include/account.php:461 +#: ../../include/account.php:483 msgid "Account approved." msgstr "Cuenta aprobada." -#: ../../include/account.php:501 +#: ../../include/account.php:523 #, php-format msgid "Registration revoked for %s" msgstr "Registro revocado para %s" -#: ../../include/account.php:780 ../../include/account.php:782 +#: ../../include/account.php:802 ../../include/account.php:804 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:788 +#: ../../include/account.php:810 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:793 +#: ../../include/account.php:815 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../include/datetime.php:150 +#: ../../include/datetime.php:134 msgid "Birthday" msgstr "Cumpleaños" -#: ../../include/datetime.php:152 +#: ../../include/datetime.php:134 msgid "Age: " msgstr "Edad:" -#: ../../include/datetime.php:154 +#: ../../include/datetime.php:134 msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/datetime.php:298 +#: ../../include/datetime.php:238 msgid "less than a second ago" msgstr "hace un instante" -#: ../../include/datetime.php:316 +#: ../../include/datetime.php:256 #, 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:327 +#: ../../include/datetime.php:267 msgctxt "relative_date" msgid "year" msgid_plural "years" msgstr[0] "año" msgstr[1] "años" -#: ../../include/datetime.php:330 +#: ../../include/datetime.php:270 msgctxt "relative_date" msgid "month" msgid_plural "months" msgstr[0] "mes" msgstr[1] "meses" -#: ../../include/datetime.php:333 +#: ../../include/datetime.php:273 msgctxt "relative_date" msgid "week" msgid_plural "weeks" msgstr[0] "semana" msgstr[1] "semanas" -#: ../../include/datetime.php:336 +#: ../../include/datetime.php:276 msgctxt "relative_date" msgid "day" msgid_plural "days" msgstr[0] "día" msgstr[1] "días" -#: ../../include/datetime.php:339 +#: ../../include/datetime.php:279 msgctxt "relative_date" msgid "hour" msgid_plural "hours" msgstr[0] "hora" msgstr[1] "horas" -#: ../../include/datetime.php:342 +#: ../../include/datetime.php:282 msgctxt "relative_date" msgid "minute" msgid_plural "minutes" msgstr[0] "minuto" msgstr[1] "minutos" -#: ../../include/datetime.php:345 +#: ../../include/datetime.php:285 msgctxt "relative_date" msgid "second" msgid_plural "seconds" msgstr[0] "segundo" msgstr[1] "segundos" -#: ../../include/datetime.php:579 +#: ../../include/datetime.php:514 #, php-format msgid "%1$s's birthday" msgstr "Cumpleaños de %1$s" -#: ../../include/datetime.php:580 +#: ../../include/datetime.php:515 #, php-format msgid "Happy Birthday %1$s" msgstr "Feliz cumpleaños %1$s" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Remote authentication" msgstr "Acceder desde su servidor" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Click to authenticate to your home hub" msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../include/nav.php:105 -msgid "Network Activity" -msgstr "Actividad de la red" - -#: ../../include/nav.php:107 -msgid "Mark all activity notifications seen" -msgstr "Marcar como vistas todas las notificaciones de actividad" - -#: ../../include/nav.php:109 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:110 -msgid "View your channel home" -msgstr "Ver su página principal del canal" - -#: ../../include/nav.php:111 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:116 -msgid "Registrations" -msgstr "Registros" - -#: ../../include/nav.php:119 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:120 -msgid "View all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:121 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones del sistema como leídas" - -#: ../../include/nav.php:123 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:124 -msgid "View your private messages" -msgstr "Ver sus mensajes privados" - -#: ../../include/nav.php:125 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:131 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Manage Your Channels" msgstr "Gestionar sus canales" -#: ../../include/nav.php:139 ../../include/nav.php:224 +#: ../../include/nav.php:105 ../../include/nav.php:192 msgid "Account/Channel Settings" msgstr "Ajustes de cuenta/canales" -#: ../../include/nav.php:145 ../../include/nav.php:174 +#: ../../include/nav.php:111 ../../include/nav.php:140 msgid "End this session" msgstr "Finalizar esta sesión" -#: ../../include/nav.php:148 +#: ../../include/nav.php:114 msgid "Your profile page" msgstr "Su página del perfil" -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Manage/Edit profiles" msgstr "Administrar/editar perfiles" -#: ../../include/nav.php:153 +#: ../../include/nav.php:119 msgid "Edit your profile" msgstr "Editar su perfil" -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Sign in" msgstr "Acceder" -#: ../../include/nav.php:189 +#: ../../include/nav.php:157 msgid "Take me home" msgstr "Volver a la página principal" -#: ../../include/nav.php:191 +#: ../../include/nav.php:159 msgid "Log me out of this site" msgstr "Salir de este sitio" -#: ../../include/nav.php:196 +#: ../../include/nav.php:164 msgid "Create an account" msgstr "Crear una cuenta" -#: ../../include/nav.php:208 +#: ../../include/nav.php:176 msgid "Help and documentation" msgstr "Ayuda y documentación" -#: ../../include/nav.php:211 +#: ../../include/nav.php:179 msgid "Search site @name, #tag, ?docs, content" msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../include/nav.php:231 +#: ../../include/nav.php:199 msgid "Site Setup and Configuration" msgstr "Ajustes y configuración del sitio" -#: ../../include/nav.php:322 +#: ../../include/nav.php:290 msgid "@name, #tag, ?doc, content" msgstr "@nombre, #etiqueta, ?ayuda, contenido" -#: ../../include/nav.php:323 +#: ../../include/nav.php:291 msgid "Please wait..." msgstr "Espere por favor…" -#: ../../include/nav.php:329 +#: ../../include/nav.php:297 msgid "Add Apps" msgstr "Añadir aplicaciones" -#: ../../include/nav.php:330 +#: ../../include/nav.php:298 msgid "Arrange Apps" msgstr "Organizar aplicaciones" -#: ../../include/nav.php:331 +#: ../../include/nav.php:299 msgid "Toggle System Apps" msgstr "Alternar aplicaciones de sistema" @@ -13719,19 +13920,23 @@ msgstr "%1$s ha publicado %2$s en %3$s" msgid "Upload New Photos" msgstr "Subir nuevas fotos" -#: ../../include/zot.php:675 +#: ../../include/zot.php:767 msgid "Invalid data packet" msgstr "Paquete de datos no válido" -#: ../../include/zot.php:702 +#: ../../include/zot.php:794 msgid "Unable to verify channel signature" msgstr "No ha sido posible de verificar la firma del canal" -#: ../../include/zot.php:2409 +#: ../../include/zot.php:2529 #, 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:4180 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" + #: ../../include/group.php:22 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -13775,7 +13980,7 @@ msgstr "Desconectado/a." msgid "Email validation is incomplete. Please check your email." msgstr "La validación del correo electrónico está incompleta. Por favor, compruebe su correo electrónico." -#: ../../include/auth.php:278 +#: ../../include/auth.php:279 msgid "Failed authentication" msgstr "Autenticación fallida." diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index b3714d087..50327000a 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -71,9 +71,8 @@ App::$strings["2. Enter my \$Projectname network address into the site searchbar App::$strings["or visit"] = "o visitar"; App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; App::$strings["Submit"] = "Enviar"; -App::$strings["Cards"] = "Fichas"; -App::$strings["Add Article"] = "Añadir un artículo"; App::$strings["Articles"] = "Artículos"; +App::$strings["Add Article"] = "Añadir un artículo"; App::$strings["Item not found"] = "Elemento no encontrado"; App::$strings["Layout Name"] = "Nombre de la plantilla"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; @@ -151,7 +150,8 @@ 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"] = "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["Welcome to hubzilla!"] = "¡Bienvenido o bienvenida a Hubzilla!"; +App::$strings["Welcome to Hubzilla!"] = "¡Bienvenido a Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "No tiene ningún mensaje sin leer..."; App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["Search"] = "Buscar"; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; @@ -282,6 +282,7 @@ 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["Validate"] = "Validar"; 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:"; @@ -412,10 +413,10 @@ App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s 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["No failed updates."] = "No ha fallado ninguna actualizació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."; @@ -542,6 +543,7 @@ App::$strings["Used to provide a member experience matched to technical comfort 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 su nivel de comodidad técnica por defecto"; App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "Se permite HTML/CSS/JS sin filtrar"; 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"; App::$strings["Site Information"] = "Información sobre el sitio"; @@ -558,6 +560,8 @@ App::$strings["Maximum size in bytes of uploaded images. Default is 0, which mea App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; App::$strings["Invitation only"] = "Solo con una invitación"; App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"."; +App::$strings["Minimum age"] = "Edad mínima"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Edad mínima (en años) para poder registrarse en este sitio."; App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; App::$strings["Register text"] = "Texto del registro"; App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; @@ -575,6 +579,10 @@ App::$strings["Force publish"] = "Forzar la publicación"; App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; App::$strings["Import Public Streams"] = "Importar contenido público"; App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "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."; +App::$strings["Site only Public Streams"] = "Solo contenido público en este sitio"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Permitir el acceso al contenido público originado sólo desde este sitio si los \"streams\" públicos Importados están deshabilitados."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Permitir que cualquiera en Internet pueda acceder a los \"streams\" públicos"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Desactivar para requerir autenticación antes de la visualización. Advertencia: este contenido no está moderado."; App::$strings["Login on Homepage"] = "Iniciar sesión en la página personal"; App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; App::$strings["Enable context help"] = "Habilitar la ayuda contextual"; @@ -604,6 +612,12 @@ 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["Public servers: Optional landing (marketing) webpage for new registrants"] = "Servidores públicos: Página web de acogida (marketing) opcional para nuevos registros"; +App::$strings["Create this page first. Default is %s/register"] = "Crear esta página primero. Por defecto es %s/register"; +App::$strings["Page to display after creating a new channel"] = "Página a mostrar después de la creación de un nuevo canal"; +App::$strings["Recommend: profiles, go, or settings"] = "Recomendar: perfiles, ir, o ajustes"; +App::$strings["Optional: site location"] = "Opcional: ubicación del sitio"; +App::$strings["Region or country"] = "Región o país"; 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"; @@ -790,16 +804,17 @@ 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["Used to provide a member experience and additional features consistent with your comfort level"] = "Utilizado para proporcionar un nivel de experiencia como miembro y características adicionales consistentes con su nivel de comodidad"; App::$strings["Remove Account"] = "Eliminar cuenta"; App::$strings["Remove this account including all its channels"] = "Eliminar esta cuenta incluyendo todos sus canales"; App::$strings["Affinity Slider settings updated."] = "Se han actualizado los ajustes del controlador de afinidad."; App::$strings["No feature settings configured"] = "No se ha establecido la configuración de los complementos"; App::$strings["Default maximum affinity level"] = "Nivel máximo de afinidad por defecto"; +App::$strings["0-99 default 99"] = "0-99 por defecto 99"; App::$strings["Default minimum affinity level"] = "Nivel mínimo de afinidad por defecto"; +App::$strings["0-99 - default 0"] = "0-99 - por defecto 0"; App::$strings["Affinity Slider Settings"] = "Ajustes del controlador de afinidad"; App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; -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"; @@ -807,7 +822,6 @@ 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"; @@ -1082,10 +1096,10 @@ App::$strings["Photo not available."] = "Foto no disponible."; App::$strings["Upload File:"] = "Subir fichero:"; App::$strings["Select a profile:"] = "Seleccionar un perfil:"; App::$strings["Use Photo for Profile"] = "Usar la fotografía para el perfil"; -App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; +App::$strings["Change Profile Photo"] = "Cambiar la foto del perfil"; App::$strings["Use"] = "Usar"; -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["Use a photo from your albums"] = "Usar una foto de sus álbumes"; +App::$strings["Select existing photo"] = "Seleccionar una foto existente"; 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"; @@ -1164,6 +1178,7 @@ 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["Permission role"] = "Rol de acceso"; +App::$strings["Loading"] = "Cargando"; App::$strings["Add permission role"] = "Añadir un rol de acceso"; App::$strings["This connection's primary address is"] = "La dirección primaria de esta conexión es"; App::$strings["Available locations:"] = "Ubicaciones disponibles:"; @@ -1227,7 +1242,12 @@ 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["Please refresh page"] = "Por favor, recargue la página"; App::$strings["Unknown error"] = "Error desconocido"; +App::$strings["Email Verification Required"] = "Verificación obligatoria del correo electrónico"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje."; +App::$strings["Resend Email"] = "Reenvío de correo electrónico"; +App::$strings["Validation token"] = "Token de validación"; App::$strings["Post not found."] = "Mensaje no encontrado."; App::$strings["post"] = "la entrada"; App::$strings["comment"] = "el comentario"; @@ -1319,6 +1339,21 @@ App::$strings["My other channels"] = "Mis otros canales"; App::$strings["Communications"] = "Comunicaciones"; App::$strings["Profile Image"] = "Imagen del perfil"; App::$strings["Edit Profiles"] = "Editar perfiles"; +App::$strings["This page is available only to site members"] = "Esta página está disponible sólo para los miembros del sitio"; +App::$strings["Welcome"] = "Bienvenido/a"; +App::$strings["What would you like to do?"] = "¿Qué le gustaría hacer?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Por favor añada esta página a sus marcadores si desea volver a ella en el futuro."; +App::$strings["Upload a profile photo"] = "Subir una foto de perfil"; +App::$strings["Upload a cover photo"] = "Subir una foto de portada del perfil"; +App::$strings["Edit your default profile"] = "Editar su perfil por defecto"; +App::$strings["View friend suggestions"] = "Ver sugerencias de amistad"; +App::$strings["View the directory to find other interesting channels"] = "Ver el directorio para encontrar otros canales interesantes"; +App::$strings["View/edit your channel settings"] = "Ver o modificar los ajustes de su canal"; +App::$strings["View the site or project documentation"] = "Ver el sitio o la documentación del proyecto"; +App::$strings["Visit your channel homepage"] = "Visitar la página principal de su canal"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Vea sus conexiones y/o agregue a alguien cuya dirección ya conozca"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Ver su \"stream\" personal (puede que esté vacío hasta que agregue algunas conexiones)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Ver el \"stream\" público. Advertencia: este contenido no está moderado"; App::$strings["Page link"] = "Enlace de la página"; App::$strings["Edit Webpage"] = "Editar la página web"; App::$strings["Create a new channel"] = "Crear un nuevo canal"; @@ -1330,6 +1365,7 @@ App::$strings["Make Default"] = "Convertir en predeterminado"; App::$strings["%d new messages"] = "%d mensajes nuevos"; App::$strings["%d new introductions"] = "%d nuevas solicitudes de conexión"; App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["Cards"] = "Fichas"; App::$strings["Add Card"] = "Añadir una ficha"; App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; App::$strings["About this site"] = "Acerca de este sitio"; @@ -1522,7 +1558,7 @@ 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["This site requires email verification. After completing this form, please check your email for further instructions."] = "Este sitio requiere verificación por correo electrónico. Después de completar este formulario, por favor revise su correo electrónico para más instrucciones."; App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; App::$strings["female"] = "mujer"; App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; @@ -1530,7 +1566,7 @@ 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["Upload Cover Photo"] = "Subir imagen de portada del perfil"; +App::$strings["Change Cover Photo"] = "Cambiar la foto de portada del perfil"; App::$strings["Documentation Search"] = "Búsqueda de Documentación"; App::$strings["About"] = "Mi perfil"; App::$strings["Administrators"] = "Administradores"; @@ -1568,6 +1604,9 @@ App::$strings["Show in your contacts shared folder"] = "Mostrar en la carpeta co App::$strings["No channel."] = "Ningún canal."; App::$strings["No connections in common."] = "Ninguna conexión en común."; App::$strings["View Common Connections"] = "Ver las conexiones comunes"; +App::$strings["Token verification failed."] = "Ha fallado el token de verificación."; +App::$strings["Email verification resent"] = "Reenvío del email de verificación"; +App::$strings["Unable to resend email verification message."] = "No se puede reenviar el mensaje de verificación por correo electrónico."; 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"; @@ -1684,15 +1723,21 @@ 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["This email was sent by %1\$s at %2\$s."] = "Este email ha sido enviado por %1\$s a %2\$s."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Para dejar de recibir estos mensajes, por favor ajuste la configuración de notificación en %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Para dejar de recibir estos mensajes, por favor, ajuste su %s"; App::$strings["%s "] = "%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"; 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["commented on"] = "ha comentado sobre"; +App::$strings["liked"] = "ha gustado de "; +App::$strings["disliked"] = "no ha gustado de "; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s[zrl=%4\$s]un %5\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s] %6\$sde %5\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s] ]su %5\$s [/zrl]"; App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Aviso] Comentario moderado en la conversación #%1\$d por %2\$s"; 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."; @@ -1727,6 +1772,8 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Por fav App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Aviso]"; App::$strings["created a new post"] = "ha creado una nueva entrada"; App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; +App::$strings["edited a post dated %s"] = "ha editado una entrada fechada el%s"; +App::$strings["edited a comment dated %s"] = "ha editado un comentario fechado el %s"; App::$strings["Wiki updated successfully"] = "El wiki se ha actualizado con éxito"; App::$strings["Wiki files deleted successfully"] = "Se han borrado con éxito los ficheros del wiki"; App::$strings["Update Error at %s"] = "Error de actualización en %s"; @@ -1886,6 +1933,7 @@ App::$strings["New Network Activity Notifications"] = "Avisos de nueva actividad App::$strings["View your network activity"] = "Ver su actividad en la red"; App::$strings["Mark all notifications read"] = "Marcar todas las notificaciones como leídas"; App::$strings["Show new posts only"] = "Mostrar solo las entradas nuevas"; +App::$strings["Filter by name"] = "Filtrar por nombre"; App::$strings["New Home Activity"] = "Nueva actividad en su página principal"; App::$strings["New Home Activity Notifications"] = "Avisos de nueva actividad en su página principal"; App::$strings["View your home activity"] = "Ver su actividad en su página principal"; @@ -1909,7 +1957,7 @@ App::$strings["New Registrations"] = "Registros nuevos"; App::$strings["New Registrations Notifications"] = "Notificaciones de nuevos registros"; App::$strings["Public Stream Notifications"] = "Avisos del \"stream\" público"; App::$strings["View the public stream"] = "Ver el \"stream\" público"; -App::$strings["Loading"] = "Cargando"; +App::$strings["Sorry, you have got no notifications at the moment"] = "Lo sentimos, por el momento no ha recibido ninguna notificación"; App::$strings["Source channel not found."] = "No se ha encontrado el canal de origen."; App::$strings["Create an account to access services and applications"] = "Crear una cuenta para acceder a los servicios y aplicaciones"; App::$strings["Logout"] = "Finalizar sesión"; @@ -1917,7 +1965,6 @@ App::$strings["Login/Email"] = "Inicio de sesión / Correo electrónico"; App::$strings["Password"] = "Contraseña"; App::$strings["Remember me"] = "Recordarme"; App::$strings["Forgot your password?"] = "¿Olvidó su contraseña?"; -App::$strings["toggle mobile"] = "cambiar a modo móvil"; App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Error SSL del sitio web en %s"; App::$strings["Website SSL certificate is not valid. Please correct."] = "El certificado SSL del sitio web no es válido. Por favor, solucione el problema."; App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Las tareas de Cron no están funcionando en %s"; @@ -2005,11 +2052,11 @@ App::$strings["Preferred IDs Message"] = "Mensaje de IDs preferido"; App::$strings["Message to display above preferred results."] = "Mensaje para mostrar sobre los resultados preferidos."; App::$strings["Uploaded by: "] = "Subida por: "; App::$strings["Drawn by: "] = "Creada por: "; +App::$strings["Use this image"] = "Usar esta imagen"; App::$strings["Or select from a free OpenClipart.org image:"] = "O seleccionar una imagen gratuita de OpenClipart.org: "; App::$strings["Search Term"] = "Término de búsqueda"; App::$strings["Unknown error. Please try again later."] = "Error desconocido. Por favor, inténtelo otra vez."; App::$strings["Profile photo updated successfully."] = "Se ha actualizado con éxito la foto de perfil."; -App::$strings["invalid target signature"] = "La firma recibida no es válida"; App::$strings["Flag Adult Photos"] = "Indicador (\"flag\") de fotos de adultos"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Proporcionar una opción de edición de fotos para ocultar las fotos inapropiadas de la vista de álbum predeterminada"; App::$strings["Post to WordPress"] = "Publicar en WordPress"; @@ -2046,6 +2093,8 @@ App::$strings["Dreamwidth username"] = "Nombre de usuario en Dreamwidth"; App::$strings["Dreamwidth password"] = "Contraseña en Dreamwidth"; App::$strings["Post to Dreamwidth by default"] = "Publicar en Dreamwidth de forma predeterminada"; App::$strings["Dreamwidth Post Settings"] = "Ajustes de publicación en Dreamwidth"; +App::$strings["New registration"] = "Nuevo registro"; +App::$strings["Message sent to %s. New account registration: %s"] = "Mensaje enviado a %s. Registro de una nueva cuenta: %s"; App::$strings["Hubzilla Directory Stats"] = "Estadísticas de directorio de Hubzilla"; App::$strings["Total Hubs"] = "Número total de servidores"; App::$strings["Hubzilla Hubs"] = "Servidores (hubs) de Hubzilla"; @@ -2208,6 +2257,7 @@ App::$strings["Mail sent."] = "El correo electrónico ha sido enviado."; App::$strings["Sending of mail failed."] = "No se pudo enviar el correo."; App::$strings["Mail Test"] = "Prueba de correo"; App::$strings["Message subject"] = "Asunto del mensaje"; +App::$strings["Use markdown for editing posts"] = "Usar markdown para editar las entradas"; App::$strings["View Larger"] = "Ver más grande"; App::$strings["Tile Server URL"] = "URL del servidor de mosaicos de imágenes "; App::$strings["A list of public tile servers"] = "Una lista de servidores públicos de mosaicos de imágenes"; @@ -2357,7 +2407,7 @@ App::$strings["Invalid game."] = "Juego no válido."; App::$strings["You are not a player in this game."] = "Usted no participa en este juego."; App::$strings["You must be a local channel to create a game."] = "Debe ser un canal local para crear un juego"; App::$strings["You must select one opponent that is not yourself."] = "Debe seleccionar un oponente que no sea usted mismo."; -App::$strings["You must select white or black."] = "Debe elegir blancas o negras."; +App::$strings["Random color chosen."] = "Elegido un color aleatorio."; App::$strings["Error creating new game."] = "Error al crear un nuevo juego."; App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; App::$strings["You must select a local channel /chess/channelname"] = "Debe seleccionar un canal local /chess/nombredelcanal"; @@ -2371,6 +2421,8 @@ App::$strings["Copy the PIN from Twitter here"] = "Copiar aquí el PIN de Twitte App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Aviso: Debido a su configuración de privacidad (Ocultar los detalles de su perfil a los visitantes desconocidos?), el enlace potencialmente incluido en las entradas públicas retransmitidas a Twitter llevará al visitante a una página en blanco informándolo de que el acceso a su perfil ha sido restringido."; App::$strings["Allow posting to Twitter"] = "Permitir la publicación en Twitter"; App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Si está activado, sus entradas públicas se pueden publicar en la cuenta de Twitter asociada"; +App::$strings["Twitter post length"] = "Longitud del mensaje en Twitter"; +App::$strings["Maximum tweet length"] = "Longitud máxima del tweet"; App::$strings["Send public postings to Twitter by default"] = "Enviar mensajes públicos a Twitter de forma predeterminada"; App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Si está activado, sus entradas públicas se publicarán en la cuenta de Twitter asociada de forma predeterminada."; App::$strings["Twitter Post Settings"] = "Ajustes de publicación en Twitter"; @@ -2422,7 +2474,7 @@ App::$strings["If you see this icon you can be sure that the sender is who it sa App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "¡Peligro! ¡Parece que alguien intentó falsificar un mensaje! ¡Este mensaje no es necesariamente de quien dice que es!"; App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "¡Bienvenido/a a Hubzilla! ¿Quiere hacer un recorrido por la interfaz de usuario?

Puede detenerlo en cualquier momento y continuar donde lo dejó recargando la página o navegando a otra.

También puede avanzar pulsando la tecla de retorno"; App::$strings["Extended Identity Sharing"] = "Compartir identidad extendida"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Compartir su identidad con todos los sitios web en Internet. Cuando se inhabilita, la identidad sólo se comparte con los sitios de la matriz."; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Compartir su identidad con todos los sitios web en Internet. Cuando está deshabilitado, la identidad sólo se comparte con sitios de \$Projectname."; App::$strings["Three Dimensional Tic-Tac-Toe"] = "Juego en 3D Tic-Tac-Toe"; App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; App::$strings["New game"] = "Nuevo juego"; @@ -2792,8 +2844,8 @@ App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección 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["timeago.suffixAgo"] = "timeago.suffixAgo"; +App::$strings["timeago.suffixFromNow"] = "timeago.suffixFromNow"; 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"; @@ -2886,6 +2938,7 @@ App::$strings["Visible to everybody"] = "Visible para todos"; App::$strings["Gender:"] = "Género:"; App::$strings["Homepage:"] = "Página personal:"; App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["Change your profile photo"] = "Cambiar su foto del perfil"; App::$strings["Trans"] = "Trans"; App::$strings["Like this channel"] = "Me gusta este canal"; App::$strings["j F, Y"] = "j F Y"; @@ -2949,6 +3002,8 @@ App::$strings["card"] = "ficha"; App::$strings["article"] = "artículo"; App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; App::$strings["spoiler"] = "spoiler"; +App::$strings["View article"] = "Ver artículo"; +App::$strings["View summary"] = "Ver sumario"; App::$strings["$1 wrote:"] = "$1 escribió:"; App::$strings[" by "] = "por"; App::$strings[" on "] = "en"; @@ -2968,6 +3023,7 @@ App::$strings["Provide a wiki for your channel"] = "Proporcionar un wiki para su App::$strings["Private Notes"] = "Notas privadas"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; App::$strings["Create personal planning cards"] = "Crear fichas de planificación personal"; +App::$strings["Create interactive articles"] = "Crear artículos interactivos"; 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"; @@ -2979,6 +3035,8 @@ 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["Event Timezone Selection"] = "Selección del huso horario del evento"; App::$strings["Allow event creation in timezones other than your own."] = "Permitir la creación de eventos en husos horarios distintos del suyo."; +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["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"; @@ -3015,7 +3073,6 @@ App::$strings["Show friend and connection suggestions"] = "Mostrar sugerencias d 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["Use markdown for editing posts"] = "Usar markdown para editar las entradas"; 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"; @@ -3029,8 +3086,6 @@ 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"; @@ -3092,19 +3147,6 @@ App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; App::$strings["Remote authentication"] = "Acceder desde su servidor"; App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Network Activity"] = "Actividad de la red"; -App::$strings["Mark all activity notifications seen"] = "Marcar como vistas todas las notificaciones de actividad"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["View your channel home"] = "Ver su página principal del canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Registrations"] = "Registros"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["View all notifications"] = "Ver todas las notificaciones"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones del sistema como leídas"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["View your private messages"] = "Ver sus mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Event Calendar"] = "Calendario de eventos"; App::$strings["Manage Your Channels"] = "Gestionar sus canales"; App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; App::$strings["End this session"] = "Finalizar esta sesión"; @@ -3132,6 +3174,7 @@ App::$strings["Upload New Photos"] = "Subir nuevas fotos"; App::$strings["Invalid data packet"] = "Paquete de datos no válido"; App::$strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal"; App::$strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s"; +App::$strings["invalid target signature"] = "La firma recibida no es válida"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; App::$strings["edit"] = "editar"; diff --git a/view/es-es/register_verify_member.tpl b/view/es-es/register_verify_member.tpl index f78a0353a..058c3a3c8 100644 --- a/view/es-es/register_verify_member.tpl +++ b/view/es-es/register_verify_member.tpl @@ -10,7 +10,7 @@ Inicie la sesión con la contraseña que eligió durante el registro. Necesitamos verificar su correo electrónico para poder darle pleno acceso. -Si registró esta cuenta, por favor, siga el enlace: +Si registró esta cuenta, por favor, siga el enlace: {{$siteurl}}/regver/allow/{{$hash}} -- cgit v1.2.3 From 840cea680ce80c2b769530d9a93a04f475f48454 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Fri, 2 Mar 2018 18:28:42 +0100 Subject: New strings for Spanish translation. --- view/es-es/hmessages.po | 387 ++++++++++++++++++++++++++++-------------------- view/es-es/hstrings.php | 39 +++-- 2 files changed, 257 insertions(+), 169 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 95d413461..b6104c8f7 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-02-28 08:31+0100\n" -"PO-Revision-Date: 2018-03-01 11:07+0000\n" +"POT-Creation-Date: 2018-03-01 08:51+0100\n" +"PO-Revision-Date: 2018-03-02 17:15+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" @@ -156,7 +156,7 @@ msgstr "Especial - Repositorio de grupo" #: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:130 #: ../../Zotlabs/Module/Settings/Channel.php:473 #: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Register.php:226 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 #: ../../include/selectors.php:140 ../../include/event.php:1315 #: ../../include/event.php:1322 ../../include/connections.php:689 @@ -223,7 +223,7 @@ msgstr "El perfil solicitado no está disponible." #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:405 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Display.php:406 ../../Zotlabs/Module/Network.php:15 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 @@ -436,7 +436,7 @@ msgstr "3. Pulse [conectar]" #: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 #: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 -#: ../../Zotlabs/Module/Email_validation.php:39 +#: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 @@ -465,7 +465,7 @@ msgstr "3. Pulse [conectar]" #: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 #: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 #: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 -#: ../../addon/frphotos/frphotos.php:96 ../../addon/pubcrawl/pubcrawl.php:1054 +#: ../../addon/frphotos/frphotos.php:96 ../../addon/pubcrawl/pubcrawl.php:1053 #: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 #: ../../addon/flattrwidget/flattrwidget.php:124 #: ../../addon/statusnet/statusnet.php:322 @@ -482,7 +482,7 @@ msgid "Submit" msgstr "Enviar" #: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:179 -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:132 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:124 #: ../../include/nav.php:469 msgid "Articles" msgstr "Artículos" @@ -1544,22 +1544,22 @@ msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." #: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:256 +#: ../../Zotlabs/Module/Register.php:254 msgid "Name or caption" msgstr "Nombre o descripción" #: ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Register.php:256 +#: ../../Zotlabs/Module/Register.php:254 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/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:256 msgid "Choose a short nickname" msgstr "Elija un alias corto" #: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:258 +#: ../../Zotlabs/Module/Register.php:256 #, php-format msgid "" "Your nickname will be used to create an easy to remember channel address " @@ -1567,17 +1567,17 @@ msgid "" msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" #: ../../Zotlabs/Module/New_channel.php:135 -#: ../../Zotlabs/Module/Register.php:259 +#: ../../Zotlabs/Module/Register.php:257 msgid "Channel role and privacy" msgstr "Clase de canal y privacidad" #: ../../Zotlabs/Module/New_channel.php:135 -#: ../../Zotlabs/Module/Register.php:259 +#: ../../Zotlabs/Module/Register.php:257 msgid "Select a channel role with your privacy requirements." msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" #: ../../Zotlabs/Module/New_channel.php:135 -#: ../../Zotlabs/Module/Register.php:259 +#: ../../Zotlabs/Module/Register.php:257 msgid "Read more about roles" msgstr "Leer más sobre los roles" @@ -2250,7 +2250,7 @@ msgstr "No ha fallado ninguna actualización." #: ../../Zotlabs/Module/Admin/Plugins.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:409 +#: ../../Zotlabs/Module/Display.php:410 #: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 #: ../../include/items.php:3569 msgid "Item not found." @@ -2302,6 +2302,7 @@ msgstr "Cambiar" #: ../../Zotlabs/Module/Admin/Plugins.php:344 #: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:55 #: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:105 #: ../../include/nav.php:192 msgid "Settings" @@ -2728,7 +2729,7 @@ msgid "Site" msgstr "Sitio" #: ../../Zotlabs/Module/Admin/Site.php:290 -#: ../../Zotlabs/Module/Register.php:271 +#: ../../Zotlabs/Module/Register.php:269 msgid "Registration" msgstr "Registro" @@ -3995,9 +3996,13 @@ msgid "Affinity Slider Settings" msgstr "Ajustes del controlador de afinidad" #: ../../Zotlabs/Module/Settings/Featured.php:64 -msgid "Feature/Addon Settings" +msgid "Addon Settings" msgstr "Ajustes de los complementos" +#: ../../Zotlabs/Module/Settings/Featured.php:65 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Guarde o envíe los cambios a cualquier panel antes de abrir otro." + #: ../../Zotlabs/Module/Settings/Display.php:139 #, php-format msgid "%s - (Experimental)" @@ -5882,11 +5887,16 @@ msgstr "Por favor, recargue la página" msgid "Unknown error" msgstr "Error desconocido" -#: ../../Zotlabs/Module/Email_validation.php:35 +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Ha fallado el token de verificación." + +#: ../../Zotlabs/Module/Email_validation.php:36 msgid "Email Verification Required" msgstr "Verificación obligatoria del correo electrónico" -#: ../../Zotlabs/Module/Email_validation.php:36 +#: ../../Zotlabs/Module/Email_validation.php:37 #, php-format msgid "" "A verification token was sent to your email address [%s]. Enter that token " @@ -5894,11 +5904,11 @@ msgid "" "for delivery, and check your spam folder if you do not see the message." msgstr "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje." -#: ../../Zotlabs/Module/Email_validation.php:37 +#: ../../Zotlabs/Module/Email_validation.php:38 msgid "Resend Email" msgstr "Reenvío de correo electrónico" -#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Email_validation.php:41 msgid "Validation token" msgstr "Token de validación" @@ -6135,7 +6145,8 @@ msgstr "Personales" msgid "Relation" msgstr "Relación" -#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:58 +#: ../../Zotlabs/Module/Profiles.php:739 ../../Zotlabs/Widget/Newmember.php:53 +#: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "Varios" @@ -6310,13 +6321,13 @@ msgstr "Subir una foto de portada del perfil" msgid "Edit your default profile" msgstr "Editar su perfil por defecto" -#: ../../Zotlabs/Module/Go.php:38 +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:43 msgid "View friend suggestions" msgstr "Ver sugerencias de amistad" -#: ../../Zotlabs/Module/Go.php:39 -msgid "View the directory to find other interesting channels" -msgstr "Ver el directorio para encontrar otros canales interesantes" +#: ../../Zotlabs/Module/Go.php:39 ../../Zotlabs/Widget/Newmember.php:42 +msgid "View the channel directory" +msgstr "Ver el directorio de canales" #: ../../Zotlabs/Module/Go.php:40 msgid "View/edit your channel settings" @@ -6393,7 +6404,7 @@ msgstr "Canal delegado" #: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:181 #: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1890 -#: ../../include/features.php:122 ../../include/nav.php:458 +#: ../../include/features.php:114 ../../include/nav.php:458 msgid "Cards" msgstr "Fichas" @@ -6417,7 +6428,7 @@ msgstr "Nombre del sitio" msgid "Administrator" msgstr "Administrador" -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:234 +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 msgid "Terms of Service" msgstr "Términos del servicio" @@ -6645,7 +6656,7 @@ msgid "*" msgstr "*" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:238 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:274 msgid "Channel Sources" msgstr "Orígenes de los contenidos del canal" @@ -7134,86 +7145,86 @@ msgstr "Por favor, confirme que acepta los Términos del servicio. El registro h msgid "Passwords do not match." msgstr "Las contraseñas no coinciden." -#: ../../Zotlabs/Module/Register.php:127 ../../Zotlabs/Module/Register.php:137 +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Registro exitoso. Continúe creando tu primer canal..." + +#: ../../Zotlabs/Module/Register.php:135 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:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registro exitoso. Continúe creando tu primer canal..." - -#: ../../Zotlabs/Module/Register.php:144 +#: ../../Zotlabs/Module/Register.php:142 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:147 +#: ../../Zotlabs/Module/Register.php:145 msgid "Your registration can not be processed." msgstr "Su registro no puede ser procesado." -#: ../../Zotlabs/Module/Register.php:194 +#: ../../Zotlabs/Module/Register.php:192 msgid "Registration on this hub is disabled." msgstr "El registro está deshabilitado en este sitio." -#: ../../Zotlabs/Module/Register.php:203 +#: ../../Zotlabs/Module/Register.php:201 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:204 +#: ../../Zotlabs/Module/Register.php:202 msgid "Register at another affiliated hub." msgstr "Registrarse en otro hub afiliado." -#: ../../Zotlabs/Module/Register.php:214 +#: ../../Zotlabs/Module/Register.php:212 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:240 +#: ../../Zotlabs/Module/Register.php:238 #, php-format msgid "I accept the %s for this website" msgstr "Acepto los %s de este sitio" -#: ../../Zotlabs/Module/Register.php:247 +#: ../../Zotlabs/Module/Register.php:245 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Tengo más de %s años de edad y acepto los %s de este sitio web" -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/Register.php:250 msgid "Your email address" msgstr "Su dirección de correo electrónico" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:251 msgid "Choose a password" msgstr "Elija una contraseña" -#: ../../Zotlabs/Module/Register.php:254 +#: ../../Zotlabs/Module/Register.php:252 msgid "Please re-enter your password" msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../Zotlabs/Module/Register.php:255 +#: ../../Zotlabs/Module/Register.php:253 msgid "Please enter your invitation code" msgstr "Por favor, introduzca el código de su invitación" -#: ../../Zotlabs/Module/Register.php:260 +#: ../../Zotlabs/Module/Register.php:258 msgid "no" msgstr "no" -#: ../../Zotlabs/Module/Register.php:260 +#: ../../Zotlabs/Module/Register.php:258 msgid "yes" msgstr "sí" -#: ../../Zotlabs/Module/Register.php:276 +#: ../../Zotlabs/Module/Register.php:274 msgid "Membership on this site is by invitation only." msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../Zotlabs/Module/Register.php:288 ../../boot.php:1563 +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1563 #: ../../include/nav.php:164 msgid "Register" msgstr "Registrarse" -#: ../../Zotlabs/Module/Register.php:289 +#: ../../Zotlabs/Module/Register.php:287 msgid "" "This site requires email verification. After completing this form, please " "check your email for further instructions." @@ -7284,11 +7295,11 @@ msgstr "Documentación de $Projectname" msgid "Contents" msgstr "Contenidos" -#: ../../Zotlabs/Module/Display.php:350 +#: ../../Zotlabs/Module/Display.php:351 msgid "Article" msgstr "Artículo" -#: ../../Zotlabs/Module/Display.php:402 +#: ../../Zotlabs/Module/Display.php:403 msgid "Item has been removed." msgstr "Se ha eliminado el elemento." @@ -7407,10 +7418,6 @@ msgstr "Ninguna conexión en común." msgid "View Common Connections" msgstr "Ver las conexiones comunes" -#: ../../Zotlabs/Module/Email_resend.php:12 -msgid "Token verification failed." -msgstr "Ha fallado el token de verificación." - #: ../../Zotlabs/Module/Email_resend.php:30 msgid "Email verification resent" msgstr "Reenvío del email de verificación" @@ -7635,7 +7642,7 @@ msgstr "Servicio de compartición de Firefox" msgid "Remote Diagnostics" msgstr "Diagnóstico remoto" -#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:362 +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:390 msgid "Suggest Channels" msgstr "Sugerir canales" @@ -7649,7 +7656,7 @@ msgid "Activity" msgstr "Actividad" #: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1928 -#: ../../include/features.php:95 ../../include/nav.php:497 +#: ../../include/features.php:87 ../../include/nav.php:497 msgid "Wiki" msgstr "Wiki" @@ -8694,7 +8701,7 @@ msgstr "foto/imagen" msgid "Remove term" msgstr "Eliminar término" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:326 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:354 msgid "Saved Searches" msgstr "Búsquedas guardadas" @@ -8736,7 +8743,7 @@ msgid "See more..." msgstr "Ver más..." #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:415 +#: ../../include/features.php:443 msgid "Saved Folders" msgstr "Carpetas guardadas" @@ -8744,6 +8751,54 @@ msgstr "Carpetas guardadas" msgid "Click to show more" msgstr "Hacer clic para ver más" +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Profile Creation" +msgstr "Creación de perfiles" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Upload profile photo" +msgstr "Cargar la foto del perfil" + +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Upload cover photo" +msgstr "Cargar la foto de portada del perfil" + +#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Editar su perfil" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Find and Connect with others" +msgstr "Encontrar y conectarse con otros" + +#: ../../Zotlabs/Widget/Newmember.php:44 +msgid "Manage your connections" +msgstr "Gestionar sus conexiones" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Communicate" +msgstr "Comunicarse" + +#: ../../Zotlabs/Widget/Newmember.php:49 +msgid "View your channel homepage" +msgstr "Ver la página principal de su canal" + +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "View your network stream" +msgstr "Ver el \"stream\" de su red" + +#: ../../Zotlabs/Widget/Newmember.php:56 +msgid "Documentation" +msgstr "Documentación" + +#: ../../Zotlabs/Widget/Newmember.php:67 +msgid "View public stream. Warning: not moderated" +msgstr "Ver el \"stream\" público. Advertencia: no está moderado" + +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "New Member Links" +msgstr "Enlaces para nuevos miembros" + #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" msgstr "Inscripciones de nuevos miembros pendientes de aprobación" @@ -8777,8 +8832,8 @@ msgid "Additional features" msgstr "Funcionalidades" #: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Feature/Addon settings" -msgstr "Complementos" +msgid "Addon settings" +msgstr "Ajustes de los complementos" #: ../../Zotlabs/Widget/Settings_menu.php:63 msgid "Display settings" @@ -8796,7 +8851,7 @@ msgstr "Exportar canal" msgid "Connected apps" msgstr "Aplicaciones (apps) conectadas" -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:168 +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 msgid "Permission Groups" msgstr "Grupos de permisos" @@ -10499,7 +10554,7 @@ msgstr "Enviar artículos multimedia en HTML" msgid "Not supported by some microblog services such as Mastodon" msgstr "No soportado por algunos servicios de microblog como Mastodon" -#: ../../addon/pubcrawl/pubcrawl.php:1054 +#: ../../addon/pubcrawl/pubcrawl.php:1053 msgid "ActivityPub Protocol Settings" msgstr "Ajustes del protocolo ActivityPub" @@ -13323,312 +13378,332 @@ msgstr "OpenWebAuth: %1$s da la bienvenida a %2$s" msgid "General Features" msgstr "Funcionalidades básicas" -#: ../../include/features.php:59 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" - #: ../../include/features.php:60 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" - -#: ../../include/features.php:68 msgid "Advanced Profiles" msgstr "Perfiles avanzados" -#: ../../include/features.php:69 +#: ../../include/features.php:61 msgid "Additional profile sections and selections" msgstr "Secciones y selecciones de perfil adicionales" -#: ../../include/features.php:77 +#: ../../include/features.php:69 msgid "Profile Import/Export" msgstr "Importar/Exportar perfil" -#: ../../include/features.php:78 +#: ../../include/features.php:70 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:86 +#: ../../include/features.php:78 msgid "Web Pages" msgstr "Páginas web" -#: ../../include/features.php:87 +#: ../../include/features.php:79 msgid "Provide managed web pages on your channel" msgstr "Proveer páginas web gestionadas en su canal" -#: ../../include/features.php:96 +#: ../../include/features.php:88 msgid "Provide a wiki for your channel" msgstr "Proporcionar un wiki para su canal" -#: ../../include/features.php:113 +#: ../../include/features.php:105 msgid "Private Notes" msgstr "Notas privadas" -#: ../../include/features.php:114 +#: ../../include/features.php:106 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:123 +#: ../../include/features.php:115 msgid "Create personal planning cards" msgstr "Crear fichas de planificación personal" -#: ../../include/features.php:133 +#: ../../include/features.php:125 msgid "Create interactive articles" msgstr "Crear artículos interactivos" -#: ../../include/features.php:141 +#: ../../include/features.php:133 msgid "Navigation Channel Select" msgstr "Navegación por el selector de canales" -#: ../../include/features.php:142 +#: ../../include/features.php:134 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:150 +#: ../../include/features.php:142 msgid "Photo Location" msgstr "Ubicación de las fotos" -#: ../../include/features.php:151 +#: ../../include/features.php:143 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:159 +#: ../../include/features.php:151 msgid "Access Controlled Chatrooms" msgstr "Salas de chat moderadas" -#: ../../include/features.php:160 +#: ../../include/features.php:152 msgid "Provide chatrooms and chat services with access control." msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../include/features.php:169 -msgid "Provide alternate connection permission roles." -msgstr "Proporcionar roles de acceso alternativos para esta conexión." - -#: ../../include/features.php:177 +#: ../../include/features.php:161 msgid "Smart Birthdays" msgstr "Cumpleaños inteligentes" -#: ../../include/features.php:178 +#: ../../include/features.php:162 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:186 +#: ../../include/features.php:170 msgid "Event Timezone Selection" msgstr "Selección del huso horario del evento" -#: ../../include/features.php:187 +#: ../../include/features.php:171 msgid "Allow event creation in timezones other than your own." msgstr "Permitir la creación de eventos en husos horarios distintos del suyo." -#: ../../include/features.php:196 +#: ../../include/features.php:180 msgid "Premium Channel" msgstr "Canal premium" -#: ../../include/features.php:197 +#: ../../include/features.php:181 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/features.php:205 +#: ../../include/features.php:189 msgid "Advanced Directory Search" msgstr "Búsqueda avanzada en el directorio" -#: ../../include/features.php:206 +#: ../../include/features.php:190 msgid "Allows creation of complex directory search queries" msgstr "Permitir la creación de consultas complejas en las búsquedas en el directorio" -#: ../../include/features.php:214 +#: ../../include/features.php:198 msgid "Advanced Theme and Layout Settings" msgstr "Ajustes avanzados de temas y esquemas" -#: ../../include/features.php:215 +#: ../../include/features.php:199 msgid "Allows fine tuning of themes and page layouts" msgstr "Permitir el ajuste fino de temas y esquemas de páginas" -#: ../../include/features.php:225 +#: ../../include/features.php:208 +msgid "Access Control and Permissions" +msgstr "Control de acceso y permisos" + +#: ../../include/features.php:212 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Grupos de canales" + +#: ../../include/features.php:213 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" + +#: ../../include/features.php:221 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" + +#: ../../include/features.php:222 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" + +#: ../../include/features.php:232 +msgid "Provide alternate connection permission roles." +msgstr "Proporcionar roles de acceso alternativos para esta conexión." + +#: ../../include/features.php:240 +msgid "OAuth Clients" +msgstr "Clientes OAuth" + +#: ../../include/features.php:241 +msgid "Manage authenticatication tokens for mobile and remote apps." +msgstr "Administrar tokens de autenticación para aplicaciones móviles y remotas." + +#: ../../include/features.php:249 +msgid "Access Tokens" +msgstr "Tokens de acceso" + +#: ../../include/features.php:250 +msgid "Create access tokens so that non-members can access private content." +msgstr "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado." + +#: ../../include/features.php:261 msgid "Post Composition Features" msgstr "Opciones para la redacción de entradas" -#: ../../include/features.php:229 +#: ../../include/features.php:265 msgid "Large Photos" msgstr "Fotos de gran tamaño" -#: ../../include/features.php:230 +#: ../../include/features.php:266 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:239 +#: ../../include/features.php:275 msgid "Automatically import channel content from other channels or feeds" msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../include/features.php:247 +#: ../../include/features.php:283 msgid "Even More Encryption" msgstr "Más cifrado todavía" -#: ../../include/features.php:248 +#: ../../include/features.php:284 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:256 +#: ../../include/features.php:292 msgid "Enable Voting Tools" msgstr "Permitir entradas con votación" -#: ../../include/features.php:257 +#: ../../include/features.php:293 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:265 +#: ../../include/features.php:301 msgid "Disable Comments" msgstr "Deshabilitar comentarios" -#: ../../include/features.php:266 +#: ../../include/features.php:302 msgid "Provide the option to disable comments for a post" msgstr "Proporcionar la opción de desactivar los comentarios para una entrada" -#: ../../include/features.php:274 +#: ../../include/features.php:310 msgid "Delayed Posting" msgstr "Publicación aplazada" -#: ../../include/features.php:275 +#: ../../include/features.php:311 msgid "Allow posts to be published at a later date" msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../include/features.php:283 +#: ../../include/features.php:319 msgid "Content Expiration" msgstr "Caducidad del contenido" -#: ../../include/features.php:284 +#: ../../include/features.php:320 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:292 +#: ../../include/features.php:328 msgid "Suppress Duplicate Posts/Comments" msgstr "Prevenir entradas o comentarios duplicados" -#: ../../include/features.php:293 +#: ../../include/features.php:329 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:304 +#: ../../include/features.php:340 msgid "Network and Stream Filtering" msgstr "Filtrado del contenido" -#: ../../include/features.php:308 +#: ../../include/features.php:344 msgid "Search by Date" msgstr "Buscar por fecha" -#: ../../include/features.php:309 +#: ../../include/features.php:345 msgid "Ability to select posts by date ranges" msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../include/features.php:317 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Grupos de canales" - -#: ../../include/features.php:318 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" - -#: ../../include/features.php:327 +#: ../../include/features.php:355 msgid "Save search terms for re-use" msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../include/features.php:335 +#: ../../include/features.php:363 msgid "Network Personal Tab" msgstr "Actividad personal" -#: ../../include/features.php:336 +#: ../../include/features.php:364 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:344 +#: ../../include/features.php:372 msgid "Network New Tab" msgstr "Contenido nuevo" -#: ../../include/features.php:345 +#: ../../include/features.php:373 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:353 +#: ../../include/features.php:381 msgid "Affinity Tool" msgstr "Herramienta de afinidad" -#: ../../include/features.php:354 +#: ../../include/features.php:382 msgid "Filter stream activity by depth of relationships" msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../include/features.php:363 +#: ../../include/features.php:391 msgid "Show friend and connection suggestions" msgstr "Mostrar sugerencias de amigos y conexiones" -#: ../../include/features.php:371 +#: ../../include/features.php:399 msgid "Connection Filtering" msgstr "Filtrado de conexiones" -#: ../../include/features.php:372 +#: ../../include/features.php:400 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../include/features.php:384 +#: ../../include/features.php:412 msgid "Post/Comment Tools" msgstr "Gestión de entradas y comentarios" -#: ../../include/features.php:388 +#: ../../include/features.php:416 msgid "Community Tagging" msgstr "Etiquetas de la comunidad" -#: ../../include/features.php:389 +#: ../../include/features.php:417 msgid "Ability to tag existing posts" msgstr "Capacidad de etiquetar entradas existentes" -#: ../../include/features.php:397 +#: ../../include/features.php:425 msgid "Post Categories" msgstr "Temas de las entradas" -#: ../../include/features.php:398 +#: ../../include/features.php:426 msgid "Add categories to your posts" msgstr "Añadir temas a sus publicaciones" -#: ../../include/features.php:406 +#: ../../include/features.php:434 msgid "Emoji Reactions" msgstr "Emoticonos \"emoji\"" -#: ../../include/features.php:407 +#: ../../include/features.php:435 msgid "Add emoji reaction ability to posts" msgstr "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas" -#: ../../include/features.php:416 +#: ../../include/features.php:444 msgid "Ability to file posts under folders" msgstr "Capacidad de archivar entradas en carpetas" -#: ../../include/features.php:424 +#: ../../include/features.php:452 msgid "Dislike Posts" msgstr "Desagrado de publicaciones" -#: ../../include/features.php:425 +#: ../../include/features.php:453 msgid "Ability to dislike posts/comments" msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../include/features.php:433 +#: ../../include/features.php:461 msgid "Star Posts" msgstr "Entradas destacadas" -#: ../../include/features.php:434 +#: ../../include/features.php:462 msgid "Ability to mark special posts with a star indicator" msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../include/features.php:442 +#: ../../include/features.php:470 msgid "Tag Cloud" msgstr "Nube de etiquetas" -#: ../../include/features.php:443 +#: ../../include/features.php:471 msgid "Provide a personal tag cloud on your channel page" msgstr "Proveer nube de etiquetas personal en su página de canal" @@ -13841,10 +13916,6 @@ msgstr "Su página del perfil" msgid "Manage/Edit profiles" msgstr "Administrar/editar perfiles" -#: ../../include/nav.php:119 -msgid "Edit your profile" -msgstr "Editar su perfil" - #: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Sign in" msgstr "Acceder" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 50327000a..3c9946ebb 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -814,7 +814,8 @@ App::$strings["0-99 default 99"] = "0-99 por defecto 99"; App::$strings["Default minimum affinity level"] = "Nivel mínimo de afinidad por defecto"; App::$strings["0-99 - default 0"] = "0-99 - por defecto 0"; App::$strings["Affinity Slider Settings"] = "Ajustes del controlador de afinidad"; -App::$strings["Feature/Addon Settings"] = "Ajustes de los complementos"; +App::$strings["Addon Settings"] = "Ajustes de los complementos"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Guarde o envíe los cambios a cualquier panel antes de abrir otro."; App::$strings["%s - (Experimental)"] = "%s - (Experimental)"; App::$strings["Display Settings"] = "Ajustes de visualización"; App::$strings["Theme Settings"] = "Ajustes del tema"; @@ -1244,6 +1245,7 @@ App::$strings["Layout Description"] = "Descripción de la plantilla"; App::$strings["Download PDL file"] = "Descargar el fichero PDL"; App::$strings["Please refresh page"] = "Por favor, recargue la página"; App::$strings["Unknown error"] = "Error desconocido"; +App::$strings["Token verification failed."] = "Ha fallado el token de verificación."; App::$strings["Email Verification Required"] = "Verificación obligatoria del correo electrónico"; App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Se ha enviado un token de verificación a su dirección de correo electrónico [%s]. Ingrese ese símbolo aquí para completar el paso de verificación de cuenta. Por favor, espere unos minutos para el envío, y revise su carpeta de spam si no ve el mensaje."; App::$strings["Resend Email"] = "Reenvío de correo electrónico"; @@ -1347,7 +1349,7 @@ App::$strings["Upload a profile photo"] = "Subir una foto de perfil"; App::$strings["Upload a cover photo"] = "Subir una foto de portada del perfil"; App::$strings["Edit your default profile"] = "Editar su perfil por defecto"; App::$strings["View friend suggestions"] = "Ver sugerencias de amistad"; -App::$strings["View the directory to find other interesting channels"] = "Ver el directorio para encontrar otros canales interesantes"; +App::$strings["View the channel directory"] = "Ver el directorio de canales"; App::$strings["View/edit your channel settings"] = "Ver o modificar los ajustes de su canal"; App::$strings["View the site or project documentation"] = "Ver el sitio o la documentación del proyecto"; App::$strings["Visit your channel homepage"] = "Visitar la página principal de su canal"; @@ -1540,8 +1542,8 @@ App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dir 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["Registration successful. Continue to create your first channel..."] = "Registro exitoso. Continúe creando tu primer canal..."; +App::$strings["Registration successful. Please check your email for validation instructions."] = "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo."; App::$strings["Your registration is pending approval by the site owner."] = "Su registro está pendiente de aprobación por el propietario del sitio."; App::$strings["Your registration can not be processed."] = "Su registro no puede ser procesado."; App::$strings["Registration on this hub is disabled."] = "El registro está deshabilitado en este sitio."; @@ -1604,7 +1606,6 @@ App::$strings["Show in your contacts shared folder"] = "Mostrar en la carpeta co App::$strings["No channel."] = "Ningún canal."; App::$strings["No connections in common."] = "Ninguna conexión en común."; App::$strings["View Common Connections"] = "Ver las conexiones comunes"; -App::$strings["Token verification failed."] = "Ha fallado el token de verificación."; App::$strings["Email verification resent"] = "Reenvío del email de verificación"; App::$strings["Unable to resend email verification message."] = "No se puede reenviar el mensaje de verificación por correo electrónico."; App::$strings["No connections."] = "Sin conexiones."; @@ -1912,6 +1913,18 @@ App::$strings["Suggestions"] = "Sugerencias"; App::$strings["See more..."] = "Ver más..."; App::$strings["Saved Folders"] = "Carpetas guardadas"; App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Profile Creation"] = "Creación de perfiles"; +App::$strings["Upload profile photo"] = "Cargar la foto del perfil"; +App::$strings["Upload cover photo"] = "Cargar la foto de portada del perfil"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Find and Connect with others"] = "Encontrar y conectarse con otros"; +App::$strings["Manage your connections"] = "Gestionar sus conexiones"; +App::$strings["Communicate"] = "Comunicarse"; +App::$strings["View your channel homepage"] = "Ver la página principal de su canal"; +App::$strings["View your network stream"] = "Ver el \"stream\" de su red"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["View public stream. Warning: not moderated"] = "Ver el \"stream\" público. Advertencia: no está moderado"; +App::$strings["New Member Links"] = "Enlaces para nuevos miembros"; 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"; @@ -1920,7 +1933,7 @@ App::$strings["Plugin Features"] = "Extensiones"; 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["Addon settings"] = "Ajustes de los 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"; @@ -3011,8 +3024,6 @@ App::$strings["Embedded content"] = "Contenido incorporado"; App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s da la bienvenida a %2\$s"; App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; 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"; @@ -3030,7 +3041,6 @@ 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["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión."; 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["Event Timezone Selection"] = "Selección del huso horario del evento"; @@ -3041,6 +3051,16 @@ App::$strings["Advanced Directory Search"] = "Búsqueda avanzada en el directori 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["Access Control and Permissions"] = "Control de acceso y permisos"; +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["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Provide alternate connection permission roles."] = "Proporcionar roles de acceso alternativos para esta conexión."; +App::$strings["OAuth Clients"] = "Clientes OAuth"; +App::$strings["Manage authenticatication tokens for mobile and remote apps."] = "Administrar tokens de autenticación para aplicaciones móviles y remotas."; +App::$strings["Access Tokens"] = "Tokens de acceso"; +App::$strings["Create access tokens so that non-members can access private content."] = "Crear tokens de acceso para que los no miembros puedan acceder a contenido privado."; 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)"; @@ -3060,8 +3080,6 @@ App::$strings["Prevent posts with identical content to be published with less th 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["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."; @@ -3152,7 +3170,6 @@ App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; App::$strings["End this session"] = "Finalizar esta sesión"; App::$strings["Your profile page"] = "Su página del perfil"; App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit your profile"] = "Editar su perfil"; App::$strings["Sign in"] = "Acceder"; App::$strings["Take me home"] = "Volver a la página principal"; App::$strings["Log me out of this site"] = "Salir de este sitio"; -- cgit v1.2.3 From dbe73cdcbe4a51bbb9588af88afea22b5b201cc0 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 2 Mar 2018 12:04:23 -0800 Subject: add icon to any addon settings blocks which don't already have one --- view/tpl/generic_addon_settings.tpl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view') diff --git a/view/tpl/generic_addon_settings.tpl b/view/tpl/generic_addon_settings.tpl index 57028237a..875c97feb 100644 --- a/view/tpl/generic_addon_settings.tpl +++ b/view/tpl/generic_addon_settings.tpl @@ -2,7 +2,11 @@

-- cgit v1.2.3 From df038055799d839aebab4e1a8b43fba81192c186 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 2 Mar 2018 13:15:28 -0800 Subject: process follow from article menu in the background, do not reload page - hubzilla issue #987 --- view/js/main.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index f6fe475d8..98a756fff 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -304,6 +304,12 @@ function insertCommentURL(comment, id) { return true; } +function doFollowAuthor(url) { + $.get(url, function(data) { notificationsUpdate(); }); + return true; +} + + function viewsrc(id) { $.colorbox({href: 'viewsrc/' + id, maxWidth: '80%', maxHeight: '80%' }); } -- cgit v1.2.3 From ca1022675c84c862e9ae3180a47360040b24e9e2 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 3 Mar 2018 15:19:39 -0800 Subject: There was no pdl for mod_thing; add one because it's only a link away from profile creation and remains on that page until you go elsewhere and new members may need help to find their way out --- view/pdl/mod_thing.pdl | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 view/pdl/mod_thing.pdl (limited to 'view') diff --git a/view/pdl/mod_thing.pdl b/view/pdl/mod_thing.pdl new file mode 100644 index 000000000..7e15fc869 --- /dev/null +++ b/view/pdl/mod_thing.pdl @@ -0,0 +1,7 @@ +[region=aside] +[widget=fullprofile][/widget] +[/region] +[region=right_aside] +[widget=notifications][/widget] +[widget=newmember][/widget] +[/region] -- cgit v1.2.3 From 471c3c4d068d1c6d4e149098d400d792fb3550a6 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 3 Mar 2018 15:52:57 -0800 Subject: add dummy f= arg to suggestion urls, use directory version of suggest for newmember link instead of the suggest module as the UI is prettier. --- view/tpl/peoplefind.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/peoplefind.tpl b/view/tpl/peoplefind.tpl index 5f420f6d0..b4d9ef19f 100755 --- a/view/tpl/peoplefind.tpl +++ b/view/tpl/peoplefind.tpl @@ -10,7 +10,7 @@ -- cgit v1.2.3 From bb7457f43ccfc04a079eaa1856e79062aa9937fd Mon Sep 17 00:00:00 2001 From: phellmes Date: Mon, 5 Mar 2018 00:24:41 +0100 Subject: Update DE translation strings --- view/de-de/hmessages.po | 3066 ++++++++++++++++++++++++++--------------------- view/de-de/hstrings.php | 210 ++-- 2 files changed, 1807 insertions(+), 1469 deletions(-) (limited to 'view') diff --git a/view/de-de/hmessages.po b/view/de-de/hmessages.po index f68a96c22..53dcc0d43 100644 --- a/view/de-de/hmessages.po +++ b/view/de-de/hmessages.po @@ -11,22 +11,24 @@ # Ettore Atalan , 2015-2017 # Frank Dieckmann , 2013 # Harald Klimach , 2016 +# Herbert Thielen , 2018 +# Holger - , 2018 # JooBee , 2014 # Kai , 2015 # Oliver , 2015-2017 -# Phellmes , 2014,2016-2017 +# Phellmes , 2014,2016-2018 # sasiflo , 2014 # Steff , 2015-2016 # Tobias Diekershoff , 2016 -# Tobias Diekershoff , 2016-2017 +# Tobias Diekershoff , 2016-2018 # zottel , 2015 # sasiflo , 2015 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-12-13 12:54+0100\n" -"PO-Revision-Date: 2017-12-19 11:56+0000\n" +"POT-Creation-Date: 2018-03-01 08:51+0100\n" +"PO-Revision-Date: 2018-03-04 23:22+0000\n" "Last-Translator: Phellmes \n" "Language-Team: German (http://www.transifex.com/Friendica/red-matrix/language/de/)\n" "MIME-Version: 1.0\n" @@ -164,13 +166,13 @@ msgid "Special - Group Repository" msgstr "Speziell - Gruppenarchiv" #: ../../Zotlabs/Access/PermissionRoles.php:287 -#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:132 -#: ../../Zotlabs/Module/Settings/Channel.php:474 -#: ../../Zotlabs/Module/Connedit.php:936 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Register.php:221 ../../include/selectors.php:49 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Settings/Channel.php:473 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 #: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/event.php:1308 -#: ../../include/event.php:1315 ../../include/connections.php:689 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:689 #: ../../include/connections.php:696 msgid "Other" msgstr "Andere" @@ -184,7 +186,7 @@ msgstr "Benutzerdefiniert/Expertenmodus" #: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 #: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 #: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Cards.php:29 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 #: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1198 msgid "Requested profile is not available." msgstr "Das angefragte Profil ist nicht verfügbar." @@ -199,7 +201,7 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Appman.php:86 ../../Zotlabs/Module/Regmod.php:21 #: ../../Zotlabs/Module/Article_edit.php:51 #: ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/New_channel.php:102 #: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 #: ../../Zotlabs/Module/Moderate.php:13 #: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 @@ -211,11 +213,11 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 #: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:400 #: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 -#: ../../Zotlabs/Module/Profile_photo.php:294 -#: ../../Zotlabs/Module/Profile_photo.php:307 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:228 -#: ../../Zotlabs/Module/Item.php:245 ../../Zotlabs/Module/Item.php:255 -#: ../../Zotlabs/Module/Item.php:1085 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1099 ../../Zotlabs/Module/Page.php:34 #: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 #: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 #: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 @@ -226,15 +228,15 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:68 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Like.php:184 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 -#: ../../Zotlabs/Module/Display.php:404 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Display.php:406 ../../Zotlabs/Module/Network.php:15 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:85 @@ -244,7 +246,7 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../Zotlabs/Module/Service_limits.php:11 #: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Notifications.php:11 -#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:169 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 #: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 #: ../../addon/gitwiki/Mod_Gitwiki.php:196 #: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 @@ -252,9 +254,9 @@ msgstr "Das angefragte Profil ist nicht verfügbar." #: ../../include/attach.php:270 ../../include/attach.php:284 #: ../../include/attach.php:293 ../../include/attach.php:366 #: ../../include/attach.php:380 ../../include/attach.php:387 -#: ../../include/attach.php:469 ../../include/attach.php:1008 -#: ../../include/attach.php:1082 ../../include/attach.php:1247 -#: ../../include/items.php:3633 ../../include/photos.php:27 +#: ../../include/attach.php:469 ../../include/attach.php:1019 +#: ../../include/attach.php:1093 ../../include/attach.php:1258 +#: ../../include/items.php:3656 ../../include/photos.php:27 msgid "Permission denied." msgstr "Berechtigung verweigert." @@ -263,7 +265,7 @@ msgstr "Berechtigung verweigert." msgid "Block Name" msgstr "Block-Name" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2288 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2402 msgid "Blocks" msgstr "Blöcke" @@ -282,11 +284,11 @@ msgid "Edited" msgstr "Geändert" #: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 -#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 -#: ../../Zotlabs/Module/Cards.php:96 ../../Zotlabs/Module/Webpages.php:239 -#: ../../Zotlabs/Storage/Browser.php:273 ../../Zotlabs/Storage/Browser.php:379 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" msgstr "Erstelle" @@ -296,15 +298,15 @@ msgstr "Erstelle" #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Settings/Oauth.php:149 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 -#: ../../Zotlabs/Module/Connections.php:260 -#: ../../Zotlabs/Module/Connections.php:297 -#: ../../Zotlabs/Module/Connections.php:317 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Connections.php:265 +#: ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Connections.php:323 ../../Zotlabs/Module/Wiki.php:202 #: ../../Zotlabs/Module/Wiki.php:358 ../../Zotlabs/Module/Menu.php:112 #: ../../Zotlabs/Module/Layouts.php:193 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:399 -#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:285 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:288 #: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 #: ../../addon/gitwiki/Mod_Gitwiki.php:151 #: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1297 @@ -321,19 +323,19 @@ msgstr "Teilen" #: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 #: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 #: ../../Zotlabs/Module/Article_edit.php:129 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Accounts.php:174 #: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Settings/Oauth.php:150 #: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 -#: ../../Zotlabs/Module/Connections.php:268 +#: ../../Zotlabs/Module/Connections.php:273 #: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 -#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 #: ../../Zotlabs/Module/Profiles.php:803 #: ../../Zotlabs/Module/Editwebpage.php:167 #: ../../Zotlabs/Module/Webpages.php:242 -#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:400 -#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:286 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 #: ../../include/conversation.php:690 ../../include/conversation.php:733 msgid "Delete" msgstr "Löschen" @@ -363,6 +365,7 @@ msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "Einladungslimit überschritten. Bitte kontaktiere den Administrator Deines $Projectname-Servers." #: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 #, php-format msgid "%s : Message delivery failed." msgstr "%s : Nachricht konnte nicht zugestellt werden." @@ -423,35 +426,36 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../Zotlabs/Module/Connect.php:98 #: ../../Zotlabs/Module/Admin/Features.php:66 #: ../../Zotlabs/Module/Admin/Plugins.php:438 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 #: ../../Zotlabs/Module/Admin/Logs.php:84 #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 -#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Site.php:289 #: ../../Zotlabs/Module/Admin/Profs.php:157 #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Security.php:104 #: ../../Zotlabs/Module/Settings/Permcats.php:110 -#: ../../Zotlabs/Module/Settings/Channel.php:489 +#: ../../Zotlabs/Module/Settings/Channel.php:488 #: ../../Zotlabs/Module/Settings/Features.php:47 #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Featured.php:52 -#: ../../Zotlabs/Module/Settings/Display.php:209 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 #: ../../Zotlabs/Module/Settings/Oauth.php:87 #: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 #: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:345 #: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 #: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 #: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 -#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:904 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 #: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 #: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 #: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 #: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 #: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Lib/ThreadItem.php:754 +#: ../../Zotlabs/Lib/ThreadItem.php:750 #: ../../Zotlabs/Widget/Eventstools.php:16 #: ../../Zotlabs/Widget/Wiki_pages.php:40 #: ../../Zotlabs/Widget/Wiki_pages.php:97 @@ -465,7 +469,7 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../addon/likebanner/likebanner.php:57 #: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 #: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 #: ../../addon/gitwiki/Mod_Gitwiki.php:155 #: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 #: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 @@ -480,8 +484,8 @@ msgstr "3. Klicke auf [Verbinden]" #: ../../addon/statusnet/statusnet.php:322 #: ../../addon/statusnet/statusnet.php:380 #: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:217 -#: ../../addon/twitter/twitter.php:259 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 #: ../../addon/smileybutton/smileybutton.php:219 #: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 #: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 @@ -490,21 +494,16 @@ msgstr "3. Klicke auf [Verbinden]" msgid "Submit" msgstr "Absenden" -#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Cards.php:38 -#: ../../Zotlabs/Module/Cards.php:178 ../../Zotlabs/Lib/Apps.php:224 -#: ../../include/conversation.php:1890 ../../include/features.php:122 -#: ../../include/nav.php:490 -msgid "Cards" -msgstr "Karten" +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:179 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:124 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Artikel" #: ../../Zotlabs/Module/Articles.php:95 msgid "Add Article" msgstr "Artikel hinzufügen" -#: ../../Zotlabs/Module/Articles.php:178 ../../include/nav.php:501 -msgid "Articles" -msgstr "Artikel" - #: ../../Zotlabs/Module/Editlayout.php:79 #: ../../Zotlabs/Module/Article_edit.php:17 #: ../../Zotlabs/Module/Article_edit.php:33 @@ -533,7 +532,7 @@ msgstr "Layout bearbeiten" #: ../../Zotlabs/Module/Import_items.php:120 #: ../../Zotlabs/Module/Cloud.php:111 ../../Zotlabs/Module/Group.php:74 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Like.php:295 ../../Zotlabs/Web/WebServer.php:168 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 #: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 #: ../../addon/frphotos/frphotos.php:81 ../../addon/redfiles/redfiles.php:109 #: ../../include/items.php:358 @@ -548,7 +547,7 @@ msgstr "Ungültiger Profil-Identifikator" msgid "Profile Visibility Editor" msgstr "Profil-Sichtbarkeits-Editor" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1633 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1634 msgid "Profile" msgstr "Profil" @@ -576,9 +575,9 @@ msgstr "Zusammenfassung:" #: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 #: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 #: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 -#: ../../Zotlabs/Lib/Apps.php:744 ../../Zotlabs/Lib/Apps.php:822 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:832 #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 -#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:842 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:853 #: ../../include/conversation.php:1160 msgid "Unknown" msgstr "Unbekannt" @@ -691,10 +690,12 @@ msgstr "Alles löschen" #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 #: ../../Zotlabs/Module/Wiki.php:345 ../../Zotlabs/Module/Wiki.php:375 -#: ../../Zotlabs/Module/Connedit.php:942 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 -#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 -#: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 #: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1386 #: ../../include/conversation.php:1435 msgid "Cancel" @@ -709,85 +710,85 @@ msgstr "Entschuldigung, aber das Bearbeiten von wiederkehrenden Veranstaltungen #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:924 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 #: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 -#: ../../Zotlabs/Storage/Browser.php:280 +#: ../../Zotlabs/Storage/Browser.php:283 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../addon/rendezvous/rendezvous.php:172 #: ../../addon/gitwiki/Mod_Gitwiki.php:158 msgid "Name" msgstr "Name" -#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 msgid "Organisation" msgstr "Organisation" -#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 msgid "Title" msgstr "Titel" -#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Phone" msgstr "Telefon" #: ../../Zotlabs/Module/Cdav.php:1174 -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:928 ../../Zotlabs/Module/Profiles.php:790 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:790 #: ../../addon/openid/MysqlProvider.php:56 #: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1769 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1775 msgid "Email" msgstr "E-Mail" -#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Instant messenger" msgstr "Sofortnachrichtendienst" -#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 #: ../../Zotlabs/Module/Profiles.php:792 msgid "Website" msgstr "Webseite" #: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:931 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:793 msgid "Address" msgstr "Adresse" -#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 #: ../../Zotlabs/Module/Profiles.php:794 msgid "Note" msgstr "Hinweis" -#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:933 -#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1301 +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1308 #: ../../include/connections.php:682 msgid "Mobile" msgstr "Mobil" -#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:934 -#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1302 +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1309 #: ../../include/connections.php:683 msgid "Home" msgstr "Home" -#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:935 -#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1305 +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1312 #: ../../include/connections.php:686 msgid "Work" msgstr "Arbeit" -#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:937 +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 #: ../../Zotlabs/Module/Profiles.php:799 #: ../../addon/jappixmini/jappixmini.php:368 msgid "Add Contact" msgstr "Kontakt hinzufügen" -#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:938 +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 #: ../../Zotlabs/Module/Profiles.php:800 msgid "Add Field" msgstr "Feld hinzufügen" @@ -796,36 +797,36 @@ msgstr "Feld hinzufügen" #: ../../Zotlabs/Module/Admin/Plugins.php:453 #: ../../Zotlabs/Module/Settings/Oauth.php:42 #: ../../Zotlabs/Module/Settings/Oauth.php:113 -#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:802 -#: ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:393 msgid "Update" msgstr "Aktualisieren" -#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:943 +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 msgid "P.O. Box" msgstr "Postfach" -#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:944 +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 msgid "Additional" msgstr "Zusätzlich" -#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:945 +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 msgid "Street" msgstr "Straße" -#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:946 +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 msgid "Locality" msgstr "Ortschaft" -#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:947 +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 msgid "Region" msgstr "Region" -#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:948 +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 msgid "ZIP Code" msgstr "Postleitzahl" -#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:949 +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 #: ../../Zotlabs/Module/Profiles.php:760 msgid "Country" msgstr "Land" @@ -843,7 +844,7 @@ msgid "This site is not a directory server" msgstr "Diese Webseite ist kein Verzeichnisserver" #: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:431 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:508 msgid "You must be logged in to see this page." msgstr "Du musst angemeldet sein, um diese Seite betrachten zu können." @@ -919,10 +920,14 @@ msgid "" " 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/Hq.php:136 -msgid "Welcome to hubzilla!" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" msgstr "Willkommen bei Hubzilla!" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "Du hast keine ungelesenen Beiträge..." + #: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 #: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 @@ -930,25 +935,25 @@ msgstr "Willkommen bei Hubzilla!" msgid "Public access denied." msgstr "Öffentlichen Zugriff verweigert." -#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:313 -#: ../../Zotlabs/Lib/Apps.php:250 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../include/text.php:1029 ../../include/text.php:1041 -#: ../../include/acl_selectors.php:213 ../../include/nav.php:211 +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 msgid "Search" msgstr "Suche" -#: ../../Zotlabs/Module/Search.php:225 +#: ../../Zotlabs/Module/Search.php:226 #, php-format msgid "Items tagged with: %s" msgstr "Beiträge mit Schlagwort: %s" -#: ../../Zotlabs/Module/Search.php:227 +#: ../../Zotlabs/Module/Search.php:228 #, php-format msgid "Search results for: %s" msgstr "Suchergebnisse für: %s" -#: ../../Zotlabs/Module/Pubstream.php:81 -#: ../../Zotlabs/Widget/Notifications.php:129 +#: ../../Zotlabs/Module/Pubstream.php:93 +#: ../../Zotlabs/Widget/Notifications.php:131 msgid "Public Stream" msgstr "Öffentlicher Beitrags-Stream" @@ -1048,7 +1053,7 @@ msgid "Menu Item Permissions" msgstr "Zugriffsrechte des Menü-Elements" #: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:522 +#: ../../Zotlabs/Module/Settings/Channel.php:521 msgid "(click to open/close)" msgstr "(zum öffnen/schließen anklicken)" @@ -1072,17 +1077,17 @@ msgstr "Magic-Auth verwenden, falls verfügbar" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:240 +#: ../../Zotlabs/Module/Admin/Site.php:252 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 #: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 #: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1107,8 +1112,8 @@ msgstr "Magic-Auth verwenden, falls verfügbar" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1123,17 +1128,17 @@ msgstr "Nein" #: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Admin/Site.php:242 +#: ../../Zotlabs/Module/Admin/Site.php:254 #: ../../Zotlabs/Module/Settings/Channel.php:305 -#: ../../Zotlabs/Module/Settings/Display.php:105 -#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 #: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 #: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 #: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 #: ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Filestorage.php:155 #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 ../../boot.php:1669 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:98 @@ -1158,8 +1163,8 @@ msgstr "Nein" #: ../../addon/statusnet/statusnet.php:389 #: ../../addon/statusnet/statusnet.php:411 #: ../../addon/statusnet/statusnet.php:415 -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 -#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 #: ../../addon/smileybutton/smileybutton.php:211 #: ../../addon/smileybutton/smileybutton.php:215 #: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 @@ -1276,8 +1281,8 @@ msgid "Event not found." msgstr "Termin nicht gefunden." #: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:384 ../../include/conversation.php:119 -#: ../../include/text.php:1941 ../../include/event.php:1153 +#: ../../Zotlabs/Module/Like.php:385 ../../include/conversation.php:119 +#: ../../include/text.php:2007 ../../include/event.php:1153 msgid "event" msgstr "Termin" @@ -1288,7 +1293,7 @@ msgstr "Termintitel bearbeiten" #: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 #: ../../Zotlabs/Module/Appman.php:140 ../../Zotlabs/Module/Appman.php:141 #: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 -#: ../../include/datetime.php:265 +#: ../../include/datetime.php:205 msgid "Required" msgstr "Benötigt" @@ -1339,7 +1344,7 @@ msgid "Edit Location" msgstr "Ort bearbeiten" #: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 -#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:764 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:760 #: ../../include/conversation.php:1330 msgid "Preview" msgstr "Vorschau" @@ -1369,7 +1374,7 @@ msgid "Delete event" msgstr "Termin löschen" #: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 -#: ../../include/text.php:1760 +#: ../../include/text.php:1826 msgid "Link to Source" msgstr "Link zur Quelle" @@ -1386,7 +1391,7 @@ msgid "Create Event" msgstr "Termin anlegen" #: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 -#: ../../include/channel.php:1636 +#: ../../include/channel.php:1637 msgid "Export" msgstr "Exportieren" @@ -1459,16 +1464,16 @@ msgid "Hub not found." msgstr "Server nicht gefunden." #: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:382 +#: ../../Zotlabs/Module/Like.php:383 #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:116 ../../include/text.php:1938 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:116 ../../include/text.php:2004 msgid "photo" msgstr "Foto" -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:382 -#: ../../addon/diaspora/Receiver.php:1433 ../../addon/pubcrawl/as.php:1295 -#: ../../include/conversation.php:144 ../../include/text.php:1944 +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:383 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:144 ../../include/text.php:2010 msgid "status" msgstr "Status" @@ -1545,66 +1550,70 @@ msgstr "Mit diesem Formular kannst Du existierende Beiträge und Inhalte aus ein msgid "File to Upload" msgstr "Hochzuladende Datei:" -#: ../../Zotlabs/Module/New_channel.php:121 +#: ../../Zotlabs/Module/New_channel.php:119 #: ../../Zotlabs/Module/Manage.php:138 #, 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/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 msgid "Name or caption" msgstr "Name oder Titel" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:249 +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 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/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 msgid "Choose a short nickname" msgstr "Wähle einen kurzen Spitznamen" -#: ../../Zotlabs/Module/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:251 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 #, 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/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Channel role and privacy" msgstr "Kanaltyp und Privatspäre-Einstellungen" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 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/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:252 +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 msgid "Read more about roles" msgstr "Mehr Informationen über Rollen" -#: ../../Zotlabs/Module/New_channel.php:140 +#: ../../Zotlabs/Module/New_channel.php:138 msgid "Create Channel" msgstr "Einen neuen Kanal anlegen" -#: ../../Zotlabs/Module/New_channel.php:141 +#: ../../Zotlabs/Module/New_channel.php:139 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/New_channel.php:142 +#: ../../Zotlabs/Module/New_channel.php:140 msgid "" "or import an existing channel from another location." msgstr "oder importiere einen bestehenden Kanal von einem anderen Server." +#: ../../Zotlabs/Module/New_channel.php:145 +msgid "Validate" +msgstr "Überprüfe" + #: ../../Zotlabs/Module/Removeme.php:35 msgid "" "Channel removals are not allowed within 48 hours of changing the account " @@ -1647,7 +1656,7 @@ msgid "" msgstr "Standardmäßig wird der Kanal nur auf diesem Server gelöscht, seine Klone verbleiben im Netzwerk" #: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:593 +#: ../../Zotlabs/Module/Settings/Channel.php:592 msgid "Remove Channel" msgstr "Kanal löschen" @@ -1660,12 +1669,12 @@ msgid "NEW" msgstr "NEU" #: ../../Zotlabs/Module/Sharedwithme.php:107 -#: ../../Zotlabs/Storage/Browser.php:282 ../../include/text.php:1394 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 msgid "Size" msgstr "Größe" #: ../../Zotlabs/Module/Sharedwithme.php:108 -#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Storage/Browser.php:286 msgid "Last Modified" msgstr "Zuletzt geändert" @@ -1780,7 +1789,7 @@ msgstr "E-Mail Adresse des Seiten-Administrators" 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." +msgstr "Die E-Mail-Adresse Deines Kontos muss dieser Adresse entsprechen, damit Du Zugriff zur Administrations-Seite erhältst." #: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 msgid "Website URL" @@ -2215,30 +2224,26 @@ msgstr "Zusätzliche Funktionen verwalten" msgid "Update has been marked successful" msgstr "Update wurde als erfolgreich markiert" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Ausführen von %s fehlgeschlagen. Überprüfe die Systemprotokolle." -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 #, php-format msgid "Update %s was successfully applied." msgstr "Update %s wurde erfolgreich ausgeführt." -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 #, 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/Admin/Dbsync.php:39 +#: ../../Zotlabs/Module/Admin/Dbsync.php:41 #, php-format msgid "Update function %s could not be found." msgstr "Update-Funktion %s konnte nicht gefunden werden." -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." -msgstr "Keine fehlgeschlagenen Aktualisierungen." - #: ../../Zotlabs/Module/Admin/Dbsync.php:59 msgid "Failed Updates" msgstr "Fehlgeschlagene Aktualisierungen" @@ -2251,12 +2256,16 @@ msgstr "Als erfolgreich markieren (wenn das Update manuell ausgeführt wurde)" msgid "Attempt to execute this update step automatically" msgstr "Versuche, diesen Updateschritt automatisch auszuführen" +#: ../../Zotlabs/Module/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "Keine fehlgeschlagenen Aktualisierungen." + #: ../../Zotlabs/Module/Admin/Plugins.php:259 #: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 -#: ../../Zotlabs/Module/Display.php:408 +#: ../../Zotlabs/Module/Display.php:410 #: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 -#: ../../include/items.php:3546 +#: ../../include/items.php:3569 msgid "Item not found." msgstr "Element nicht gefunden." @@ -2282,12 +2291,12 @@ msgstr "Aktivieren" #: ../../Zotlabs/Module/Admin/Plugins.php:341 #: ../../Zotlabs/Module/Admin/Plugins.php:436 -#: ../../Zotlabs/Module/Admin/Accounts.php:164 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 #: ../../Zotlabs/Module/Admin/Logs.php:82 #: ../../Zotlabs/Module/Admin/Channels.php:145 #: ../../Zotlabs/Module/Admin/Themes.php:122 #: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Site.php:275 +#: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../Zotlabs/Module/Admin/Security.php:86 #: ../../Zotlabs/Module/Admin.php:136 msgid "Administration" @@ -2305,9 +2314,10 @@ msgid "Toggle" msgstr "Umschalten" #: ../../Zotlabs/Module/Admin/Plugins.php:344 -#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:236 -#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:139 -#: ../../include/nav.php:224 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:55 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:105 +#: ../../include/nav.php:192 msgid "Settings" msgstr "Einstellungen" @@ -2370,7 +2380,7 @@ msgstr "Plugin-Repository herunterladen" msgid "Install new repo" msgstr "Neues Repository installieren" -#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:383 +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 msgid "Install" msgstr "Installieren" @@ -2396,112 +2406,112 @@ msgstr "Zweig/Branch wechseln" msgid "Remove" msgstr "Entfernen" -#: ../../Zotlabs/Module/Admin/Accounts.php:36 +#: ../../Zotlabs/Module/Admin/Accounts.php:37 #, 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/Admin/Accounts.php:43 +#: ../../Zotlabs/Module/Admin/Accounts.php:44 #, 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/Admin/Accounts.php:79 +#: ../../Zotlabs/Module/Admin/Accounts.php:80 msgid "Account not found" msgstr "Konto nicht gefunden" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 ../../include/channel.php:2456 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2462 #, php-format msgid "Account '%s' deleted" msgstr "Konto '%s' gelöscht" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 +#: ../../Zotlabs/Module/Admin/Accounts.php:99 #, php-format msgid "Account '%s' blocked" msgstr "Konto '%s' blockiert" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 +#: ../../Zotlabs/Module/Admin/Accounts.php:107 #, php-format msgid "Account '%s' unblocked" msgstr "Konto '%s' freigegeben" -#: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 #: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 msgid "Accounts" msgstr "Konten" -#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Accounts.php:168 #: ../../Zotlabs/Module/Admin/Channels.php:148 msgid "select all" msgstr "Alle auswählen" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Accounts.php:169 msgid "Registrations waiting for confirm" msgstr "Registrierungen warten auf Bestätigung" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 msgid "Request date" msgstr "Antragsdatum" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:171 msgid "No registrations." msgstr "Keine Registrierungen." -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -#: ../../Zotlabs/Module/Connections.php:282 ../../include/conversation.php:732 +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:287 ../../include/conversation.php:732 msgid "Approve" msgstr "Genehmigen" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 msgid "Deny" msgstr "Verweigern" -#: ../../Zotlabs/Module/Admin/Accounts.php:174 +#: ../../Zotlabs/Module/Admin/Accounts.php:175 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Block" msgstr "Blockieren" -#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Admin/Accounts.php:176 #: ../../Zotlabs/Module/Connedit.php:622 msgid "Unblock" msgstr "Freigeben" -#: ../../Zotlabs/Module/Admin/Accounts.php:180 +#: ../../Zotlabs/Module/Admin/Accounts.php:181 msgid "ID" msgstr "ID" -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/group.php:284 +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:284 msgid "All Channels" msgstr "Alle Kanäle" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 +#: ../../Zotlabs/Module/Admin/Accounts.php:184 msgid "Register date" msgstr "Registrierungs-Datum" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 +#: ../../Zotlabs/Module/Admin/Accounts.php:185 msgid "Last login" msgstr "Letzte Anmeldung" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 +#: ../../Zotlabs/Module/Admin/Accounts.php:186 msgid "Expires" msgstr "Verfällt" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 +#: ../../Zotlabs/Module/Admin/Accounts.php:187 msgid "Service Class" msgstr "Service-Klasse" -#: ../../Zotlabs/Module/Admin/Accounts.php:188 +#: ../../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/Admin/Accounts.php:189 +#: ../../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?" @@ -2610,7 +2620,7 @@ msgid "Disallow Code" msgstr "Code sperren" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1808 ../../include/nav.php:410 +#: ../../include/conversation.php:1808 ../../include/nav.php:378 msgid "Channel" msgstr "Kanal" @@ -2655,415 +2665,472 @@ msgstr "[Experimentell]" msgid "[Unsupported]" msgstr "[Nicht unterstützt]" -#: ../../Zotlabs/Module/Admin/Site.php:147 +#: ../../Zotlabs/Module/Admin/Site.php:158 msgid "Site settings updated." msgstr "Site-Einstellungen aktualisiert." -#: ../../Zotlabs/Module/Admin/Site.php:173 +#: ../../Zotlabs/Module/Admin/Site.php:184 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:2968 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3082 msgid "Default" msgstr "Standard" -#: ../../Zotlabs/Module/Admin/Site.php:184 -#: ../../Zotlabs/Module/Settings/Display.php:139 +#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Settings/Display.php:130 #, php-format msgid "%s - (Incompatible)" msgstr "%s - (Inkompatibel)" -#: ../../Zotlabs/Module/Admin/Site.php:191 -#: ../../Zotlabs/Module/Settings/Display.php:153 +#: ../../Zotlabs/Module/Admin/Site.php:202 msgid "mobile" msgstr "mobil" -#: ../../Zotlabs/Module/Admin/Site.php:193 +#: ../../Zotlabs/Module/Admin/Site.php:204 msgid "experimental" msgstr "experimentell" -#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Admin/Site.php:206 msgid "unsupported" msgstr "nicht unterstützt" -#: ../../Zotlabs/Module/Admin/Site.php:241 +#: ../../Zotlabs/Module/Admin/Site.php:253 msgid "Yes - with approval" msgstr "Ja - mit Zustimmung" -#: ../../Zotlabs/Module/Admin/Site.php:247 +#: ../../Zotlabs/Module/Admin/Site.php:259 msgid "My site is not a public server" msgstr "Mein Server ist kein öffentlicher Server" -#: ../../Zotlabs/Module/Admin/Site.php:248 +#: ../../Zotlabs/Module/Admin/Site.php:260 msgid "My site has paid access only" msgstr "Meine Seite hat nur bezahlten Zugriff" -#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Admin/Site.php:261 msgid "My site has free access only" msgstr "Meine Seite hat nur freien Zugriff" -#: ../../Zotlabs/Module/Admin/Site.php:250 +#: ../../Zotlabs/Module/Admin/Site.php:262 msgid "My site offers free accounts with optional paid upgrades" msgstr "Mein Server bietet kostenlose Konten mit der Möglichkeit zu bezahlten Upgrades" -#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Admin/Site.php:274 msgid "Beginner/Basic" msgstr "Anfänger/Basis" -#: ../../Zotlabs/Module/Admin/Site.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:275 msgid "Novice - not skilled but willing to learn" msgstr "Anfänger - unerfahren, aber bereit zu lernen" -#: ../../Zotlabs/Module/Admin/Site.php:264 +#: ../../Zotlabs/Module/Admin/Site.php:276 msgid "Intermediate - somewhat comfortable" msgstr "Fortgeschritten - relativ komfortabel" -#: ../../Zotlabs/Module/Admin/Site.php:265 +#: ../../Zotlabs/Module/Admin/Site.php:277 msgid "Advanced - very comfortable" msgstr "Fortgeschritten - sehr komfortabel" -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:278 msgid "Expert - I can write computer code" msgstr "Experte - Ich kann Computercode schreiben" -#: ../../Zotlabs/Module/Admin/Site.php:267 +#: ../../Zotlabs/Module/Admin/Site.php:279 msgid "Wizard - I probably know more than you do" msgstr "Zauberer - ich kann wahrscheinlich mehr als Du" -#: ../../Zotlabs/Module/Admin/Site.php:276 ../../Zotlabs/Widget/Admin.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "Seite" -#: ../../Zotlabs/Module/Admin/Site.php:278 -#: ../../Zotlabs/Module/Register.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:269 msgid "Registration" msgstr "Registrierung" -#: ../../Zotlabs/Module/Admin/Site.php:279 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "File upload" msgstr "Dateiupload" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:292 msgid "Policies" msgstr "Richtlinien" -#: ../../Zotlabs/Module/Admin/Site.php:281 +#: ../../Zotlabs/Module/Admin/Site.php:293 #: ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "Fortgeschritten" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:297 #: ../../addon/statusnet/statusnet.php:891 msgid "Site name" msgstr "Seitenname" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Site default technical skill level" msgstr "Standard-Qualifikationsstufe der Website" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "Used to provide a member experience matched to technical comfort level" msgstr "Dies wird verwendet, um eine Benutzererfahrung passend zur technischen Qualifikationsstufe zu bieten." -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Lock the technical skill level setting" msgstr "Sperre die technische Qualifikationsstufe" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:301 msgid "Members can set their own technical comfort level by default" msgstr "Benutzer können standardmäßig ihre eigene technische Qualifikationsstufe einstellen" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Banner/Logo" msgstr "Banner/Logo" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "Ungefiltertes HTML/CSS/JS ist erlaubt" + +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Administrator Information" msgstr "Administrator-Informationen" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Kontaktinformationen für Administratoren des Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann verwendet werden." -#: ../../Zotlabs/Module/Admin/Site.php:293 -#: ../../Zotlabs/Module/Siteinfo.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Siteinfo.php:21 msgid "Site Information" msgstr "Seiteninformationen" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "Öffentlich sichtbare Beschreibung dieses Servers. Wird auf der siteinfo-Seite angezeigt. BBCode kann hier verwendet werden." -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "System language" msgstr "System-Sprache" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "System theme" msgstr "System-Design" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "" "Default system theme - may be over-ridden by user profiles - change theme settings" msgstr "Standard-System-Design – kann durch Nutzerprofile überschieben werden – Design-Einstellungen ändern" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Mobile system theme" msgstr "System-Design für mobile Geräte:" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Theme for mobile devices" msgstr "Theme für mobile Geräte" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Allow Feeds as Connections" msgstr "Feeds als Verbindungen erlauben" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "(Heavy system resource usage)" msgstr "(führt zu hoher Systemlast)" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Maximum image size" msgstr "Maximale Bildgröße" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "Maximale Größe hochgeladener Bilder in Bytes. Standard ist 0 (keine Einschränkung)." -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Does this site allow new member registration?" msgstr "Erlaubt dieser Server die Registrierung neuer Nutzer?" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "Invitation only" msgstr "Nur mit Einladung" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "Erlaube die Neuregistrierung von Mitglieder nur mit einem Einladungscode. Die Registrierungs-Politik muss oben auf Ja gesetzt werden." -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age" +msgstr "Mindestalter" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age (in years) for who may register on this site." +msgstr "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten." + +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Which best describes the types of account offered by this hub?" msgstr "Was ist die passendste Beschreibung der Konten auf diesem Hub?" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Register text" msgstr "Registrierungstext" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Will be displayed prominently on the registration page." msgstr "Wird gut sichtbar auf der Registrierungs-Seite angezeigt." -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "Site homepage to show visitors (default: login box)" msgstr "Homepage des Hubs, die Besuchern angezeigt wird (Voreinstellung: Anmeldemaske)" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:317 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "Beispiele: 'public', um den Stream aller öffentlichen Beiträge anzuzeigen, 'page/sys/home', um eine System-Webseite namens 'home' anzuzeigen, 'include:home.html', um eine Datei einzufügen." -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "Preserve site homepage URL" msgstr "Homepage-URL schützen" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:318 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "Zeigt die Homepage an der Original-URL in einem Frame an, statt auf die eigentliche Adresse der Seite umzuleiten." -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "Accounts abandoned after x days" msgstr "Konten gelten nach X Tagen als unbenutzt" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:319 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "Verschwende keine Systemressourcen auf das Pollen von externen Seiten, wenn das Konto nicht mehr benutzt wird. Trage hier 0 für kein zeitliches Limit." -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "Allowed friend domains" msgstr "Erlaubte Domains für Kontakte" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:320 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "Liste der Domains, die für Freundschaften erlaubt sind, durch Kommas getrennt. Platzhalter werden akzeptiert. Leer lassen, um alle Domains zu erlauben." -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "Verify Email Addresses" msgstr "E-Mail-Adressen überprüfen" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:321 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Aktivieren, um die Überprüfung von E-Mail-Adressen bei der Registrierung von Benutzerkonten zu aktivieren (empfohlen)." -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Force publish" msgstr "Veröffentlichung erzwingen" -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "Die Veröffentlichung aller Profile dieses Servers im Verzeichnis erzwingen." -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "Import Public Streams" msgstr "Öffentliche Beiträge importieren" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:323 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "Öffentliche Beiträge von anderen Servern importieren und zur Verfügung stellen. Warnung: Diese Inhalte sind nicht moderiert." -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "Site only Public Streams" +msgstr "Öffentlichen Beitragsstrom auf diesen Server beschränken" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist." + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. Warnung: Diese Inhalte sind nicht moderiert." + +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Login on Homepage" msgstr "Log-in auf der Startseite" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "Zeigt Besuchern der Homepage eine Anmeldemaske, falls keine anderen Inhalte konfiguriert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Enable context help" msgstr "Kontext-Hilfe aktivieren" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Display contextual help for the current page when the help button is " "pressed." msgstr "Zeigt Kontext-sensitive Hilfe für die aktuelle Seite an, wenn der Hilfe-Knopf geklickt wird." -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "Reply-to email address for system generated email." msgstr "Antwortadresse (reply-to) für Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Sender (From) email address for system generated email." msgstr "Absenderadresse (from) für Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Name of email sender for system generated email." msgstr "Name des Versenders von Emails, die vom System generiert wurden." -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Directory Server URL" msgstr "Verzeichnisserver-URL" -#: ../../Zotlabs/Module/Admin/Site.php:318 +#: ../../Zotlabs/Module/Admin/Site.php:333 msgid "Default directory server" msgstr "Standard-Verzeichnisserver" -#: ../../Zotlabs/Module/Admin/Site.php:320 +#: ../../Zotlabs/Module/Admin/Site.php:335 msgid "Proxy user" msgstr "Proxy Benutzer" -#: ../../Zotlabs/Module/Admin/Site.php:321 +#: ../../Zotlabs/Module/Admin/Site.php:336 msgid "Proxy URL" msgstr "Proxy URL" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Network timeout" msgstr "Netzwerk-Timeout" -#: ../../Zotlabs/Module/Admin/Site.php:322 +#: ../../Zotlabs/Module/Admin/Site.php:337 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Wert in Sekunden. 0 für unbegrenzt (nicht empfohlen)." -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "Delivery interval" msgstr "Auslieferung Intervall" -#: ../../Zotlabs/Module/Admin/Site.php:323 +#: ../../Zotlabs/Module/Admin/Site.php:338 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "Verzögere im Hintergrund laufende Auslieferungsprozesse um die angegebene Anzahl Sekunden, um die Systemlast zu verringern. Empfehlungen: 4-5 für Shared Hosts, 2-3 für VPS, 0-1 für große dedizierte Server." -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "Deliveries per process" msgstr "Zustellungen pro Prozess" -#: ../../Zotlabs/Module/Admin/Site.php:324 +#: ../../Zotlabs/Module/Admin/Site.php:339 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust" " if necessary to tune system performance. Recommend: 1-5." msgstr "Anzahl der Zustellungen, die innerhalb eines einzelnen Betriebssystemprozesses versucht werden. Anpassen, falls nötig, um die System-Performance zu verbessern. Empfehlung: 1-5." -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "Queue Threshold" msgstr "Warteschlangen-Grenzwert" -#: ../../Zotlabs/Module/Admin/Site.php:325 +#: ../../Zotlabs/Module/Admin/Site.php:340 msgid "" "Always defer immediate delivery if queue contains more than this number of " "entries." msgstr "Unmittelbare Zustellung immer verzögern, wenn die Warteschlange mehr als diese Anzahl von Einträgen enthält." -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "Poll interval" msgstr "Abfrageintervall" -#: ../../Zotlabs/Module/Admin/Site.php:326 +#: ../../Zotlabs/Module/Admin/Site.php:341 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "Verzögere Hintergrundprozesse um diese Anzahl Sekunden, um die Systemlast zu reduzieren. Bei 0 wird das Auslieferungsintervall verwendet." -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "Path to ImageMagick convert program" msgstr "Pfad zum ImageMagick-Programm convert" -#: ../../Zotlabs/Module/Admin/Site.php:327 +#: ../../Zotlabs/Module/Admin/Site.php:342 msgid "" "If set, use this program to generate photo thumbnails for huge images ( > " "4000 pixels in either dimension), otherwise memory exhaustion may occur. " "Example: /usr/bin/convert" msgstr "Wenn gesetzt, dann verwende dieses Programm zum Erzeugen von Vorschaubildern großer Fotos (>4000 Pixel in beiden Richtungen), anderenfalls kann Speicherüberlauf auftreten. Beispiel: /usr/bin/convert" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "Allow SVG thumbnails in file browser" msgstr "Erlaube SVG-Vorschaubilder im Dateibrowser" -#: ../../Zotlabs/Module/Admin/Site.php:328 +#: ../../Zotlabs/Module/Admin/Site.php:343 msgid "WARNING: SVG images may contain malicious code." msgstr "Warnung: SVG-Grafiken können Schadcode enthalten." -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "Maximum Load Average" msgstr "Maximales Load Average" -#: ../../Zotlabs/Module/Admin/Site.php:329 +#: ../../Zotlabs/Module/Admin/Site.php:344 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "Maximale Systemlast, bevor Verteil- und Empfangsprozesse verschoben werden – Standard 50" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "Expiration period in days for imported (grid/network) content" msgstr "Setze den Zeitraum (in Tagen), ab wann importierte (aus dem Netzwerk) Inhalte ablaufen sollen" -#: ../../Zotlabs/Module/Admin/Site.php:330 +#: ../../Zotlabs/Module/Admin/Site.php:345 msgid "0 for no expiration of imported content" msgstr "0 = keine Löschung importierter Inhalte" +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "Erstelle zunächst die entsprechende Seite. Standard ist %s/register" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Page to display after creating a new channel" +msgstr "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Recommend: profiles, go, or settings" +msgstr "Empfohlen: profiles, go oder settings" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Optional: site location" +msgstr "Optional: Standort der Website" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Region or country" +msgstr "Region oder Land" + #: ../../Zotlabs/Module/Admin/Profs.php:69 msgid "New Profile Field" msgstr "Neues Profilfeld" @@ -3106,8 +3173,8 @@ msgstr "Zusätzliche Informationen (optional)" #: ../../Zotlabs/Module/Admin/Profs.php:74 #: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1030 -#: ../../include/text.php:1042 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 msgid "Save" msgstr "Speichern" @@ -3306,7 +3373,7 @@ msgid "Visible to:" msgstr "Sichtbar für:" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:118 ../../include/acl_selectors.php:183 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "Profil" @@ -3339,25 +3406,25 @@ msgstr "Name der Berechtigungsrolle" #: ../../Zotlabs/Module/Settings/Permcats.php:103 #: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:250 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 msgid "My Settings" msgstr "Meine Einstellungen" #: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:248 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 msgid "inherited" msgstr "geerbt" #: ../../Zotlabs/Module/Settings/Permcats.php:108 #: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:253 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 msgid "Individual Permissions" msgstr "Individuelle Zugriffsrechte" #: ../../Zotlabs/Module/Settings/Permcats.php:109 #: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Connedit.php:894 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -3370,7 +3437,7 @@ msgstr "Einige Berechtigungen werden möglicherweise von den globalen extremely permissive (should be used with caution)" msgstr "Komplett offen – extrem ungeschützt (mit großer Vorsicht verwenden!)" -#: ../../Zotlabs/Module/Settings/Channel.php:511 +#: ../../Zotlabs/Module/Settings/Channel.php:510 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)" -#: ../../Zotlabs/Module/Settings/Channel.php:512 +#: ../../Zotlabs/Module/Settings/Channel.php:511 msgid "Private - default private, never open or public" msgstr "Privat – Standard privat, nie offen oder öffentlich" -#: ../../Zotlabs/Module/Settings/Channel.php:513 +#: ../../Zotlabs/Module/Settings/Channel.php:512 msgid "Blocked - default blocked to/from everybody" msgstr "Blockiert – Alle standardmäßig blockiert" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 msgid "Allow others to tag your posts" msgstr "Erlaube anderen, Deine Beiträge zu verschlagworten" -#: ../../Zotlabs/Module/Settings/Channel.php:515 +#: ../../Zotlabs/Module/Settings/Channel.php:514 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/Settings/Channel.php:517 +#: ../../Zotlabs/Module/Settings/Channel.php:516 msgid "Channel Permission Limits" msgstr "Kanal-Berechtigungslimits" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "Expire other channel content after this many days" msgstr "Den Inhalt anderer Kanäle nach dieser Anzahl Tage verfallen lassen" -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "0 or blank to use the website limit." msgstr "0 oder leer lassen, um den voreingestellten Wert der Webseite zu verwenden." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 #, php-format msgid "This website expires after %d days." msgstr "Diese Webseite läuft nach %d Tagen ab." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 msgid "This website does not expire imported content." msgstr "Diese Webseite lässt importierte Inhalte nicht verfallen." -#: ../../Zotlabs/Module/Settings/Channel.php:519 +#: ../../Zotlabs/Module/Settings/Channel.php:518 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/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "Maximum Friend Requests/Day:" msgstr "Maximale Kontaktanfragen pro Tag:" -#: ../../Zotlabs/Module/Settings/Channel.php:520 +#: ../../Zotlabs/Module/Settings/Channel.php:519 msgid "May reduce spam activity" msgstr "Kann die Spam-Aktivität verringern" -#: ../../Zotlabs/Module/Settings/Channel.php:521 +#: ../../Zotlabs/Module/Settings/Channel.php:520 msgid "Default Privacy Group" msgstr "Standard-Gruppe" -#: ../../Zotlabs/Module/Settings/Channel.php:523 +#: ../../Zotlabs/Module/Settings/Channel.php:522 msgid "Use my default audience setting for the type of object published" msgstr "Verwende Deine eingestellte Standard-Zielgruppe des jeweiligen Inhaltstyps" -#: ../../Zotlabs/Module/Settings/Channel.php:524 +#: ../../Zotlabs/Module/Settings/Channel.php:523 msgid "Profile to assign new connections" msgstr "Profil, welches neuen Verbindungen zugewiesen wird" -#: ../../Zotlabs/Module/Settings/Channel.php:533 +#: ../../Zotlabs/Module/Settings/Channel.php:532 msgid "Channel permissions category:" msgstr "Zugriffsrechte-Kategorie des Kanals:" -#: ../../Zotlabs/Module/Settings/Channel.php:534 +#: ../../Zotlabs/Module/Settings/Channel.php:533 msgid "Default Permissions Group" msgstr "Standard-Berechtigungsgruppe" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Maximum private messages per day from unknown people:" msgstr "Maximale Anzahl privater Nachrichten pro Tag von unbekannten Leuten:" -#: ../../Zotlabs/Module/Settings/Channel.php:540 +#: ../../Zotlabs/Module/Settings/Channel.php:539 msgid "Useful to reduce spamming" msgstr "Nützlich, um Spam zu verringern" -#: ../../Zotlabs/Module/Settings/Channel.php:543 +#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Lib/Enotify.php:68 msgid "Notification Settings" msgstr "Benachrichtigungs-Einstellungen" -#: ../../Zotlabs/Module/Settings/Channel.php:544 +#: ../../Zotlabs/Module/Settings/Channel.php:543 msgid "By default post a status message when:" msgstr "Sende standardmäßig Status-Nachrichten, wenn:" -#: ../../Zotlabs/Module/Settings/Channel.php:545 +#: ../../Zotlabs/Module/Settings/Channel.php:544 msgid "accepting a friend request" msgstr "Du eine Verbindungsanfrage annimmst" -#: ../../Zotlabs/Module/Settings/Channel.php:546 +#: ../../Zotlabs/Module/Settings/Channel.php:545 msgid "joining a forum/community" msgstr "Du einem Forum beitrittst" -#: ../../Zotlabs/Module/Settings/Channel.php:547 +#: ../../Zotlabs/Module/Settings/Channel.php:546 msgid "making an interesting profile change" msgstr "Du eine interessante Änderung an Deinem Profil vornimmst" -#: ../../Zotlabs/Module/Settings/Channel.php:548 +#: ../../Zotlabs/Module/Settings/Channel.php:547 msgid "Send a notification email when:" msgstr "Eine E-Mail-Benachrichtigung senden, wenn:" -#: ../../Zotlabs/Module/Settings/Channel.php:549 +#: ../../Zotlabs/Module/Settings/Channel.php:548 msgid "You receive a connection request" msgstr "Du eine Verbindungsanfrage erhältst" -#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:549 msgid "Your connections are confirmed" msgstr "Eine Verbindung bestätigt wurde" -#: ../../Zotlabs/Module/Settings/Channel.php:551 +#: ../../Zotlabs/Module/Settings/Channel.php:550 msgid "Someone writes on your profile wall" msgstr "Jemand auf Deine Pinnwand schreibt" -#: ../../Zotlabs/Module/Settings/Channel.php:552 +#: ../../Zotlabs/Module/Settings/Channel.php:551 msgid "Someone writes a followup comment" msgstr "Jemand einen Beitrag kommentiert" -#: ../../Zotlabs/Module/Settings/Channel.php:553 +#: ../../Zotlabs/Module/Settings/Channel.php:552 msgid "You receive a private message" msgstr "Du eine private Nachricht erhältst" -#: ../../Zotlabs/Module/Settings/Channel.php:554 +#: ../../Zotlabs/Module/Settings/Channel.php:553 msgid "You receive a friend suggestion" msgstr "Du einen Kontaktvorschlag erhältst" -#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:554 msgid "You are tagged in a post" msgstr "Du in einem Beitrag erwähnt wurdest" -#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:555 msgid "You are poked/prodded/etc. in a post" msgstr "Du in einem Beitrag angestupst/geknufft/o.ä. wurdest" -#: ../../Zotlabs/Module/Settings/Channel.php:558 +#: ../../Zotlabs/Module/Settings/Channel.php:557 msgid "Someone likes your post/comment" msgstr "Jemand mag Ihren Beitrag/Kommentar" -#: ../../Zotlabs/Module/Settings/Channel.php:561 +#: ../../Zotlabs/Module/Settings/Channel.php:560 msgid "Show visual notifications including:" msgstr "Visuelle Benachrichtigungen anzeigen für:" -#: ../../Zotlabs/Module/Settings/Channel.php:563 +#: ../../Zotlabs/Module/Settings/Channel.php:562 msgid "Unseen grid activity" msgstr "Ungesehene Netzwerk-Aktivität" -#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:563 msgid "Unseen channel activity" msgstr "Ungesehene Kanal-Aktivität" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 msgid "Unseen private messages" msgstr "Ungelesene persönliche Nachrichten" -#: ../../Zotlabs/Module/Settings/Channel.php:565 +#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:569 #: ../../Zotlabs/Module/Settings/Channel.php:570 #: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:572 #: ../../addon/jappixmini/jappixmini.php:343 msgid "Recommended" msgstr "Empfohlen" -#: ../../Zotlabs/Module/Settings/Channel.php:566 +#: ../../Zotlabs/Module/Settings/Channel.php:565 msgid "Upcoming events" msgstr "Baldige Termine" -#: ../../Zotlabs/Module/Settings/Channel.php:567 +#: ../../Zotlabs/Module/Settings/Channel.php:566 msgid "Events today" msgstr "Heutige Termine" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Upcoming birthdays" msgstr "Baldige Geburtstage" -#: ../../Zotlabs/Module/Settings/Channel.php:568 +#: ../../Zotlabs/Module/Settings/Channel.php:567 msgid "Not available in all themes" msgstr "Nicht in allen Designs verfügbar" -#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:568 msgid "System (personal) notifications" msgstr "System – (persönliche) Benachrichtigungen" -#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:569 msgid "System info messages" msgstr "System – Info-Nachrichten" -#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:570 msgid "System critical alerts" msgstr "System – kritische Warnungen" -#: ../../Zotlabs/Module/Settings/Channel.php:572 +#: ../../Zotlabs/Module/Settings/Channel.php:571 msgid "New connections" msgstr "Neue Verbindungen" -#: ../../Zotlabs/Module/Settings/Channel.php:573 +#: ../../Zotlabs/Module/Settings/Channel.php:572 msgid "System Registrations" msgstr "System – Registrierungen" -#: ../../Zotlabs/Module/Settings/Channel.php:574 +#: ../../Zotlabs/Module/Settings/Channel.php:573 msgid "Unseen shared files" msgstr "Ungesehene geteilte Dateien" -#: ../../Zotlabs/Module/Settings/Channel.php:575 +#: ../../Zotlabs/Module/Settings/Channel.php:574 msgid "Unseen public activity" msgstr "Ungesehene öffentliche Aktivität" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 msgid "Email notification hub (hostname)" msgstr "Hub für E-Mail-Benachrichtigungen (Hostname)" -#: ../../Zotlabs/Module/Settings/Channel.php:576 +#: ../../Zotlabs/Module/Settings/Channel.php:575 #, php-format msgid "" "If your channel is mirrored to multiple hubs, set this to your preferred " "location. This will prevent duplicate email notifications. Example: %s" msgstr "Wenn Dein Kanal auf mehreren Hubs geklont ist, setze die Einstellung auf deinen bevorzugten Hub. Dies verhindert Mehrfachzustellung von E-Mail-Benachrichtigungen. Beispiel: %s" -#: ../../Zotlabs/Module/Settings/Channel.php:577 +#: ../../Zotlabs/Module/Settings/Channel.php:576 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/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Notify me of events this many days in advance" msgstr "Benachrichtige mich zu Terminen so viele Tage im Voraus" -#: ../../Zotlabs/Module/Settings/Channel.php:579 +#: ../../Zotlabs/Module/Settings/Channel.php:578 msgid "Must be greater than 0" msgstr "Muss größer als 0 sein" -#: ../../Zotlabs/Module/Settings/Channel.php:585 +#: ../../Zotlabs/Module/Settings/Channel.php:584 msgid "Advanced Account/Page Type Settings" -msgstr "Erweiterte Account- und Seitenart-Einstellungen" +msgstr "Erweiterte Konten- und Seitenart-Einstellungen" -#: ../../Zotlabs/Module/Settings/Channel.php:586 +#: ../../Zotlabs/Module/Settings/Channel.php:585 msgid "Change the behaviour of this account for special situations" -msgstr "Ändere das Verhalten dieses Accounts unter speziellen Umständen" +msgstr "Ändere das Verhalten dieses Kontos unter speziellen Umständen" -#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:587 msgid "Miscellaneous Settings" msgstr "Sonstige Einstellungen" -#: ../../Zotlabs/Module/Settings/Channel.php:589 +#: ../../Zotlabs/Module/Settings/Channel.php:588 msgid "Default photo upload folder" msgstr "Voreingestellter Ordner für hochgeladene Fotos" +#: ../../Zotlabs/Module/Settings/Channel.php:588 #: ../../Zotlabs/Module/Settings/Channel.php:589 -#: ../../Zotlabs/Module/Settings/Channel.php:590 msgid "%Y - current year, %m - current month" msgstr "%Y - aktuelles Jahr, %m - aktueller Monat" -#: ../../Zotlabs/Module/Settings/Channel.php:590 +#: ../../Zotlabs/Module/Settings/Channel.php:589 msgid "Default file upload folder" msgstr "Voreingestellter Ordner für hochgeladene Dateien" -#: ../../Zotlabs/Module/Settings/Channel.php:592 +#: ../../Zotlabs/Module/Settings/Channel.php:591 msgid "Personal menu to display in your channel pages" msgstr "Eigenes Menü zur Anzeige auf den Seiten deines Kanals" -#: ../../Zotlabs/Module/Settings/Channel.php:594 +#: ../../Zotlabs/Module/Settings/Channel.php:593 msgid "Remove this channel." msgstr "Diesen Kanal löschen" -#: ../../Zotlabs/Module/Settings/Channel.php:595 +#: ../../Zotlabs/Module/Settings/Channel.php:594 msgid "Firefox Share $Projectname provider" msgstr "$Projectname-Provider für Firefox Share" -#: ../../Zotlabs/Module/Settings/Channel.php:596 +#: ../../Zotlabs/Module/Settings/Channel.php:595 msgid "Start calendar week on Monday" msgstr "Beginne die kalendarische Woche am Montag" @@ -3835,7 +3901,7 @@ msgid "Expires (yyyy-mm-dd)" msgstr "Läuft ab (jjjj-mm-tt)" #: ../../Zotlabs/Module/Settings/Tokens.php:160 -#: ../../Zotlabs/Module/Connedit.php:907 +#: ../../Zotlabs/Module/Connedit.php:890 msgid "Their Settings" msgstr "Deren Einstellungen" @@ -3900,8 +3966,10 @@ msgid "Your technical skill level" msgstr "Deine technische Qualifikationsstufe" #: ../../Zotlabs/Module/Settings/Account.php:116 -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." +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)." #: ../../Zotlabs/Module/Settings/Account.php:120 #: ../../Zotlabs/Module/Removeaccount.php:61 @@ -3912,148 +3980,152 @@ msgstr "Konto entfernen" msgid "Remove this account including all its channels" msgstr "Dieses Konto inklusive all seiner Kanäle löschen" -#: ../../Zotlabs/Module/Settings/Featured.php:21 +#: ../../Zotlabs/Module/Settings/Featured.php:23 msgid "Affinity Slider settings updated." msgstr "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert." -#: ../../Zotlabs/Module/Settings/Featured.php:36 +#: ../../Zotlabs/Module/Settings/Featured.php:38 msgid "No feature settings configured" msgstr "Keine Funktions-Einstellungen konfiguriert" -#: ../../Zotlabs/Module/Settings/Featured.php:43 +#: ../../Zotlabs/Module/Settings/Featured.php:45 msgid "Default maximum affinity level" msgstr "Voreinstellung für maximalen Beziehungsgrad" -#: ../../Zotlabs/Module/Settings/Featured.php:48 +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "0-99 - Standard 99" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 msgid "Default minimum affinity level" msgstr "Voreinstellung für minimalen Beziehungsgrad" -#: ../../Zotlabs/Module/Settings/Featured.php:52 +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "0-99 - Standard 0" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 msgid "Affinity Slider Settings" msgstr "Beziehungsgrad-Schieberegler-Einstellungen" -#: ../../Zotlabs/Module/Settings/Featured.php:62 -msgid "Feature/Addon Settings" -msgstr "Funktions-/Addon-Einstellungen" +#: ../../Zotlabs/Module/Settings/Featured.php:64 +msgid "Addon Settings" +msgstr "Addon-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:147 -msgid "No special theme for mobile devices" -msgstr "Kein spezielles Design für mobile Geräte" +#: ../../Zotlabs/Module/Settings/Featured.php:65 +msgid "Please save/submit changes to any panel before opening another." +msgstr "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest." -#: ../../Zotlabs/Module/Settings/Display.php:150 +#: ../../Zotlabs/Module/Settings/Display.php:139 #, php-format msgid "%s - (Experimental)" msgstr "%s – (experimentell)" -#: ../../Zotlabs/Module/Settings/Display.php:204 +#: ../../Zotlabs/Module/Settings/Display.php:187 msgid "Display Settings" msgstr "Anzeige-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:205 +#: ../../Zotlabs/Module/Settings/Display.php:188 msgid "Theme Settings" msgstr "Design-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:206 +#: ../../Zotlabs/Module/Settings/Display.php:189 msgid "Custom Theme Settings" msgstr "Benutzerdefinierte Design-Einstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:207 +#: ../../Zotlabs/Module/Settings/Display.php:190 msgid "Content Settings" msgstr "Inhaltseinstellungen" -#: ../../Zotlabs/Module/Settings/Display.php:213 +#: ../../Zotlabs/Module/Settings/Display.php:196 msgid "Display Theme:" msgstr "Anzeige-Design:" -#: ../../Zotlabs/Module/Settings/Display.php:214 +#: ../../Zotlabs/Module/Settings/Display.php:197 msgid "Select scheme" msgstr "Schema wählen" -#: ../../Zotlabs/Module/Settings/Display.php:216 -msgid "Mobile Theme:" -msgstr "Design für mobile Geräte:" - -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "Preload images before rendering the page" msgstr "Bilder im voraus laden, bevor die Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings/Display.php:217 +#: ../../Zotlabs/Module/Settings/Display.php:199 msgid "" "The subjective page load time will be longer but the page will be ready when" " displayed" msgstr "Die empfundene Ladezeit wird sich erhöhen, aber dafür ist das Layout stabil, sobald eine Seite angezeigt wird" -#: ../../Zotlabs/Module/Settings/Display.php:218 +#: ../../Zotlabs/Module/Settings/Display.php:200 msgid "Enable user zoom on mobile devices" msgstr "Zoom auf Mobilgeräten aktivieren" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Update browser every xx seconds" msgstr "Browser alle xx Sekunden aktualisieren" -#: ../../Zotlabs/Module/Settings/Display.php:219 +#: ../../Zotlabs/Module/Settings/Display.php:201 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimum 10 Sekunden, kein Maximum" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum number of conversations to load at any time:" msgstr "Maximale Anzahl von Unterhaltungen, die auf einmal geladen werden sollen:" -#: ../../Zotlabs/Module/Settings/Display.php:220 +#: ../../Zotlabs/Module/Settings/Display.php:202 msgid "Maximum of 100 items" msgstr "Maximum: 100 Beiträge" -#: ../../Zotlabs/Module/Settings/Display.php:221 +#: ../../Zotlabs/Module/Settings/Display.php:203 msgid "Show emoticons (smilies) as images" msgstr "Emoticons (Smilies) als Bilder anzeigen" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Provide channel menu in navigation bar" msgstr "Kanal-Menü in der Navigationsleiste zur Verfügung stellen" -#: ../../Zotlabs/Module/Settings/Display.php:222 +#: ../../Zotlabs/Module/Settings/Display.php:204 msgid "Default: channel menu located in app menu" msgstr "Voreinstellung: Kanal-Menü ist im App-Menü integriert" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Manual conversation updates" msgstr "Manuelle Konversationsaktualisierung" -#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:205 msgid "Default is on, turning this off may increase screen jumping" msgstr "Voreinstellung ist An, dies abzuschalten kann das unerwartete Springen der Seitenanzeige erhöhen." -#: ../../Zotlabs/Module/Settings/Display.php:224 +#: ../../Zotlabs/Module/Settings/Display.php:206 msgid "Link post titles to source" msgstr "Beitragstitel zum Originalbeitrag verlinken" -#: ../../Zotlabs/Module/Settings/Display.php:225 +#: ../../Zotlabs/Module/Settings/Display.php:207 msgid "System Page Layout Editor - (advanced)" msgstr "System-Seitenlayout-Editor (für Experten)" -#: ../../Zotlabs/Module/Settings/Display.php:228 +#: ../../Zotlabs/Module/Settings/Display.php:210 msgid "Use blog/list mode on channel page" msgstr "Blog-/Listenmodus auf der Kanalseite verwenden" -#: ../../Zotlabs/Module/Settings/Display.php:228 -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "(comments displayed separately)" msgstr "(Kommentare werden separat angezeigt)" -#: ../../Zotlabs/Module/Settings/Display.php:229 +#: ../../Zotlabs/Module/Settings/Display.php:211 msgid "Use blog/list mode on grid page" msgstr "Blog-/Listenmodus auf der Netzwerkseite verwenden" -#: ../../Zotlabs/Module/Settings/Display.php:230 +#: ../../Zotlabs/Module/Settings/Display.php:212 msgid "Channel page max height of content (in pixels)" msgstr "Maximale Höhe von Beitragsblöcken auf der Kanalseite (in Pixeln)" -#: ../../Zotlabs/Module/Settings/Display.php:230 -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "click to expand content exceeding this height" msgstr "Blöcke, deren Inhalt diese Höhe überschreitet, können per Klick vergrößert werden." -#: ../../Zotlabs/Module/Settings/Display.php:231 +#: ../../Zotlabs/Module/Settings/Display.php:213 msgid "Grid page max height of content (in pixels)" msgstr "Maximale Höhe (in Pixel) des Inhalts der Netzwerkseite" @@ -4077,7 +4149,7 @@ msgstr "Name der Anwendung" #: ../../Zotlabs/Module/Settings/Oauth.php:90 #: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:775 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 msgid "Consumer Key" msgstr "Consumer Key" @@ -4088,7 +4160,7 @@ msgstr "Automatisch erzeugt – ändern, falls erwünscht. Maximale Länge 20" #: ../../Zotlabs/Module/Settings/Oauth.php:91 #: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:776 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 msgid "Consumer Secret" msgstr "Consumer Secret" @@ -4148,9 +4220,9 @@ msgstr "Album bearbeiten" #: ../../Zotlabs/Module/Embedphotos.php:158 #: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Photos.php:844 #: ../../Zotlabs/Module/Photos.php:1381 -#: ../../Zotlabs/Module/Profile_photo.php:437 +#: ../../Zotlabs/Module/Profile_photo.php:458 #: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Storage/Browser.php:274 ../../Zotlabs/Storage/Browser.php:381 +#: ../../Zotlabs/Storage/Browser.php:277 ../../Zotlabs/Storage/Browser.php:384 #: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 #: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 msgid "Upload" @@ -4217,7 +4289,7 @@ msgstr "URL eines Fotos der Sache (optional)" #: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 #: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 #: ../../Zotlabs/Module/Filestorage.php:147 -#: ../../include/acl_selectors.php:218 +#: ../../include/acl_selectors.php:123 msgid "Permissions" msgstr "Berechtigungen" @@ -4314,16 +4386,16 @@ msgstr "Dieser Vorgang kann einige Minuten dauern. Bitte sende das Formular nur msgid "Authentication failed." msgstr "Authentifizierung fehlgeschlagen." -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1665 -#: ../../include/channel.php:2301 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1583 +#: ../../include/channel.php:2307 msgid "Remote Authentication" msgstr "Entfernte Authentifizierung" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2302 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2308 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "Deine Kanal-Adresse (z. B. channel@example.com)" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2303 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2309 msgid "Authenticate" msgstr "Authentifizieren" @@ -4331,23 +4403,23 @@ msgstr "Authentifizieren" msgid "Permissions denied." msgstr "Berechtigung verweigert." -#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2312 +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2426 msgid "Import" msgstr "Import" -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 msgid "Authorize application connection" msgstr "Zugriff für die Anwendung autorisieren" -#: ../../Zotlabs/Module/Api.php:73 +#: ../../Zotlabs/Module/Api.php:75 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/Api.php:83 +#: ../../Zotlabs/Module/Api.php:85 msgid "Please login to continue." msgstr "Zum Weitermachen, bitte einloggen." -#: ../../Zotlabs/Module/Api.php:95 +#: ../../Zotlabs/Module/Api.php:97 msgid "" "Do you want to authorize this application to access your posts and contacts," " and/or create new posts for you?" @@ -4365,15 +4437,15 @@ msgstr "Block bearbeiten" msgid "vcard" msgstr "VCard" -#: ../../Zotlabs/Module/Apps.php:47 ../../Zotlabs/Lib/Apps.php:223 +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 msgid "Apps" msgstr "Apps" -#: ../../Zotlabs/Module/Apps.php:50 +#: ../../Zotlabs/Module/Apps.php:51 msgid "Manage apps" msgstr "Apps verwalten" -#: ../../Zotlabs/Module/Apps.php:51 +#: ../../Zotlabs/Module/Apps.php:52 msgid "Create new app" msgstr "Neue App erstellen" @@ -4383,7 +4455,7 @@ msgctxt "mood" msgid "%1$s is %2$s" msgstr "%1$s ist %2$s" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:247 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 msgid "Mood" msgstr "Laune" @@ -4423,12 +4495,12 @@ msgstr "Neu" #: ../../Zotlabs/Module/Connections.php:88 #: ../../Zotlabs/Module/Connections.php:102 -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:30 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 msgid "All" msgstr "Alle" #: ../../Zotlabs/Module/Connections.php:133 -#: ../../Zotlabs/Widget/Notifications.php:82 +#: ../../Zotlabs/Widget/Notifications.php:84 msgid "New Connections" msgstr "Neue Verbindungen" @@ -4468,70 +4540,70 @@ msgstr "Archiviert" msgid "Not connected at this location" msgstr "An diesem Ort nicht verbunden" -#: ../../Zotlabs/Module/Connections.php:258 +#: ../../Zotlabs/Module/Connections.php:263 #, php-format msgid "%1$s [%2$s]" msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Connections.php:259 +#: ../../Zotlabs/Module/Connections.php:264 msgid "Edit connection" msgstr "Verbindung bearbeiten" -#: ../../Zotlabs/Module/Connections.php:261 +#: ../../Zotlabs/Module/Connections.php:266 msgid "Delete connection" msgstr "Verbindung löschen" -#: ../../Zotlabs/Module/Connections.php:270 +#: ../../Zotlabs/Module/Connections.php:275 msgid "Channel address" msgstr "Kanaladresse" -#: ../../Zotlabs/Module/Connections.php:272 +#: ../../Zotlabs/Module/Connections.php:277 msgid "Network" msgstr "Netzwerk" -#: ../../Zotlabs/Module/Connections.php:275 +#: ../../Zotlabs/Module/Connections.php:280 msgid "Call" msgstr "Anruf" -#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connections.php:282 msgid "Status" msgstr "Status" -#: ../../Zotlabs/Module/Connections.php:279 +#: ../../Zotlabs/Module/Connections.php:284 msgid "Connected" msgstr "Verbunden" -#: ../../Zotlabs/Module/Connections.php:281 +#: ../../Zotlabs/Module/Connections.php:286 msgid "Approve connection" msgstr "Verbindung genehmigen" -#: ../../Zotlabs/Module/Connections.php:283 +#: ../../Zotlabs/Module/Connections.php:288 msgid "Ignore connection" msgstr "Verbindung ignorieren" -#: ../../Zotlabs/Module/Connections.php:284 +#: ../../Zotlabs/Module/Connections.php:289 #: ../../Zotlabs/Module/Connedit.php:630 msgid "Ignore" msgstr "Ignorieren" -#: ../../Zotlabs/Module/Connections.php:285 +#: ../../Zotlabs/Module/Connections.php:290 msgid "Recent activity" msgstr "Kürzliche Aktivitäten" -#: ../../Zotlabs/Module/Connections.php:309 ../../Zotlabs/Lib/Apps.php:229 -#: ../../include/text.php:959 ../../include/nav.php:114 +#: ../../Zotlabs/Module/Connections.php:315 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 msgid "Connections" msgstr "Verbindungen" -#: ../../Zotlabs/Module/Connections.php:314 +#: ../../Zotlabs/Module/Connections.php:320 msgid "Search your connections" msgstr "Verbindungen durchsuchen" -#: ../../Zotlabs/Module/Connections.php:315 +#: ../../Zotlabs/Module/Connections.php:321 msgid "Connections search" msgstr "Verbindung suchen" -#: ../../Zotlabs/Module/Connections.php:316 +#: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Directory.php:396 #: ../../Zotlabs/Module/Directory.php:401 ../../include/contact_widgets.php:23 msgid "Find" @@ -4729,12 +4801,12 @@ msgid "Please wait" msgstr "Bitte warten" #: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 -#: ../../Zotlabs/Lib/ThreadItem.php:751 +#: ../../Zotlabs/Lib/ThreadItem.php:747 msgid "This is you" msgstr "Das bist Du" #: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/js_strings.php:6 +#: ../../Zotlabs/Lib/ThreadItem.php:749 ../../include/js_strings.php:6 msgid "Comment" msgstr "Kommentar" @@ -4784,8 +4856,8 @@ msgid "View all" msgstr "Alles anzeigen" #: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 -#: ../../include/conversation.php:1978 ../../include/channel.php:1539 -#: ../../include/taxonomy.php:593 +#: ../../include/conversation.php:1978 ../../include/channel.php:1540 +#: ../../include/taxonomy.php:597 msgctxt "noun" msgid "Like" msgid_plural "Likes" @@ -4823,7 +4895,7 @@ msgid "Dislikes" msgstr "Gefällt nicht" #: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 -#: ../../include/acl_selectors.php:220 +#: ../../include/acl_selectors.php:125 msgid "Close" msgstr "Schließen" @@ -4858,7 +4930,7 @@ msgid "Error downloading wiki: " msgstr "Fehler beim Herunterladen des Wiki:" #: ../../Zotlabs/Module/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146 -#: ../../include/conversation.php:1925 ../../include/nav.php:526 +#: ../../include/conversation.php:1925 ../../include/nav.php:494 msgid "Wikis" msgstr "Wikis" @@ -4882,23 +4954,23 @@ msgstr "Inhaltstyp" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1802 -#: ../../include/features.php:378 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1868 msgid "Markdown" msgstr "Markdown" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 #: ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1800 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1866 msgid "BBcode" msgstr "BBcode" #: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 -#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1803 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1869 msgid "Text" msgstr "Text" -#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:281 +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 #: ../../addon/gitwiki/Mod_Gitwiki.php:159 msgid "Type" msgstr "Typ" @@ -4965,8 +5037,11 @@ msgstr "Bild aus Fotoalben einbetten" msgid "Embed an image from your albums" msgstr "Betten Sie ein Bild aus Ihren Alben ein" -#: ../../Zotlabs/Module/Wiki.php:376 ../../addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1387 ../../include/conversation.php:1434 +#: ../../Zotlabs/Module/Wiki.php:376 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../addon/gitwiki/Mod_Gitwiki.php:268 ../../include/conversation.php:1387 +#: ../../include/conversation.php:1434 msgid "OK" msgstr "Ok" @@ -5095,7 +5170,7 @@ msgstr "Ein weiteres Layout bearbeiten" msgid "System layout" msgstr "System-Layout" -#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:248 +#: ../../Zotlabs/Module/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 #: ../../include/conversation.php:1092 msgid "Poke" msgstr "Anstupsen" @@ -5124,97 +5199,97 @@ msgstr "Wähle, was Du mit dem/r Empfänger/in tun willst" msgid "Make this post private" msgstr "Diesen Beitrag privat machen" -#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Profile_photo.php:66 #: ../../Zotlabs/Module/Cover_photo.php:56 msgid "Image uploaded but image cropping failed." msgstr "Bild hochgeladen, aber das Zurechtschneiden schlug fehl." -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:240 +#: ../../Zotlabs/Module/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 #: ../../include/photo/photo_driver.php:740 msgid "Profile Photos" msgstr "Profilfotos" -#: ../../Zotlabs/Module/Profile_photo.php:137 +#: ../../Zotlabs/Module/Profile_photo.php:142 #: ../../Zotlabs/Module/Cover_photo.php:159 msgid "Image resize failed." msgstr "Bild-Anpassung fehlgeschlagen." -#: ../../Zotlabs/Module/Profile_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:218 #: ../../addon/openclipatar/openclipatar.php:298 msgid "" "Shift-reload the page or clear browser cache if the new photo does not " "display immediately." msgstr "Leere den Browser Cache oder nutze Umschalten-Neu Laden, falls das neue Foto nicht sofort angezeigt wird." -#: ../../Zotlabs/Module/Profile_photo.php:217 +#: ../../Zotlabs/Module/Profile_photo.php:225 #: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 msgid "Unable to process image" msgstr "Kann Bild nicht verarbeiten" -#: ../../Zotlabs/Module/Profile_photo.php:252 +#: ../../Zotlabs/Module/Profile_photo.php:260 #: ../../Zotlabs/Module/Cover_photo.php:197 msgid "Image upload failed." msgstr "Hochladen des Bilds fehlgeschlagen." -#: ../../Zotlabs/Module/Profile_photo.php:271 +#: ../../Zotlabs/Module/Profile_photo.php:279 #: ../../Zotlabs/Module/Cover_photo.php:214 msgid "Unable to process image." msgstr "Kann Bild nicht verarbeiten." -#: ../../Zotlabs/Module/Profile_photo.php:332 -#: ../../Zotlabs/Module/Profile_photo.php:379 +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 #: ../../Zotlabs/Module/Cover_photo.php:307 #: ../../Zotlabs/Module/Cover_photo.php:322 msgid "Photo not available." msgstr "Foto nicht verfügbar." -#: ../../Zotlabs/Module/Profile_photo.php:434 +#: ../../Zotlabs/Module/Profile_photo.php:455 #: ../../Zotlabs/Module/Cover_photo.php:358 msgid "Upload File:" msgstr "Datei hochladen:" -#: ../../Zotlabs/Module/Profile_photo.php:435 +#: ../../Zotlabs/Module/Profile_photo.php:456 #: ../../Zotlabs/Module/Cover_photo.php:359 msgid "Select a profile:" msgstr "Wähle ein Profil:" -#: ../../Zotlabs/Module/Profile_photo.php:436 +#: ../../Zotlabs/Module/Profile_photo.php:457 msgid "Use Photo for Profile" msgstr "Foto für Profil verwenden" -#: ../../Zotlabs/Module/Profile_photo.php:436 -msgid "Upload Profile Photo" -msgstr "Lade neues Profilfoto hoch" +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "Profilfoto ändern" -#: ../../Zotlabs/Module/Profile_photo.php:437 -#: ../../addon/openclipatar/openclipatar.php:182 -#: ../../addon/openclipatar/openclipatar.php:194 +#: ../../Zotlabs/Module/Profile_photo.php:458 msgid "Use" msgstr "Verwenden" -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "skip this step" -msgstr "diesen Schritt überspringen" - -#: ../../Zotlabs/Module/Profile_photo.php:443 -#: ../../Zotlabs/Module/Cover_photo.php:365 -msgid "select a photo from your photo albums" -msgstr "ein Foto aus meinen Fotoalben" - #: ../../Zotlabs/Module/Profile_photo.php:462 -#: ../../Zotlabs/Module/Cover_photo.php:381 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:363 +#: ../../Zotlabs/Module/Cover_photo.php:364 +msgid "Use a photo from your albums" +msgstr "Ein Foto aus meinen Alben verwenden" + +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +msgid "Select existing photo" +msgstr "Wähle ein vorhandenes Foto aus" + +#: ../../Zotlabs/Module/Profile_photo.php:486 +#: ../../Zotlabs/Module/Cover_photo.php:386 msgid "Crop Image" msgstr "Bild zuschneiden" -#: ../../Zotlabs/Module/Profile_photo.php:463 -#: ../../Zotlabs/Module/Cover_photo.php:382 +#: ../../Zotlabs/Module/Profile_photo.php:487 +#: ../../Zotlabs/Module/Cover_photo.php:387 msgid "Please adjust the image cropping for optimum viewing." msgstr "Bitte schneide das Bild für eine optimale Anzeige passend zu." -#: ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Cover_photo.php:384 +#: ../../Zotlabs/Module/Profile_photo.php:489 +#: ../../Zotlabs/Module/Cover_photo.php:389 msgid "Done Editing" msgstr "Bearbeitung fertigstellen" @@ -5226,65 +5301,65 @@ msgstr "Abwesend" msgid "Online" msgstr "Online" -#: ../../Zotlabs/Module/Item.php:193 +#: ../../Zotlabs/Module/Item.php:194 msgid "Unable to locate original post." msgstr "Originalbeitrag nicht gefunden." -#: ../../Zotlabs/Module/Item.php:475 +#: ../../Zotlabs/Module/Item.php:476 msgid "Empty post discarded." msgstr "Leeren Beitrag verworfen." -#: ../../Zotlabs/Module/Item.php:853 +#: ../../Zotlabs/Module/Item.php:867 msgid "Duplicate post suppressed." msgstr "Doppelter Beitrag unterdrückt." -#: ../../Zotlabs/Module/Item.php:998 +#: ../../Zotlabs/Module/Item.php:1012 msgid "System error. Post not saved." msgstr "Systemfehler. Beitrag nicht gespeichert." -#: ../../Zotlabs/Module/Item.php:1034 +#: ../../Zotlabs/Module/Item.php:1048 msgid "Your comment is awaiting approval." msgstr "Dein Kommentar muss noch bestätigt werden." -#: ../../Zotlabs/Module/Item.php:1139 +#: ../../Zotlabs/Module/Item.php:1153 msgid "Unable to obtain post information from database." msgstr "Beitragsinformationen können nicht aus der Datenbank abgerufen werden." -#: ../../Zotlabs/Module/Item.php:1168 +#: ../../Zotlabs/Module/Item.php:1182 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "Du hast die maximale Anzahl von %1$.0f Beiträgen erreicht." -#: ../../Zotlabs/Module/Item.php:1175 +#: ../../Zotlabs/Module/Item.php:1189 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "Du hast die maximale Anzahl von %1$.0f Webseiten erreicht." -#: ../../Zotlabs/Module/Ping.php:311 +#: ../../Zotlabs/Module/Ping.php:320 msgid "sent you a private message" msgstr "hat Dir eine private Nachricht geschickt" -#: ../../Zotlabs/Module/Ping.php:360 +#: ../../Zotlabs/Module/Ping.php:372 msgid "added your channel" msgstr "hat deinen Kanal hinzugefügt" -#: ../../Zotlabs/Module/Ping.php:384 +#: ../../Zotlabs/Module/Ping.php:396 msgid "requires approval" msgstr "Zustimmung erforderlich" -#: ../../Zotlabs/Module/Ping.php:394 +#: ../../Zotlabs/Module/Ping.php:406 msgid "g A l F d" msgstr "l, d. F, G:i \\U\\h\\r" -#: ../../Zotlabs/Module/Ping.php:412 +#: ../../Zotlabs/Module/Ping.php:424 msgid "[today]" msgstr "[Heute]" -#: ../../Zotlabs/Module/Ping.php:421 +#: ../../Zotlabs/Module/Ping.php:433 msgid "posted an event" msgstr "hat einen Termin veröffentlicht" -#: ../../Zotlabs/Module/Ping.php:454 +#: ../../Zotlabs/Module/Ping.php:466 msgid "shared a file with you" msgstr "hat eine Datei mit Dir geteilt" @@ -5294,7 +5369,7 @@ msgstr "Ungültiges Element." #: ../../Zotlabs/Module/Page.php:136 ../../Zotlabs/Module/Block.php:77 #: ../../Zotlabs/Module/Display.php:133 -#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:168 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 #: ../../include/help.php:81 msgid "Page not found." msgstr "Seite nicht gefunden." @@ -5347,9 +5422,9 @@ msgstr "Konnte die Adressbuch-Parameter nicht setzen." msgid "Connection has been removed." msgstr "Verbindung wurde gelöscht." -#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:241 +#: ../../Zotlabs/Module/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 #: ../../addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:1032 ../../include/nav.php:148 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 msgid "View Profile" msgstr "Profil ansehen" @@ -5459,15 +5534,15 @@ msgstr "Beziehung" msgid "Open Set Affinity section by default" msgstr "Öffne standardmäßig den Bereich für Beziehungsgrad-Einstellungen" -#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:26 +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 msgid "Me" msgstr "Ich" -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:27 +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 msgid "Family" msgstr "Familie" -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:29 +#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 msgid "Acquaintances" msgstr "Bekannte" @@ -5499,119 +5574,124 @@ msgstr "Profil festlegen" msgid "Set Affinity & Profile" msgstr "Beziehung und Profile festlegen" -#: ../../Zotlabs/Module/Connedit.php:855 +#: ../../Zotlabs/Module/Connedit.php:838 msgid "This connection is unreachable from this location." msgstr "Diese Verbindung ist von diesem Ort unerreichbar." -#: ../../Zotlabs/Module/Connedit.php:856 +#: ../../Zotlabs/Module/Connedit.php:839 msgid "This connection may be unreachable from other channel locations." msgstr "Diese Verbindung könnte von anderen Standpunkten des Kanals nicht erreichbar sein." -#: ../../Zotlabs/Module/Connedit.php:858 +#: ../../Zotlabs/Module/Connedit.php:841 msgid "Location independence is not supported by their network." msgstr "Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." -#: ../../Zotlabs/Module/Connedit.php:864 +#: ../../Zotlabs/Module/Connedit.php:847 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." msgstr "Diese Verbindung ist von diesem Standort aus unerreichbar. Standort Unabhängigkeit wird vom anderen Netzwerk nicht unterstützt." -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 #: ../../Zotlabs/Widget/Settings_menu.php:109 msgid "Connection Default Permissions" msgstr "Standardzugriffsrechte für neue Verbindungen:" -#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4134 +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4164 #, php-format msgid "Connection: %s" msgstr "Verbindung: %s" -#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:239 +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 msgid "Apply these permissions automatically" msgstr "Diese Berechtigungen automatisch anwenden" -#: ../../Zotlabs/Module/Connedit.php:868 +#: ../../Zotlabs/Module/Connedit.php:851 msgid "Connection requests will be approved without your interaction" msgstr "Verbindungsanfragen werden sofort bestätigt, ohne dass Deine aktive Zustimmung erforderlich ist." -#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 msgid "Permission role" msgstr "Berechtigungsrolle" -#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:241 +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "Lädt..." + +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 msgid "Add permission role" msgstr "Berechtigungsrolle hinzufügen" -#: ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:860 msgid "This connection's primary address is" msgstr "Die Hauptadresse der Verbindung ist" -#: ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Connedit.php:861 msgid "Available locations:" msgstr "Verfügbare Klone:" -#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:245 +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "Die auf dieser Seite angegebenen Berechtigungen werden auf alle neuen Verbindungen angewendet." -#: ../../Zotlabs/Module/Connedit.php:884 +#: ../../Zotlabs/Module/Connedit.php:867 msgid "Connection Tools" msgstr "Verbindungswerkzeuge" -#: ../../Zotlabs/Module/Connedit.php:886 +#: ../../Zotlabs/Module/Connedit.php:869 msgid "Slide to adjust your degree of friendship" msgstr "Verschieben, um den Grad der Freundschaft zu einzustellen" -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Bewertung" -#: ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Connedit.php:871 msgid "Slide to adjust your rating" msgstr "Verschieben, um Deine Bewertung einzustellen" -#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 +#: ../../Zotlabs/Module/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 msgid "Optionally explain your rating" msgstr "Optional kannst Du Deine Bewertung begründen" -#: ../../Zotlabs/Module/Connedit.php:891 +#: ../../Zotlabs/Module/Connedit.php:874 msgid "Custom Filter" msgstr "Benutzerdefinierter Filter" -#: ../../Zotlabs/Module/Connedit.php:892 +#: ../../Zotlabs/Module/Connedit.php:875 msgid "Only import posts with this text" msgstr "Nur Beiträge mit diesem Text importieren" -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" msgstr "Einzelne Wörter pro Zeile, #Tags oder /Reguläre Ausdrücke/. lang=xx (z.B. lang=de) ermöglicht Filterung nach Sprache. Leer lassen, um alle Beiträge zu importieren." -#: ../../Zotlabs/Module/Connedit.php:893 +#: ../../Zotlabs/Module/Connedit.php:876 msgid "Do not import posts with this text" msgstr "Beiträge mit diesem Text nicht importieren" -#: ../../Zotlabs/Module/Connedit.php:895 +#: ../../Zotlabs/Module/Connedit.php:878 msgid "This information is public!" msgstr "Diese Information ist öffentlich!" -#: ../../Zotlabs/Module/Connedit.php:900 +#: ../../Zotlabs/Module/Connedit.php:883 msgid "Connection Pending Approval" msgstr "Verbindung wartet auf Bestätigung" -#: ../../Zotlabs/Module/Connedit.php:905 +#: ../../Zotlabs/Module/Connedit.php:888 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "Bitte wähle ein Profil, das wir %s zeigen sollen, wenn Deine Profilseite über eine verifizierte Verbindung aufgerufen wird." -#: ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Connedit.php:895 msgid "" "Some permissions may be inherited from your channel's privacy settings, which have higher " @@ -5619,11 +5699,11 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Einige Berechtigungen werden möglicherweise von den globalen Sicherheits- und Privatsphäre-Einstellungen dieses Kanals geerbt. Diese haben eine höhere Priorität als die Einstellungen an der Verbindung. Werden geerbte Einstellungen hier geändert, hat dies keine Auswirkungen." -#: ../../Zotlabs/Module/Connedit.php:913 +#: ../../Zotlabs/Module/Connedit.php:896 msgid "Last update:" msgstr "Letzte Aktualisierung:" -#: ../../Zotlabs/Module/Connedit.php:922 +#: ../../Zotlabs/Module/Connedit.php:904 msgid "Details" msgstr "Details" @@ -5657,7 +5737,7 @@ msgid "Please enter a link URL:" msgstr "Gib eine URL ein:" #: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:768 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:764 #: ../../include/conversation.php:1432 msgid "Encrypt text" msgstr "Text verschlüsseln" @@ -5691,14 +5771,14 @@ msgstr "Verfall" msgid "min" msgstr "min" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:242 -#: ../../include/conversation.php:1831 ../../include/nav.php:433 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1831 ../../include/nav.php:401 msgid "Photos" msgstr "Fotos" -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:237 -#: ../../Zotlabs/Storage/Browser.php:269 ../../include/conversation.php:1839 -#: ../../include/nav.php:441 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1839 +#: ../../include/nav.php:409 msgid "Files" msgstr "Dateien" @@ -5738,7 +5818,7 @@ msgstr "Im Menü können gespeicherte Lesezeichen abgelegt werden" msgid "Submit and proceed" msgstr "Absenden und fortfahren" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2289 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2403 msgid "Menus" msgstr "Menüs" @@ -5790,12 +5870,12 @@ msgstr "Menü Titel wie er von anderen gesehen wird" msgid "Allow bookmarks" msgstr "Erlaube Lesezeichen" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2290 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2404 msgid "Layouts" msgstr "Layouts" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:245 -#: ../../include/nav.php:208 ../../include/nav.php:312 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 #: ../../include/help.php:68 ../../include/help.php:74 msgid "Help" msgstr "Hilfe" @@ -5813,20 +5893,49 @@ msgid "Download PDL file" msgstr "PDL-Datei herunterladen" #: ../../Zotlabs/Module/Cloud.php:114 +msgid "Please refresh page" +msgstr "Bitte die Seite neu laden" + +#: ../../Zotlabs/Module/Cloud.php:117 msgid "Unknown error" msgstr "Unbekannter Fehler" +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "Überprüfung des Verifizierungscodes fehlgeschlagen." + +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "Email-Überprüfung erforderlich" + +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint." + +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "Email erneut versenden" + +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "Verifizierungscode" + #: ../../Zotlabs/Module/Tagger.php:48 msgid "Post not found." msgstr "Beitrag nicht gefunden." #: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 -#: ../../include/bbcode.php:335 +#: ../../include/bbcode.php:339 msgid "post" msgstr "Beitrag" #: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:1946 +#: ../../include/text.php:2012 msgid "comment" msgstr "Kommentar" @@ -5874,7 +5983,7 @@ msgid "Could not create privacy group." msgstr "Gruppe konnte nicht erstellt werden." #: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 -#: ../../include/items.php:4101 +#: ../../include/items.php:4131 msgid "Privacy group not found." msgstr "Gruppe nicht gefunden." @@ -6049,7 +6158,8 @@ msgstr "Persönlich" msgid "Relation" msgstr "Beziehung" -#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:58 +#: ../../Zotlabs/Module/Profiles.php:739 ../../Zotlabs/Widget/Newmember.php:53 +#: ../../include/datetime.php:58 msgid "Miscellaneous" msgstr "Verschiedenes" @@ -6191,10 +6301,73 @@ msgid "Profile Image" msgstr "Profilfoto:" #: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1297 -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Edit Profiles" msgstr "Profile bearbeiten" +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "Diese Seite ist nur für Mitglieder verfügbar" + +#: ../../Zotlabs/Module/Go.php:27 +msgid "Welcome" +msgstr "Willkommen" + +#: ../../Zotlabs/Module/Go.php:29 +msgid "What would you like to do?" +msgstr "Was möchtest Du gerne tun?" + +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest." + +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "Ein Profilfoto hochladen" + +#: ../../Zotlabs/Module/Go.php:36 +msgid "Upload a cover photo" +msgstr "Ein Titelbild hochladen" + +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "Dein Standardprofil bearbeiten" + +#: ../../Zotlabs/Module/Go.php:38 ../../Zotlabs/Widget/Newmember.php:43 +msgid "View friend suggestions" +msgstr "Freundschafts- und Verbindungsvorschläge ansehen" + +#: ../../Zotlabs/Module/Go.php:39 ../../Zotlabs/Widget/Newmember.php:42 +msgid "View the channel directory" +msgstr "Das Kanalverzeichnis ansehen" + +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "Deine Kanaleinstellungen ansehen/bearbeiten" + +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "Die Website-/Projektdokumentation ansehen" + +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "Deine Kanal-Startseite aufrufen" + +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst" + +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)" + +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert." + #: ../../Zotlabs/Module/Editwebpage.php:139 msgid "Page link" msgstr "Seiten-Link" @@ -6207,8 +6380,8 @@ msgstr "Webseite bearbeiten" msgid "Create a new channel" msgstr "Neuen Kanal anlegen" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:234 -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Channel Manager" msgstr "Kanal-Manager" @@ -6242,7 +6415,13 @@ msgstr "%d neue Vorstellungen" msgid "Delegated Channel" msgstr "Delegierte Kanäle" -#: ../../Zotlabs/Module/Cards.php:95 +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:181 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1890 +#: ../../include/features.php:114 ../../include/nav.php:458 +msgid "Cards" +msgstr "Karten" + +#: ../../Zotlabs/Module/Cards.php:99 msgid "Add Card" msgstr "Karte hinzufügen" @@ -6250,45 +6429,45 @@ msgstr "Karte hinzufügen" msgid "This directory server requires an access token" msgstr "Dieser Verzeichnisserver benötigt einen Zugriffstoken" -#: ../../Zotlabs/Module/Siteinfo.php:19 +#: ../../Zotlabs/Module/Siteinfo.php:18 msgid "About this site" msgstr "Über diese Seite" -#: ../../Zotlabs/Module/Siteinfo.php:20 +#: ../../Zotlabs/Module/Siteinfo.php:19 msgid "Site Name" msgstr "Seitenname" -#: ../../Zotlabs/Module/Siteinfo.php:24 +#: ../../Zotlabs/Module/Siteinfo.php:23 msgid "Administrator" msgstr "Administrator" -#: ../../Zotlabs/Module/Siteinfo.php:26 ../../Zotlabs/Module/Register.php:229 +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 msgid "Terms of Service" msgstr "Nutzungsbedingungen" -#: ../../Zotlabs/Module/Siteinfo.php:27 +#: ../../Zotlabs/Module/Siteinfo.php:26 msgid "Software and Project information" msgstr "Software und Projektinformationen" -#: ../../Zotlabs/Module/Siteinfo.php:28 +#: ../../Zotlabs/Module/Siteinfo.php:27 msgid "This site is powered by $Projectname" msgstr "Diese Website wird bereitgestellt durch $Projectname" -#: ../../Zotlabs/Module/Siteinfo.php:29 +#: ../../Zotlabs/Module/Siteinfo.php:28 msgid "" "Federated and decentralised networking and identity services provided by Zot" msgstr "Verbundene, dezentrale Netzwerk- und Identitätsdienste, ermöglicht mittels Zot" -#: ../../Zotlabs/Module/Siteinfo.php:31 +#: ../../Zotlabs/Module/Siteinfo.php:30 #, php-format msgid "Version %s" msgstr "Version %s" -#: ../../Zotlabs/Module/Siteinfo.php:32 +#: ../../Zotlabs/Module/Siteinfo.php:31 msgid "Project homepage" msgstr "Projekt-Website" -#: ../../Zotlabs/Module/Siteinfo.php:33 +#: ../../Zotlabs/Module/Siteinfo.php:32 msgid "Developer homepage" msgstr "Entwickler-Website" @@ -6329,8 +6508,8 @@ msgstr "Webseitenelemente exportieren" msgid "Export selected" msgstr "Exportieren ausgewählt" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:238 -#: ../../include/conversation.php:1912 ../../include/nav.php:513 +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1912 ../../include/nav.php:481 msgid "Webpages" msgstr "Webseiten" @@ -6490,7 +6669,7 @@ msgid "*" msgstr "*" #: ../../Zotlabs/Module/Sources.php:96 -#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:228 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:274 msgid "Channel Sources" msgstr "Kanal-Quellen" @@ -6546,88 +6725,88 @@ msgstr "Quelle gelöscht" msgid "Unable to remove source." msgstr "Konnte die Quelle nicht löschen." -#: ../../Zotlabs/Module/Like.php:22 +#: ../../Zotlabs/Module/Like.php:54 msgid "Like/Dislike" msgstr "Mögen/Nicht mögen" -#: ../../Zotlabs/Module/Like.php:27 +#: ../../Zotlabs/Module/Like.php:59 msgid "This action is restricted to members." msgstr "Diese Aktion kann nur von Mitgliedern ausgeführt werden." -#: ../../Zotlabs/Module/Like.php:28 +#: ../../Zotlabs/Module/Like.php:60 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/Like.php:108 ../../Zotlabs/Module/Like.php:134 -#: ../../Zotlabs/Module/Like.php:172 +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 msgid "Invalid request." msgstr "Ungültige Anfrage." -#: ../../Zotlabs/Module/Like.php:120 ../../include/conversation.php:122 +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 msgid "channel" msgstr "Kanal" -#: ../../Zotlabs/Module/Like.php:149 +#: ../../Zotlabs/Module/Like.php:150 msgid "thing" msgstr "Sache" -#: ../../Zotlabs/Module/Like.php:195 +#: ../../Zotlabs/Module/Like.php:196 msgid "Channel unavailable." msgstr "Kanal nicht vorhanden." -#: ../../Zotlabs/Module/Like.php:243 +#: ../../Zotlabs/Module/Like.php:244 msgid "Previous action reversed." msgstr "Die vorherige Aktion wurde rückgängig gemacht." -#: ../../Zotlabs/Module/Like.php:435 ../../addon/diaspora/Receiver.php:1462 -#: ../../addon/pubcrawl/as.php:1330 ../../include/conversation.php:160 +#: ../../Zotlabs/Module/Like.php:436 ../../addon/diaspora/Receiver.php:1547 +#: ../../addon/pubcrawl/as.php:1394 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s" -#: ../../Zotlabs/Module/Like.php:437 ../../addon/pubcrawl/as.php:1332 +#: ../../Zotlabs/Module/Like.php:438 ../../addon/pubcrawl/as.php:1396 #: ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "%1$s gefällt %2$ss %3$s nicht" -#: ../../Zotlabs/Module/Like.php:439 +#: ../../Zotlabs/Module/Like.php:440 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%1$s stimmt %2$ss %3$s zu" -#: ../../Zotlabs/Module/Like.php:441 +#: ../../Zotlabs/Module/Like.php:442 #, 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/Like.php:443 +#: ../../Zotlabs/Module/Like.php:444 #, 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/Like.php:445 +#: ../../Zotlabs/Module/Like.php:446 ../../addon/diaspora/Receiver.php:2031 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%1$s nimmt an %2$ss %3$s teil" -#: ../../Zotlabs/Module/Like.php:447 +#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2033 #, 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/Like.php:449 +#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2035 #, 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/Like.php:561 +#: ../../Zotlabs/Module/Like.php:562 msgid "Action completed." msgstr "Aktion durchgeführt." -#: ../../Zotlabs/Module/Like.php:562 +#: ../../Zotlabs/Module/Like.php:563 msgid "Thank you." msgstr "Vielen Dank." @@ -6650,12 +6829,12 @@ msgstr "Status:" msgid "Homepage: " msgstr "Webseite:" -#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1564 +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1565 msgid "Age:" msgstr "Alter:" #: ../../Zotlabs/Module/Directory.php:319 ../../include/channel.php:1392 -#: ../../include/event.php:53 ../../include/event.php:85 +#: ../../include/event.php:54 ../../include/event.php:86 msgid "Location:" msgstr "Ort:" @@ -6663,11 +6842,11 @@ msgstr "Ort:" msgid "Description:" msgstr "Beschreibung:" -#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1580 +#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1581 msgid "Hometown:" msgstr "Heimatstadt:" -#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1588 +#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1589 msgid "About:" msgstr "Über:" @@ -6907,19 +7086,19 @@ msgstr "Software" msgid "Rate" msgstr "Bewerten" -#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:263 +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 msgid "webpage" msgstr "Webseite" -#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:269 +#: ../../Zotlabs/Module/Impel.php:48 ../../include/bbcode.php:273 msgid "block" msgstr "Block" -#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:266 +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 msgid "layout" msgstr "Layout" -#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:272 +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 msgid "menu" msgstr "Menü" @@ -6979,21 +7158,21 @@ msgstr "Bitte stimme den Nutzungsbedingungen zu. Registrierung fehlgeschlagen." msgid "Passwords do not match." msgstr "Passwörter stimmen nicht überein." -#: ../../Zotlabs/Module/Register.php:127 ../../Zotlabs/Module/Register.php:137 +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..." + +#: ../../Zotlabs/Module/Register.php:135 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/Register.php:135 -msgid "Registration successful. Continue to create your first channel..." -msgstr "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..." - -#: ../../Zotlabs/Module/Register.php:144 +#: ../../Zotlabs/Module/Register.php:142 msgid "Your registration is pending approval by the site owner." msgstr "Deine Registrierung muss noch vom Betreiber der Seite freigegeben werden." -#: ../../Zotlabs/Module/Register.php:147 +#: ../../Zotlabs/Module/Register.php:145 msgid "Your registration can not be processed." msgstr "Deine Registrierung konnte nicht verarbeitet werden." @@ -7015,97 +7194,97 @@ msgid "" "Please try again tomorrow." msgstr "Die maximale Anzahl täglicher Registrierungen auf diesem Server wurde überschritten. Bitte versuche es morgen noch einmal." -#: ../../Zotlabs/Module/Register.php:235 +#: ../../Zotlabs/Module/Register.php:238 #, php-format msgid "I accept the %s for this website" msgstr "Ich akzeptiere die %s für diese Webseite" -#: ../../Zotlabs/Module/Register.php:241 +#: ../../Zotlabs/Module/Register.php:245 #, php-format msgid "I am over %s years of age and accept the %s for this website" msgstr "Ich bin älter als %s Jahre und akzeptiere die %s dieser Website." -#: ../../Zotlabs/Module/Register.php:245 +#: ../../Zotlabs/Module/Register.php:250 msgid "Your email address" msgstr "Ihre E-Mail Adresse" -#: ../../Zotlabs/Module/Register.php:246 +#: ../../Zotlabs/Module/Register.php:251 msgid "Choose a password" msgstr "Passwort" -#: ../../Zotlabs/Module/Register.php:247 +#: ../../Zotlabs/Module/Register.php:252 msgid "Please re-enter your password" msgstr "Bitte gib Dein Passwort noch einmal ein" -#: ../../Zotlabs/Module/Register.php:248 +#: ../../Zotlabs/Module/Register.php:253 msgid "Please enter your invitation code" msgstr "Bitte trage Deinen Einladungs-Code ein" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "no" msgstr "nein" -#: ../../Zotlabs/Module/Register.php:253 +#: ../../Zotlabs/Module/Register.php:258 msgid "yes" msgstr "ja" -#: ../../Zotlabs/Module/Register.php:268 +#: ../../Zotlabs/Module/Register.php:274 msgid "Membership on this site is by invitation only." msgstr "Mitgliedschaft auf dieser Seite ist nur nach vorheriger Einladung möglich." -#: ../../Zotlabs/Module/Register.php:280 ../../boot.php:1645 -#: ../../include/nav.php:196 +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1563 +#: ../../include/nav.php:164 msgid "Register" msgstr "Registrieren" -#: ../../Zotlabs/Module/Register.php:281 +#: ../../Zotlabs/Module/Register.php:287 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 "Diese Seite verlangt möglicherweise eine Emailbestätigung nach dem Absenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte Deinen Posteingang auf neue Mails mit entsprechenden Hinweisen." +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen." #: ../../Zotlabs/Module/Cover_photo.php:136 #: ../../Zotlabs/Module/Cover_photo.php:186 msgid "Cover Photos" msgstr "Cover Foto" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4478 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4508 msgid "female" msgstr "weiblich" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4479 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4509 #, php-format msgid "%1$s updated her %2$s" msgstr "%1$s hat ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4480 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4510 msgid "male" msgstr "männlich" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4481 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4511 #, php-format msgid "%1$s updated his %2$s" msgstr "%1$s hat sein %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4483 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4513 #, php-format msgid "%1$s updated their %2$s" msgstr "%1$s hat sein/ihr %2$s aktualisiert" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2053 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2059 msgid "cover photo" msgstr "Cover Foto" #: ../../Zotlabs/Module/Cover_photo.php:360 -msgid "Upload Cover Photo" -msgstr "Cover Foto hochladen" +msgid "Change Cover Photo" +msgstr "Titelbild ändern" #: ../../Zotlabs/Module/Help.php:23 msgid "Documentation Search" msgstr "Suche in der Dokumentation" #: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1821 -#: ../../include/nav.php:423 +#: ../../include/nav.php:391 msgid "About" msgstr "Über" @@ -7129,11 +7308,11 @@ msgstr "$Projectname-Dokumentation" msgid "Contents" msgstr "Inhalt" -#: ../../Zotlabs/Module/Display.php:349 +#: ../../Zotlabs/Module/Display.php:351 msgid "Article" msgstr "Artikel" -#: ../../Zotlabs/Module/Display.php:401 +#: ../../Zotlabs/Module/Display.php:403 msgid "Item has been removed." msgstr "Der Beitrag wurde entfernt." @@ -7149,44 +7328,44 @@ msgstr "Schlagwort entfernen" msgid "Select a tag to remove: " msgstr "Schlagwort zum Entfernen auswählen:" -#: ../../Zotlabs/Module/Network.php:97 +#: ../../Zotlabs/Module/Network.php:100 msgid "No such group" msgstr "Gruppe nicht gefunden" -#: ../../Zotlabs/Module/Network.php:137 +#: ../../Zotlabs/Module/Network.php:142 msgid "No such channel" msgstr "Kanal nicht gefunden" -#: ../../Zotlabs/Module/Network.php:142 +#: ../../Zotlabs/Module/Network.php:147 msgid "forum" msgstr "Forum" -#: ../../Zotlabs/Module/Network.php:154 +#: ../../Zotlabs/Module/Network.php:159 msgid "Search Results For:" msgstr "Suchergebnisse für:" -#: ../../Zotlabs/Module/Network.php:222 +#: ../../Zotlabs/Module/Network.php:230 msgid "Privacy group is empty" msgstr "Gruppe ist leer" -#: ../../Zotlabs/Module/Network.php:231 +#: ../../Zotlabs/Module/Network.php:240 msgid "Privacy group: " msgstr "Gruppe:" -#: ../../Zotlabs/Module/Network.php:257 +#: ../../Zotlabs/Module/Network.php:268 msgid "Invalid connection." msgstr "Ungültige Verbindung." -#: ../../Zotlabs/Module/Network.php:276 ../../addon/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:289 ../../addon/redred/redred.php:65 msgid "Invalid channel." msgstr "Ungültiger Kanal." -#: ../../Zotlabs/Module/Acl.php:358 +#: ../../Zotlabs/Module/Acl.php:361 msgid "network" msgstr "Netzwerk" #: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../addon/opensearch/opensearch.php:42 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 msgid "$Projectname" msgstr "$Projectname" @@ -7236,7 +7415,7 @@ msgid "Show URL to this file" msgstr "URL zu dieser Datei anzeigen" #: ../../Zotlabs/Module/Filestorage.php:163 -#: ../../Zotlabs/Storage/Browser.php:394 +#: ../../Zotlabs/Storage/Browser.php:397 msgid "Show in your contacts shared folder" msgstr "Im geteilten Ordner Deiner Kontakte anzeigen" @@ -7252,16 +7431,24 @@ msgstr "Keine gemeinsamen Verbindungen." msgid "View Common Connections" msgstr "Zeige gemeinsame Verbindungen" +#: ../../Zotlabs/Module/Email_resend.php:30 +msgid "Email verification resent" +msgstr "Email zur Verifizierung wurde erneut versendet" + +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "Erneutes Versenden der Email zur Verifizierung nicht möglich." + #: ../../Zotlabs/Module/Viewconnections.php:65 msgid "No connections." msgstr "Keine Verbindungen." -#: ../../Zotlabs/Module/Viewconnections.php:78 +#: ../../Zotlabs/Module/Viewconnections.php:83 #, php-format msgid "Visit %s's profile [%s]" msgstr "%ss Profil [%s] besuchen" -#: ../../Zotlabs/Module/Viewconnections.php:107 +#: ../../Zotlabs/Module/Viewconnections.php:113 msgid "View Connections" msgstr "Verbindungen anzeigen" @@ -7370,7 +7557,7 @@ msgid "" "Password reset failed." msgstr "Die Anfrage konnte nicht verifiziert werden. (Vielleicht hast Du schon einmal auf den Link in der E-Mail geklickt?) Passwort-Rücksetzung fehlgeschlagen." -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1673 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1591 msgid "Password Reset" msgstr "Zurücksetzen des Kennworts" @@ -7444,143 +7631,143 @@ msgstr "4. Experte - Ich kann Computercode schreiben" msgid "5. Wizard - I probably know more than you do" msgstr "5. Zauberer - ich kann wahrscheinlich mehr als Du" -#: ../../Zotlabs/Lib/Apps.php:225 +#: ../../Zotlabs/Lib/Apps.php:231 msgid "Site Admin" msgstr "Hub-Administration" -#: ../../Zotlabs/Lib/Apps.php:226 ../../addon/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 msgid "Report Bug" msgstr "Fehler melden" -#: ../../Zotlabs/Lib/Apps.php:227 +#: ../../Zotlabs/Lib/Apps.php:233 msgid "View Bookmarks" msgstr "Lesezeichen ansehen" -#: ../../Zotlabs/Lib/Apps.php:228 +#: ../../Zotlabs/Lib/Apps.php:234 msgid "My Chatrooms" msgstr "Meine Chaträume" -#: ../../Zotlabs/Lib/Apps.php:230 +#: ../../Zotlabs/Lib/Apps.php:236 msgid "Firefox Share" msgstr "Teilen-Knopf für Firefox" -#: ../../Zotlabs/Lib/Apps.php:231 +#: ../../Zotlabs/Lib/Apps.php:237 msgid "Remote Diagnostics" msgstr "Ferndiagnose" -#: ../../Zotlabs/Lib/Apps.php:232 ../../include/features.php:352 +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:390 msgid "Suggest Channels" msgstr "Kanäle vorschlagen" -#: ../../Zotlabs/Lib/Apps.php:233 ../../boot.php:1664 -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1582 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Login" msgstr "Anmelden" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/nav.php:105 +#: ../../Zotlabs/Lib/Apps.php:241 msgid "Activity" msgstr "Aktivität" -#: ../../Zotlabs/Lib/Apps.php:239 ../../include/conversation.php:1928 -#: ../../include/features.php:95 ../../include/nav.php:529 +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1928 +#: ../../include/features.php:87 ../../include/nav.php:497 msgid "Wiki" msgstr "Wiki" -#: ../../Zotlabs/Lib/Apps.php:240 ../../include/nav.php:109 +#: ../../Zotlabs/Lib/Apps.php:246 msgid "Channel Home" msgstr "Mein Kanal" -#: ../../Zotlabs/Lib/Apps.php:243 ../../include/conversation.php:1850 -#: ../../include/conversation.php:1853 ../../include/nav.php:131 +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1850 +#: ../../include/conversation.php:1853 msgid "Events" msgstr "Termine" -#: ../../Zotlabs/Lib/Apps.php:244 +#: ../../Zotlabs/Lib/Apps.php:250 msgid "Directory" msgstr "Verzeichnis" -#: ../../Zotlabs/Lib/Apps.php:246 ../../include/nav.php:123 +#: ../../Zotlabs/Lib/Apps.php:252 msgid "Mail" msgstr "Mail" -#: ../../Zotlabs/Lib/Apps.php:249 +#: ../../Zotlabs/Lib/Apps.php:255 msgid "Chat" msgstr "Chat" -#: ../../Zotlabs/Lib/Apps.php:251 +#: ../../Zotlabs/Lib/Apps.php:257 msgid "Probe" msgstr "Testen" -#: ../../Zotlabs/Lib/Apps.php:252 +#: ../../Zotlabs/Lib/Apps.php:258 msgid "Suggest" msgstr "Empfehlen" -#: ../../Zotlabs/Lib/Apps.php:253 +#: ../../Zotlabs/Lib/Apps.php:259 msgid "Random Channel" msgstr "Zufälliger Kanal" -#: ../../Zotlabs/Lib/Apps.php:254 +#: ../../Zotlabs/Lib/Apps.php:260 msgid "Invite" msgstr "Einladen" -#: ../../Zotlabs/Lib/Apps.php:255 ../../Zotlabs/Widget/Admin.php:26 +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "Funktionen" -#: ../../Zotlabs/Lib/Apps.php:256 ../../addon/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 msgid "Language" msgstr "Sprache" -#: ../../Zotlabs/Lib/Apps.php:257 +#: ../../Zotlabs/Lib/Apps.php:263 msgid "Post" msgstr "Beitrag schreiben" -#: ../../Zotlabs/Lib/Apps.php:258 ../../addon/openid/MysqlProvider.php:58 +#: ../../Zotlabs/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "Profilfoto" -#: ../../Zotlabs/Lib/Apps.php:397 +#: ../../Zotlabs/Lib/Apps.php:407 msgid "Purchase" msgstr "Kaufen" -#: ../../Zotlabs/Lib/Apps.php:401 +#: ../../Zotlabs/Lib/Apps.php:411 msgid "Undelete" msgstr "Wieder hergestellt" -#: ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/Apps.php:419 msgid "Add to app-tray" msgstr "Zum App-Menü hinzufügen" -#: ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/Apps.php:420 msgid "Remove from app-tray" msgstr "Aus dem App-Menü entfernen" -#: ../../Zotlabs/Lib/Apps.php:411 +#: ../../Zotlabs/Lib/Apps.php:421 msgid "Pin to navbar" msgstr "An Navigationsleiste anpinnen" -#: ../../Zotlabs/Lib/Apps.php:412 +#: ../../Zotlabs/Lib/Apps.php:422 msgid "Unpin from navbar" msgstr "Von Navigationsleiste entfernen" -#: ../../Zotlabs/Lib/Permcat.php:58 +#: ../../Zotlabs/Lib/Permcat.php:82 msgctxt "permcat" msgid "default" msgstr "Standard" -#: ../../Zotlabs/Lib/Permcat.php:96 +#: ../../Zotlabs/Lib/Permcat.php:133 msgctxt "permcat" msgid "follower" msgstr "Abonnent" -#: ../../Zotlabs/Lib/Permcat.php:100 +#: ../../Zotlabs/Lib/Permcat.php:137 msgctxt "permcat" msgid "contributor" msgstr "Beitragender" -#: ../../Zotlabs/Lib/Permcat.php:104 +#: ../../Zotlabs/Lib/Permcat.php:141 msgctxt "permcat" msgid "publisher" msgstr "Autor" @@ -7649,18 +7836,18 @@ msgid "Message" msgstr "Nachricht" #: ../../Zotlabs/Lib/NativeWikiPage.php:597 -#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:674 -#: ../../include/bbcode.php:822 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:706 +#: ../../include/bbcode.php:865 msgid "Different viewers will see this text differently" msgstr "Verschiedene Betrachter werden diesen Text unterschiedlich sehen" #: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:128 +#: ../../include/acl_selectors.php:33 msgid "Visible to your default audience" msgstr "Standard-Sichtbarkeit gemäß Kanaleinstellungen" #: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:201 +#: ../../include/acl_selectors.php:106 msgid "Only me" msgstr "Nur ich" @@ -7741,8 +7928,8 @@ msgstr "Der Chatraum ist voll" msgid "$Projectname Notification" msgstr "$Projectname-Benachrichtigung" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:283 -#: ../../addon/diaspora/util.php:296 ../../addon/diaspora/p.php:48 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "$projectname" @@ -7750,224 +7937,263 @@ msgstr "$projectname" msgid "Thank You," msgstr "Danke." -#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 +#, php-format +msgid "%s Administrator" +msgstr "der Administrator von %s" + +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "Diese Email wurde von %1$s auf %2$s gesendet." + +#: ../../Zotlabs/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s" + +#: ../../Zotlabs/Lib/Enotify.php:68 #, php-format -msgid "%s Administrator" -msgstr "der Administrator von %s" +msgid "To stop receiving these messages, please adjust your %s." +msgstr "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an." -#: ../../Zotlabs/Lib/Enotify.php:116 +#: ../../Zotlabs/Lib/Enotify.php:120 #, php-format msgid "%s " msgstr "%s " -#: ../../Zotlabs/Lib/Enotify.php:120 +#: ../../Zotlabs/Lib/Enotify.php:124 #, php-format msgid "[$Projectname:Notify] New mail received at %s" msgstr "[$Projectname:Benachrichtigung] Neue Mail empfangen auf %s" -#: ../../Zotlabs/Lib/Enotify.php:122 +#: ../../Zotlabs/Lib/Enotify.php:126 #, php-format msgid "%1$s, %2$s sent you a new private message at %3$s." msgstr "%1$s, %2$s hat Dir eine private Nachricht auf %3$s gesendet." -#: ../../Zotlabs/Lib/Enotify.php:123 +#: ../../Zotlabs/Lib/Enotify.php:127 #, php-format msgid "%1$s sent you %2$s." msgstr "%1$s hat Dir %2$s geschickt." -#: ../../Zotlabs/Lib/Enotify.php:123 +#: ../../Zotlabs/Lib/Enotify.php:127 msgid "a private message" msgstr "eine private Nachricht" -#: ../../Zotlabs/Lib/Enotify.php:124 +#: ../../Zotlabs/Lib/Enotify.php:128 #, php-format msgid "Please visit %s to view and/or reply to your private messages." msgstr "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten." -#: ../../Zotlabs/Lib/Enotify.php:184 +#: ../../Zotlabs/Lib/Enotify.php:141 +msgid "commented on" +msgstr "kommentierte" + +#: ../../Zotlabs/Lib/Enotify.php:152 +msgid "liked" +msgstr "gefiel" + +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "disliked" +msgstr "missfiel" + +#: ../../Zotlabs/Lib/Enotify.php:198 #, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]einen %4$s[/zrl] kommentiert" +msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s]ein %5$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:192 +#: ../../Zotlabs/Lib/Enotify.php:207 #, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]%4$ss %5$s[/zrl] kommentiert" +msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:201 +#: ../../Zotlabs/Lib/Enotify.php:217 #, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen %4$s[/zrl] kommentiert" +msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" +msgstr "%1$s, %2$s %3$s [zrl=%4$s]Dein %5$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:213 +#: ../../Zotlabs/Lib/Enotify.php:230 #, php-format msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" msgstr "[$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1$d von %2$s" -#: ../../Zotlabs/Lib/Enotify.php:215 +#: ../../Zotlabs/Lib/Enotify.php:232 #, php-format msgid "[$Projectname:Notify] Comment to conversation #%1$d by %2$s" msgstr "[$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1$d von %2$s" -#: ../../Zotlabs/Lib/Enotify.php:216 +#: ../../Zotlabs/Lib/Enotify.php:233 #, php-format msgid "%1$s, %2$s commented on an item/conversation you have been following." msgstr "%1$s, %2$s hat eine Unterhaltung kommentiert, der Du folgst." -#: ../../Zotlabs/Lib/Enotify.php:219 ../../Zotlabs/Lib/Enotify.php:301 -#: ../../Zotlabs/Lib/Enotify.php:318 ../../Zotlabs/Lib/Enotify.php:344 -#: ../../Zotlabs/Lib/Enotify.php:362 ../../Zotlabs/Lib/Enotify.php:376 +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 +#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 #, php-format msgid "Please visit %s to view and/or reply to the conversation." msgstr "Bitte besuche %s, um die Unterhaltung anzusehen und/oder zu kommentieren." -#: ../../Zotlabs/Lib/Enotify.php:223 ../../Zotlabs/Lib/Enotify.php:224 +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 #, php-format msgid "Please visit %s to approve or reject this comment." msgstr "Bitte besuche %s, um diesen Kommentar anzunehmen oder abzulehnen." -#: ../../Zotlabs/Lib/Enotify.php:282 +#: ../../Zotlabs/Lib/Enotify.php:299 #, php-format msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" msgstr "%1$s, %2$s gefällt [zrl=%3$s]dein %4$s[/zrl]" -#: ../../Zotlabs/Lib/Enotify.php:297 +#: ../../Zotlabs/Lib/Enotify.php:314 #, php-format msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" msgstr "[$Projectname:Benachrichtigung] Gefällt mir in Unterhaltung #%1$d von %2$s erhalten" -#: ../../Zotlabs/Lib/Enotify.php:298 +#: ../../Zotlabs/Lib/Enotify.php:315 #, php-format msgid "%1$s, %2$s liked an item/conversation you created." msgstr "%1$s, %2$s gefällt ein Beitrag oder eine Unterhaltung von Dir" -#: ../../Zotlabs/Lib/Enotify.php:309 +#: ../../Zotlabs/Lib/Enotify.php:326 #, php-format msgid "[$Projectname:Notify] %s posted to your profile wall" msgstr "[$Projectname:Benachrichtigung] %s schrieb auf Deine Pinnwand" -#: ../../Zotlabs/Lib/Enotify.php:311 +#: ../../Zotlabs/Lib/Enotify.php:328 #, php-format msgid "%1$s, %2$s posted to your profile wall at %3$s" msgstr "%1$s, %2$s hat auf Deine Pinnwand auf %3$s geschrieben" -#: ../../Zotlabs/Lib/Enotify.php:313 +#: ../../Zotlabs/Lib/Enotify.php:330 #, php-format msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" msgstr "%1$s, %2$s hat auf [zrl=%3$s]Deine Pinnwand[/zrl] geschrieben" -#: ../../Zotlabs/Lib/Enotify.php:337 +#: ../../Zotlabs/Lib/Enotify.php:354 #, php-format msgid "[$Projectname:Notify] %s tagged you" msgstr "[$Projectname:Benachrichtigung] %s hat Dich erwähnt" -#: ../../Zotlabs/Lib/Enotify.php:338 +#: ../../Zotlabs/Lib/Enotify.php:355 #, php-format msgid "%1$s, %2$s tagged you at %3$s" msgstr "%1$s, %2$s hat Dich auf %3$s erwähnt" -#: ../../Zotlabs/Lib/Enotify.php:339 +#: ../../Zotlabs/Lib/Enotify.php:356 #, php-format msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." msgstr "%1$s, %2$s [zrl=%3$s]hat Dich erwähnt[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:351 +#: ../../Zotlabs/Lib/Enotify.php:368 #, php-format msgid "[$Projectname:Notify] %1$s poked you" msgstr "[$Projectname:Benachrichtigung] %1$s hat Dich angestupst" -#: ../../Zotlabs/Lib/Enotify.php:352 +#: ../../Zotlabs/Lib/Enotify.php:369 #, php-format msgid "%1$s, %2$s poked you at %3$s" msgstr "%1$s, %2$s hat Dich auf %3$s angestupst" -#: ../../Zotlabs/Lib/Enotify.php:353 +#: ../../Zotlabs/Lib/Enotify.php:370 #, php-format msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." msgstr "%1$s, %2$s [zrl=%2$s]hat Dich angestupst[/zrl]." -#: ../../Zotlabs/Lib/Enotify.php:369 +#: ../../Zotlabs/Lib/Enotify.php:386 #, php-format msgid "[$Projectname:Notify] %s tagged your post" msgstr "[$Projectname:Benachrichtigung] %s hat Deinen Beitrag verschlagwortet" -#: ../../Zotlabs/Lib/Enotify.php:370 +#: ../../Zotlabs/Lib/Enotify.php:387 #, php-format msgid "%1$s, %2$s tagged your post at %3$s" msgstr "%1$s, %2$s hat Deinen Beitrag auf %3$s verschlagwortet" -#: ../../Zotlabs/Lib/Enotify.php:371 +#: ../../Zotlabs/Lib/Enotify.php:388 #, php-format msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" msgstr "%1$s, %2$s hat [zrl=%3$s]Deinen Beitrag[/zrl] verschlagwortet" -#: ../../Zotlabs/Lib/Enotify.php:383 +#: ../../Zotlabs/Lib/Enotify.php:400 msgid "[$Projectname:Notify] Introduction received" msgstr "[$Projectname:Benachrichtigung] Verbindungsanfrage erhalten" -#: ../../Zotlabs/Lib/Enotify.php:384 +#: ../../Zotlabs/Lib/Enotify.php:401 #, php-format msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" msgstr "%1$s, Du hast eine neue Verbindungsanfrage von '%2$s' auf %3$s erhalten" -#: ../../Zotlabs/Lib/Enotify.php:385 +#: ../../Zotlabs/Lib/Enotify.php:402 #, php-format msgid "" "%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." msgstr "%1$s, Du hast [zrl=%2$s]eine neue Verbindungsanfrage[/zrl] von %3$s erhalten." -#: ../../Zotlabs/Lib/Enotify.php:389 ../../Zotlabs/Lib/Enotify.php:408 +#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 #, php-format msgid "You may visit their profile at %s" msgstr "Du kannst Dir das Profil unter %s ansehen" -#: ../../Zotlabs/Lib/Enotify.php:391 +#: ../../Zotlabs/Lib/Enotify.php:408 #, 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:398 +#: ../../Zotlabs/Lib/Enotify.php:415 msgid "[$Projectname:Notify] Friend suggestion received" msgstr "[$Projectname:Benachrichtigung] Freundschaftsvorschlag erhalten" -#: ../../Zotlabs/Lib/Enotify.php:399 +#: ../../Zotlabs/Lib/Enotify.php:416 #, 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:400 +#: ../../Zotlabs/Lib/Enotify.php:417 #, 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:406 +#: ../../Zotlabs/Lib/Enotify.php:423 msgid "Name:" msgstr "Name:" -#: ../../Zotlabs/Lib/Enotify.php:407 +#: ../../Zotlabs/Lib/Enotify.php:424 msgid "Photo:" msgstr "Foto:" -#: ../../Zotlabs/Lib/Enotify.php:410 +#: ../../Zotlabs/Lib/Enotify.php:427 #, 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:629 +#: ../../Zotlabs/Lib/Enotify.php:647 msgid "[$Projectname:Notify]" msgstr "[$Projectname:Benachrichtigung]" -#: ../../Zotlabs/Lib/Enotify.php:793 +#: ../../Zotlabs/Lib/Enotify.php:815 msgid "created a new post" msgstr "Neuer Beitrag wurde erzeugt" -#: ../../Zotlabs/Lib/Enotify.php:794 +#: ../../Zotlabs/Lib/Enotify.php:816 #, php-format msgid "commented on %s's post" msgstr "hat %s's Beitrag kommentiert" +#: ../../Zotlabs/Lib/Enotify.php:823 +#, php-format +msgid "edited a post dated %s" +msgstr "hat einen Beitrag vom %s bearbeitet" + +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "edited a comment dated %s" +msgstr "hat einen Kommentar vom %s bearbeitet" + #: ../../Zotlabs/Lib/NativeWiki.php:151 msgid "Wiki updated successfully" msgstr "Wiki erfolgreich aktualisiert" @@ -7976,12 +8202,12 @@ msgstr "Wiki erfolgreich aktualisiert" msgid "Wiki files deleted successfully" msgstr "Wiki-Dateien erfolgreich gelöscht" -#: ../../Zotlabs/Lib/DB_Upgrade.php:95 +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 #, php-format msgid "Update Error at %s" msgstr "Aktualisierungsfehler auf %s" -#: ../../Zotlabs/Lib/DB_Upgrade.php:101 +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 #, php-format msgid "Update %s failed. See error logs." msgstr "Aktualisierung %s fehlgeschlagen. Details in den Fehlerprotokollen." @@ -8046,11 +8272,11 @@ msgstr "Signatur nicht korrekt" msgid "Add Tag" msgstr "Tag hinzufügen" -#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:506 +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 msgid "like" msgstr "mag" -#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:507 +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 msgid "dislike" msgstr "verurteile" @@ -8143,51 +8369,51 @@ msgstr "Dies ist eine nicht gespeicherte Vorschau" msgid "%s show all" msgstr "%s mehr anzeigen" -#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1377 +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 msgid "Bold" msgstr "Fett" -#: ../../Zotlabs/Lib/ThreadItem.php:756 ../../include/conversation.php:1378 +#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 msgid "Italic" msgstr "Kursiv" -#: ../../Zotlabs/Lib/ThreadItem.php:757 ../../include/conversation.php:1379 +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 msgid "Underline" msgstr "Unterstrichen" -#: ../../Zotlabs/Lib/ThreadItem.php:758 ../../include/conversation.php:1380 +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 msgid "Quote" msgstr "Zitat" -#: ../../Zotlabs/Lib/ThreadItem.php:759 ../../include/conversation.php:1381 +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 msgid "Code" msgstr "Code" -#: ../../Zotlabs/Lib/ThreadItem.php:760 +#: ../../Zotlabs/Lib/ThreadItem.php:756 msgid "Image" msgstr "Bild" -#: ../../Zotlabs/Lib/ThreadItem.php:761 +#: ../../Zotlabs/Lib/ThreadItem.php:757 msgid "Attach File" msgstr "Datei anhängen" -#: ../../Zotlabs/Lib/ThreadItem.php:762 +#: ../../Zotlabs/Lib/ThreadItem.php:758 msgid "Insert Link" msgstr "Link einfügen" -#: ../../Zotlabs/Lib/ThreadItem.php:763 +#: ../../Zotlabs/Lib/ThreadItem.php:759 msgid "Video" msgstr "Video" -#: ../../Zotlabs/Lib/ThreadItem.php:773 +#: ../../Zotlabs/Lib/ThreadItem.php:769 msgid "Your full name (required)" msgstr "Ihr vollständiger Name (erforderlich)" -#: ../../Zotlabs/Lib/ThreadItem.php:774 +#: ../../Zotlabs/Lib/ThreadItem.php:770 msgid "Your email address (required)" msgstr "Ihre E-Mail-Adresse (erforderlich)" -#: ../../Zotlabs/Lib/ThreadItem.php:775 +#: ../../Zotlabs/Lib/ThreadItem.php:771 msgid "Your website URL (optional)" msgstr "Ihre Webseiten-URL (optional)" @@ -8203,11 +8429,11 @@ msgstr "Fern-Authentifizierung blockiert. Du bist lokal auf diesem Server angeme msgid "Welcome %s. Remote authentication successful." msgstr "Willkommen %s. Entfernte Authentifizierung erfolgreich." -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:284 +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 msgid "parent" msgstr "Übergeordnetes Verzeichnis" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2707 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 msgid "Collection" msgstr "Sammlung" @@ -8219,8 +8445,8 @@ msgstr "Prinzipal" msgid "Addressbook" msgstr "Adressbuch" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:452 -#: ../../include/nav.php:455 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 msgid "Calendar" msgstr "Kalender" @@ -8232,41 +8458,41 @@ msgstr "Posteingang für überwachte Kalender" msgid "Schedule Outbox" msgstr "Postausgang für überwachte Kalender" -#: ../../Zotlabs/Storage/Browser.php:270 +#: ../../Zotlabs/Storage/Browser.php:273 msgid "Total" msgstr "Summe" -#: ../../Zotlabs/Storage/Browser.php:272 +#: ../../Zotlabs/Storage/Browser.php:275 msgid "Shared" msgstr "Geteilt" -#: ../../Zotlabs/Storage/Browser.php:350 +#: ../../Zotlabs/Storage/Browser.php:353 #, 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:355 +#: ../../Zotlabs/Storage/Browser.php:358 #, 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:366 +#: ../../Zotlabs/Storage/Browser.php:369 msgid "WARNING:" msgstr "WARNUNG:" -#: ../../Zotlabs/Storage/Browser.php:378 +#: ../../Zotlabs/Storage/Browser.php:381 msgid "Create new folder" msgstr "Neuen Ordner anlegen" -#: ../../Zotlabs/Storage/Browser.php:380 +#: ../../Zotlabs/Storage/Browser.php:383 msgid "Upload file" msgstr "Datei hochladen" -#: ../../Zotlabs/Storage/Browser.php:393 +#: ../../Zotlabs/Storage/Browser.php:396 msgid "Drop files here to immediately upload" msgstr "Dateien zum sofortigen Hochladen hier fallen lassen" -#: ../../Zotlabs/Widget/Forums.php:99 +#: ../../Zotlabs/Widget/Forums.php:100 msgid "Forums" msgstr "Foren" @@ -8349,8 +8575,8 @@ msgstr "Adressbuch zum Hineinimportieren auswählen" #: ../../Zotlabs/Widget/Appcategories.php:40 #: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 #: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 -#: ../../include/taxonomy.php:337 ../../include/taxonomy.php:419 -#: ../../include/taxonomy.php:439 ../../include/taxonomy.php:460 +#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 +#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 msgid "Categories" msgstr "Kategorien" @@ -8392,21 +8618,21 @@ msgstr "Private Nachrichten" msgid "Combined View" msgstr "Kombinierte Anzeige" -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:126 +#: ../../Zotlabs/Widget/Mailmenu.php:20 msgid "Inbox" msgstr "Eingang" -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:127 +#: ../../Zotlabs/Widget/Mailmenu.php:25 msgid "Outbox" msgstr "Ausgang" -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:128 +#: ../../Zotlabs/Widget/Mailmenu.php:30 msgid "New Message" msgstr "Neue Nachricht" #: ../../Zotlabs/Widget/Chatroom_list.php:16 #: ../../include/conversation.php:1864 ../../include/conversation.php:1867 -#: ../../include/nav.php:466 ../../include/nav.php:469 +#: ../../include/nav.php:434 ../../include/nav.php:437 msgid "Chatrooms" msgstr "Chaträume" @@ -8488,7 +8714,7 @@ msgstr "Foto/Bild" msgid "Remove term" msgstr "Eintrag löschen" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:316 +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:354 msgid "Saved Searches" msgstr "Gespeicherte Suchanfragen" @@ -8513,7 +8739,7 @@ msgstr "Wikiseiten" msgid "Page name" msgstr "Seitenname" -#: ../../Zotlabs/Widget/Affinity.php:49 +#: ../../Zotlabs/Widget/Affinity.php:45 msgid "Refresh" msgstr "Aktualisieren" @@ -8530,7 +8756,7 @@ msgid "See more..." msgstr "Mehr anzeigen …" #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:414 +#: ../../include/features.php:443 msgid "Saved Folders" msgstr "Gespeicherte Ordner" @@ -8538,6 +8764,54 @@ msgstr "Gespeicherte Ordner" msgid "Click to show more" msgstr "Klick, um mehr anzuzeigen" +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Profile Creation" +msgstr "Profilerstellung" + +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Upload profile photo" +msgstr "Profilfoto hochladen" + +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Upload cover photo" +msgstr "Titelbild hochladen" + +#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Profil bearbeiten" + +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Find and Connect with others" +msgstr "Finden und Verbinden von/mit Anderen" + +#: ../../Zotlabs/Widget/Newmember.php:44 +msgid "Manage your connections" +msgstr "Deine Verbindungen verwalten" + +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Communicate" +msgstr "Kommunizieren" + +#: ../../Zotlabs/Widget/Newmember.php:49 +msgid "View your channel homepage" +msgstr "Deine Kanal-Startseite ansehen" + +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "View your network stream" +msgstr "Deine Netzwerk-Aktivitäten ansehen" + +#: ../../Zotlabs/Widget/Newmember.php:56 +msgid "Documentation" +msgstr "Dokumentation" + +#: ../../Zotlabs/Widget/Newmember.php:67 +msgid "View public stream. Warning: not moderated" +msgstr "Öffentliche Beitragsaktivitäten ansehen. Warnung: Diese Inhalte sind nicht moderiert." + +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "New Member Links" +msgstr "Links für neue Mitglieder" + #: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 msgid "Member registrations waiting for confirmation" msgstr "Nutzer-Anmeldungen, die auf Bestätigung warten" @@ -8550,7 +8824,7 @@ msgstr "Warteschlange kontrollieren" msgid "DB updates" msgstr "DB-Aktualisierungen" -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:231 +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 msgid "Admin" msgstr "Administration" @@ -8571,8 +8845,8 @@ msgid "Additional features" msgstr "Zusätzliche Funktionen" #: ../../Zotlabs/Widget/Settings_menu.php:57 -msgid "Feature/Addon settings" -msgstr "Plugin-Einstellungen" +msgid "Addon settings" +msgstr "Addon-Einstellungen" #: ../../Zotlabs/Widget/Settings_menu.php:63 msgid "Display settings" @@ -8590,7 +8864,7 @@ msgstr "Kanal exportieren" msgid "Connected apps" msgstr "Verbundene Apps" -#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:168 +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 msgid "Permission Groups" msgstr "Berechtigungsrollen" @@ -8610,7 +8884,7 @@ msgstr "Neue Netzwerk-Aktivitäten" msgid "New Network Activity Notifications" msgstr "Benachrichtigungen für neue Netzwerk-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:20 ../../include/nav.php:106 +#: ../../Zotlabs/Widget/Notifications.php:20 msgid "View your network activity" msgstr "Zeige Deine Netzwerk-Aktivitäten" @@ -8619,161 +8893,163 @@ msgid "Mark all notifications read" msgstr "Alle Benachrichtigungen als gesehen markieren" #: ../../Zotlabs/Widget/Notifications.php:26 -#: ../../Zotlabs/Widget/Notifications.php:44 -#: ../../Zotlabs/Widget/Notifications.php:139 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 msgid "Show new posts only" msgstr "Zeige nur neue Beiträge" -#: ../../Zotlabs/Widget/Notifications.php:34 +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "Nach Namen filtern" + +#: ../../Zotlabs/Widget/Notifications.php:35 msgid "New Home Activity" msgstr "Neue Kanal-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:35 +#: ../../Zotlabs/Widget/Notifications.php:36 msgid "New Home Activity Notifications" msgstr "Benachrichtigungen für neue Kanal-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:38 +#: ../../Zotlabs/Widget/Notifications.php:39 msgid "View your home activity" msgstr "Zeige Deine Kanal-Aktivitäten" -#: ../../Zotlabs/Widget/Notifications.php:41 -#: ../../Zotlabs/Widget/Notifications.php:136 +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 msgid "Mark all notifications seen" msgstr "Alle Benachrichtigungen als gesehen markieren" -#: ../../Zotlabs/Widget/Notifications.php:52 +#: ../../Zotlabs/Widget/Notifications.php:54 msgid "New Mails" msgstr "Neue Mails" -#: ../../Zotlabs/Widget/Notifications.php:53 +#: ../../Zotlabs/Widget/Notifications.php:55 msgid "New Mails Notifications" msgstr "Benachrichtigungen für neue Mails" -#: ../../Zotlabs/Widget/Notifications.php:56 +#: ../../Zotlabs/Widget/Notifications.php:58 msgid "View your private mails" msgstr "Zeige Deine persönlichen Mails" -#: ../../Zotlabs/Widget/Notifications.php:59 +#: ../../Zotlabs/Widget/Notifications.php:61 msgid "Mark all messages seen" msgstr "Alle Mails als gelesen markieren" -#: ../../Zotlabs/Widget/Notifications.php:67 +#: ../../Zotlabs/Widget/Notifications.php:69 msgid "New Events" msgstr "Neue Termine" -#: ../../Zotlabs/Widget/Notifications.php:68 +#: ../../Zotlabs/Widget/Notifications.php:70 msgid "New Events Notifications" msgstr "Benachrichtigungen für neue Termine" -#: ../../Zotlabs/Widget/Notifications.php:71 ../../include/nav.php:132 +#: ../../Zotlabs/Widget/Notifications.php:73 msgid "View events" msgstr "Termine ansehen" -#: ../../Zotlabs/Widget/Notifications.php:74 ../../include/nav.php:133 +#: ../../Zotlabs/Widget/Notifications.php:76 msgid "Mark all events seen" msgstr "Markiere alle Termine als gesehen" -#: ../../Zotlabs/Widget/Notifications.php:83 +#: ../../Zotlabs/Widget/Notifications.php:85 msgid "New Connections Notifications" msgstr "Benachrichtigungen für neue Verbindungen" -#: ../../Zotlabs/Widget/Notifications.php:86 +#: ../../Zotlabs/Widget/Notifications.php:88 msgid "View all connections" msgstr "Zeige alle Verbindungen" -#: ../../Zotlabs/Widget/Notifications.php:94 +#: ../../Zotlabs/Widget/Notifications.php:96 msgid "New Files" msgstr "Neue Dateien" -#: ../../Zotlabs/Widget/Notifications.php:95 +#: ../../Zotlabs/Widget/Notifications.php:97 msgid "New Files Notifications" msgstr "Benachrichtigungen für neue Dateien" -#: ../../Zotlabs/Widget/Notifications.php:102 -#: ../../Zotlabs/Widget/Notifications.php:103 ../../include/nav.php:119 +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 msgid "Notices" msgstr "Benachrichtigungen" -#: ../../Zotlabs/Widget/Notifications.php:106 +#: ../../Zotlabs/Widget/Notifications.php:108 msgid "View all notices" msgstr "Alle Notizen ansehen" -#: ../../Zotlabs/Widget/Notifications.php:109 +#: ../../Zotlabs/Widget/Notifications.php:111 msgid "Mark all notices seen" msgstr "Alle Notizen als gesehen markieren" -#: ../../Zotlabs/Widget/Notifications.php:119 +#: ../../Zotlabs/Widget/Notifications.php:121 msgid "New Registrations" msgstr "Neue Registrierungen" -#: ../../Zotlabs/Widget/Notifications.php:120 +#: ../../Zotlabs/Widget/Notifications.php:122 msgid "New Registrations Notifications" msgstr "Benachrichtigungen für neue Registrierungen" -#: ../../Zotlabs/Widget/Notifications.php:130 +#: ../../Zotlabs/Widget/Notifications.php:132 msgid "Public Stream Notifications" msgstr "Benachrichtigungen für öffentlichen Beitrags-Stream" -#: ../../Zotlabs/Widget/Notifications.php:133 +#: ../../Zotlabs/Widget/Notifications.php:135 msgid "View the public stream" msgstr "Zeige öffentlichen Beitrags-Stream" -#: ../../Zotlabs/Widget/Notifications.php:147 ../../include/nav.php:316 -msgid "Loading" -msgstr "Lädt..." +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "Du hast momentan keine Benachrichtigungen" #: ../../util/nconfig.php:34 msgid "Source channel not found." msgstr "Quellkanal nicht gefunden." -#: ../../boot.php:1644 +#: ../../boot.php:1562 msgid "Create an account to access services and applications" msgstr "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können." -#: ../../boot.php:1663 ../../include/nav.php:145 ../../include/nav.php:174 -#: ../../include/nav.php:191 +#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 msgid "Logout" msgstr "Abmelden" -#: ../../boot.php:1667 +#: ../../boot.php:1585 msgid "Login/Email" msgstr "Anmelden/E-Mail" -#: ../../boot.php:1668 +#: ../../boot.php:1586 msgid "Password" msgstr "Kennwort" -#: ../../boot.php:1669 +#: ../../boot.php:1587 msgid "Remember me" msgstr "Angaben speichern" -#: ../../boot.php:1672 +#: ../../boot.php:1590 msgid "Forgot your password?" msgstr "Passwort vergessen?" -#: ../../boot.php:2257 -msgid "toggle mobile" -msgstr "auf/von mobile Ansicht wechseln" - -#: ../../boot.php:2419 +#: ../../boot.php:2347 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "[$Projectname] Webseiten-SSL-Fehler für %s" -#: ../../boot.php:2424 +#: ../../boot.php:2352 msgid "Website SSL certificate is not valid. Please correct." msgstr "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben." -#: ../../boot.php:2540 +#: ../../boot.php:2468 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "[$Projectname] Cron-Jobs laufen nicht auf %s" -#: ../../boot.php:2545 +#: ../../boot.php:2473 msgid "Cron/Scheduled tasks not running." msgstr "Cron-Aufgaben laufen nicht." -#: ../../boot.php:2546 ../../include/datetime.php:292 +#: ../../boot.php:2474 ../../include/datetime.php:232 msgid "never" msgstr "Nie" @@ -8898,7 +9174,7 @@ msgid "Errors encountered deleting database table " msgstr "Beim Löschen der Datenbanktabelle sind Fehler aufgetreten." #: ../../addon/rendezvous/rendezvous.php:95 -#: ../../addon/twitter/twitter.php:773 +#: ../../addon/twitter/twitter.php:779 msgid "Submit Settings" msgstr "Einstellungen absenden" @@ -9101,7 +9377,7 @@ msgid "Page to load after image selection." msgstr "Die Seite, die nach Auswahl eines Bildes geladen werden soll." #: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 -#: ../../include/nav.php:153 +#: ../../include/nav.php:119 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -9158,6 +9434,11 @@ msgstr "Hochgeladen von: " msgid "Drawn by: " msgstr "Gezeichnet von: " +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "" + #: ../../addon/openclipatar/openclipatar.php:192 msgid "Or select from a free OpenClipart.org image:" msgstr "Oder wähle ein freies Bild von OpenClipart.org:" @@ -9174,10 +9455,6 @@ msgstr "Unbekannter Fehler. Bitte versuchen Sie es später erneut." msgid "Profile photo updated successfully." msgstr "Profilfoto erfolgreich aktualisiert." -#: ../../addon/zotvi/zot6.php:25 ../../include/zot.php:4051 -msgid "invalid target signature" -msgstr "Ungültige Signatur des Ziels" - #: ../../addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "Nicht jugendfreie Fotos markieren" @@ -9274,7 +9551,7 @@ msgstr "NSFW-Einstellungen gespeichert." msgid "Possible adult content" msgstr "Möglicherweise nicht jugendfreie Inhalte" -#: ../../addon/nsfw/nsfw.php:211 +#: ../../addon/nsfw/nsfw.php:222 #, php-format msgid "%s - view" msgstr "%s - ansehen" @@ -9331,6 +9608,15 @@ msgstr "Standardmäßig auf auf Dreamwidth posten" msgid "Dreamwidth Post Settings" msgstr "Dreamwidth-Beitragseinstellungen" +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "" + +#: ../../addon/notifyadmin/notifyadmin.php:42 +#, php-format +msgid "Message sent to %s. New account registration: %s" +msgstr "Nachricht gesendet an %s. Neue Kontoregistrierung: %s" + #: ../../addon/dirstats/dirstats.php:94 msgid "Hubzilla Directory Stats" msgstr "Hubzilla-Verzeichnisstatistiken" @@ -9579,17 +9865,17 @@ msgstr "Geburtsdatum" msgid "OpenID protocol error. No ID returned." msgstr "OpenID-Protokollfehler. Keine Kennung zurückgegeben." -#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:289 +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 msgid "Login failed." msgstr "Login fehlgeschlagen." #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1480 +#: ../../include/selectors.php:66 ../../include/channel.php:1481 msgid "Male" msgstr "Männlich" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/channel.php:1478 +#: ../../include/selectors.php:66 ../../include/channel.php:1479 msgid "Female" msgstr "Weiblich" @@ -9690,11 +9976,11 @@ msgstr "verlockt" #: ../../addon/morepokes/morepokes.php:27 msgid "raise eyebrows at" -msgstr "" +msgstr "Augenbrauen hochziehen" #: ../../addon/morepokes/morepokes.php:27 msgid "raised their eyebrows at" -msgstr "" +msgstr "zog die Augenbrauen hoch" #: ../../addon/morepokes/morepokes.php:28 msgid "insult" @@ -9770,45 +10056,45 @@ msgstr "" #: ../../addon/morepokes/morepokes.php:37 msgid "declare undying love for" -msgstr "" +msgstr "erkläre unsterbliche Liebe" #: ../../addon/morepokes/morepokes.php:37 msgid "declared undying love for" -msgstr "" +msgstr "erklärte unsterbliche Liebe" -#: ../../addon/diaspora/diaspora.php:772 +#: ../../addon/diaspora/diaspora.php:778 msgid "Diaspora Protocol Settings updated." msgstr "Diaspora Protokoll Einstellungen aktualisiert" -#: ../../addon/diaspora/diaspora.php:791 +#: ../../addon/diaspora/diaspora.php:797 msgid "" "The Diaspora protocol does not support location independence. Connections " "you make within that network may be unreachable from alternate channel " "locations." msgstr "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein." -#: ../../addon/diaspora/diaspora.php:794 +#: ../../addon/diaspora/diaspora.php:800 msgid "Enable the Diaspora protocol for this channel" msgstr "Das Diaspora Protokoll für diesen Kanal aktivieren" -#: ../../addon/diaspora/diaspora.php:798 +#: ../../addon/diaspora/diaspora.php:804 msgid "Allow any Diaspora member to comment on your public posts" msgstr "Erlaube jedem Diaspora Nutzer deine öffentlichen Beiträge zu kommentieren" -#: ../../addon/diaspora/diaspora.php:802 +#: ../../addon/diaspora/diaspora.php:808 msgid "Prevent your hashtags from being redirected to other sites" msgstr "Verhindern, dass Deine Hashtags zu anderen Seiten umgeleitet werden" -#: ../../addon/diaspora/diaspora.php:806 +#: ../../addon/diaspora/diaspora.php:812 msgid "" "Sign and forward posts and comments with no existing Diaspora signature" msgstr "Signieren und Weiterleiten von Beiträgen und Kommentaren ohne vorhandene Diaspora-Signatur" -#: ../../addon/diaspora/diaspora.php:811 +#: ../../addon/diaspora/diaspora.php:817 msgid "Followed hashtags (comma separated, do not include the #)" msgstr "Verfolgte Hashtags (Komma separierte Liste, ohne die #)" -#: ../../addon/diaspora/diaspora.php:816 +#: ../../addon/diaspora/diaspora.php:822 msgid "Diaspora Protocol Settings" msgstr "Diaspora Protokoll Einstellungen" @@ -9823,11 +10109,11 @@ msgstr "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Im #: ../../addon/testdrive/testdrive.php:104 #, php-format msgid "Your account on %s will expire in a few days." -msgstr "Dein Account auf %s wird in ein paar Tagen ablaufen." +msgstr "Dein Konto auf %s wird in ein paar Tagen ablaufen." #: ../../addon/testdrive/testdrive.php:105 msgid "Your $Productname test account is about to expire." -msgstr "Dein $Productname Test-Account wird bald auslaufen." +msgstr "Dein $Productname Test-Konto wird bald auslaufen." #: ../../addon/rainbowtag/rainbowtag.php:81 msgid "Enable Rainbowtag" @@ -9919,15 +10205,15 @@ msgstr "Gravatar-Einstellungen aktualisiert." #: ../../addon/hzfiles/hzfiles.php:79 msgid "Hubzilla File Storage Import" -msgstr "" +msgstr "Hubzilla-Datenspeicher-Import" #: ../../addon/hzfiles/hzfiles.php:80 msgid "This will import all your cloud files from another server." -msgstr "" +msgstr "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert." #: ../../addon/hzfiles/hzfiles.php:81 msgid "Hubzilla Server base URL" -msgstr "" +msgstr "Basis-URL des Habzilla-Servers" #: ../../addon/hzfiles/hzfiles.php:82 msgid "Since modified date yyyy-mm-dd" @@ -10002,6 +10288,10 @@ msgstr "Mail Test" msgid "Message subject" msgstr "Betreff der Nachricht" +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "Verwende Markdown zum Bearbeiten von Beiträgen" + #: ../../addon/openstreetmap/openstreetmap.php:146 msgid "View Larger" msgstr "Größer anzeigen" @@ -10084,7 +10374,7 @@ msgid "Hubzilla to Friendica Post Settings" msgstr "Hubzilla-zu-Friendica Beitragseinstellungen" #: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 -#: ../../include/channel.php:1567 +#: ../../include/channel.php:1568 msgid "Status:" msgstr "Status:" @@ -10211,7 +10501,7 @@ msgstr "Hubzilla-Kanalname" #: ../../addon/redred/redred.php:119 msgid "Hubzilla Crosspost Settings" -msgstr "" +msgstr "Hubzilla Crosspost Einstellungen" #: ../../addon/logrot/logrot.php:36 msgid "Logfile archive directory" @@ -10249,37 +10539,37 @@ msgstr "Friendica-Anmeldebenutzername" msgid "Friendica Login Password" msgstr "Friendica-Anmeldepasswort" -#: ../../addon/pubcrawl/as.php:1077 ../../addon/pubcrawl/as.php:1164 -#: ../../addon/pubcrawl/as.php:1339 ../../include/network.php:1768 +#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 +#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 msgid "ActivityPub" msgstr "ActivityPub" -#: ../../addon/pubcrawl/pubcrawl.php:1033 +#: ../../addon/pubcrawl/pubcrawl.php:1034 msgid "ActivityPub Protocol Settings updated." -msgstr "" +msgstr "ActivityPub Protokoll Einstellungen aktualisiert" -#: ../../addon/pubcrawl/pubcrawl.php:1042 +#: ../../addon/pubcrawl/pubcrawl.php:1043 msgid "" "The ActivityPub protocol does not support location independence. Connections" " you make within that network may be unreachable from alternate channel " "locations." msgstr "" -#: ../../addon/pubcrawl/pubcrawl.php:1045 +#: ../../addon/pubcrawl/pubcrawl.php:1046 msgid "Enable the ActivityPub protocol for this channel" -msgstr "" +msgstr "Aktiviere das ActivityPub Protokoll für diesen Kanal" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Send multi-media HTML articles" -msgstr "" +msgstr "Multimedia HTML Artikel versenden" -#: ../../addon/pubcrawl/pubcrawl.php:1048 +#: ../../addon/pubcrawl/pubcrawl.php:1049 msgid "Not supported by some microblog services such as Mastodon" -msgstr "" +msgstr "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt" #: ../../addon/pubcrawl/pubcrawl.php:1053 msgid "ActivityPub Protocol Settings" -msgstr "" +msgstr "ActivityPub Protokoll Einstellungen" #: ../../addon/donate/donate.php:21 msgid "Project Servers and Resources" @@ -10583,7 +10873,7 @@ msgstr "Aktuelle GNU social API ist" msgid "Cancel GNU social Connection" msgstr "GNU social Verbindung trennen" -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:232 +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 msgid "Currently connected to: " msgstr "Momentan verbunden mit:" @@ -10603,7 +10893,7 @@ msgstr "Erlaube die Veröffentlichung bei GNU social" msgid "" "If enabled your public postings can be posted to the associated GNU-social " "account" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Account veröffentlicht werden." +msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden." #: ../../addon/statusnet/statusnet.php:415 msgid "Post to GNU social by default" @@ -10613,9 +10903,9 @@ msgstr "Standardmäßig bei GNU social veröffentlichen" msgid "" "If enabled your public postings will be posted to the associated GNU-social " "account by default" -msgstr "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Account veröffentlicht." +msgstr "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht." -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:255 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 msgid "Clear OAuth configuration" msgstr "OAuth Konfiguration löschen" @@ -10643,39 +10933,39 @@ msgstr "QR-Generator" msgid "Enter some text" msgstr "Etwas Text eingeben" -#: ../../addon/chess/chess.php:278 ../../addon/chess/chess.php:465 +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 msgid "Invalid game." msgstr "Ungültiges Spiel." -#: ../../addon/chess/chess.php:284 ../../addon/chess/chess.php:471 +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 msgid "You are not a player in this game." msgstr "Sie sind kein Spieler in diesem Spiel." -#: ../../addon/chess/chess.php:340 +#: ../../addon/chess/chess.php:415 msgid "You must be a local channel to create a game." msgstr "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein" -#: ../../addon/chess/chess.php:358 +#: ../../addon/chess/chess.php:433 msgid "You must select one opponent that is not yourself." msgstr "Du musst einen Gegner wählen, der nicht du selbst ist" -#: ../../addon/chess/chess.php:367 -msgid "You must select white or black." -msgstr "Sie müssen weiß oder schwarz auswählen." +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "" -#: ../../addon/chess/chess.php:375 +#: ../../addon/chess/chess.php:452 msgid "Error creating new game." msgstr "Fehler beim Erstellen eines neuen Spiels." -#: ../../addon/chess/chess.php:409 ../../include/channel.php:1152 +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 msgid "Requested channel is not available." -msgstr "Angeforderte Kanal nicht verfügbar." +msgstr "Angeforderter Kanal nicht verfügbar." -#: ../../addon/chess/chess.php:423 +#: ../../addon/chess/chess.php:500 msgid "You must select a local channel /chess/channelname" msgstr "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen" -#: ../../addon/chess/chess.php:969 +#: ../../addon/chess/chess.php:1066 msgid "Enable notifications" msgstr "Benachrichtigungen aktivieren" @@ -10683,17 +10973,17 @@ msgstr "Benachrichtigungen aktivieren" msgid "Post to Twitter" msgstr "Bei Twitter veröffentlichen" -#: ../../addon/twitter/twitter.php:154 +#: ../../addon/twitter/twitter.php:155 msgid "Twitter settings updated." msgstr "Twitter-Einstellungen aktualisiert." -#: ../../addon/twitter/twitter.php:183 +#: ../../addon/twitter/twitter.php:184 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "Es wurde kein Consumer-Schlüsselpaar für Twitter gefunden. Bitte kontaktiere deinen Seiten-Administrator." -#: ../../addon/twitter/twitter.php:205 +#: ../../addon/twitter/twitter.php:206 msgid "" "At this Hubzilla instance the Twitter plugin was enabled but you have not " "yet connected your account to your Twitter account. To do so click the " @@ -10702,15 +10992,15 @@ msgid "" " be posted to Twitter." msgstr "Auf diesem Hubzilla-Server ist das Twitter-Plugin aktiviert, aber Du hast Dich hier noch nicht mit Deinem Twitter-Konto verbunden. Um dies zu tun, klicke die Schaltfläche unten, um eine PIN von Twitter zu erhalten, die Du dann in das Eingabefeld darunter einfügen und das Formular bestätigen musst. Nur Deine öffentlichen Beiträge werden auf Twitter geteilt." -#: ../../addon/twitter/twitter.php:207 +#: ../../addon/twitter/twitter.php:208 msgid "Log in with Twitter" msgstr "Mit Twitter anmelden" -#: ../../addon/twitter/twitter.php:210 +#: ../../addon/twitter/twitter.php:211 msgid "Copy the PIN from Twitter here" msgstr "PIN von Twitter hier her kopieren" -#: ../../addon/twitter/twitter.php:237 +#: ../../addon/twitter/twitter.php:238 msgid "" "Note: Due your privacy settings (Hide your profile " "details from unknown viewers?) the link potentially included in public " @@ -10718,27 +11008,35 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist." -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "Allow posting to Twitter" msgstr "Erlaube die Veröffentlichung bei Twitter" -#: ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:243 msgid "" "If enabled your public postings can be posted to the associated Twitter " "account" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden." +msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." + +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "" + +#: ../../addon/twitter/twitter.php:252 msgid "Send public postings to Twitter by default" msgstr "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen" -#: ../../addon/twitter/twitter.php:246 +#: ../../addon/twitter/twitter.php:252 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" -msgstr "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden." +msgstr "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden." -#: ../../addon/twitter/twitter.php:264 +#: ../../addon/twitter/twitter.php:270 msgid "Twitter Post Settings" msgstr "Twitter-Beitragseinstellungen" @@ -10962,8 +11260,8 @@ msgstr "Erweitertes Teilen von Identitäten" #: ../../addon/sendzid/sendzid.php:26 msgid "" "Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Hubzilla-Servern geteilt." +"identity is only shared with $Projectname sites." +msgstr "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit $Projectname - Servern geteilt." #: ../../addon/tictac/tictac.php:21 msgid "Three Dimensional Tic-Tac-Toe" @@ -11240,7 +11538,7 @@ msgstr "Ein Konto wurde für Sie erstellt." #: ../../addon/ldapauth/ldapauth.php:68 msgid "Authentication successful but rejected: account creation is disabled." -msgstr "Authentifizierung war erfolgreich wurde aber abgewiesen! Das Anlegen von Accounts wurde deaktiviert." +msgstr "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert." #: ../../addon/opensearch/opensearch.php:26 #, php-format @@ -11346,11 +11644,11 @@ msgstr "Transsexuell" msgid "Hermaphrodite" msgstr "Zwitter" -#: ../../include/selectors.php:49 ../../include/channel.php:1484 +#: ../../include/selectors.php:49 ../../include/channel.php:1485 msgid "Neuter" msgstr "Geschlechtslos" -#: ../../include/selectors.php:49 ../../include/channel.php:1486 +#: ../../include/selectors.php:49 ../../include/channel.php:1487 msgid "Non-specific" msgstr "unklar" @@ -11533,12 +11831,12 @@ msgstr "Frag mich mal" #: ../../include/conversation.php:169 #, php-format msgid "likes %1$s's %2$s" -msgstr "" +msgstr "gefällt %1$ss %2$s" #: ../../include/conversation.php:172 #, php-format msgid "doesn't like %1$s's %2$s" -msgstr "" +msgstr "missfällt %1$ss %2$s" #: ../../include/conversation.php:212 #, php-format @@ -11550,8 +11848,8 @@ msgstr "%1$s ist jetzt mit %2$s verbunden" msgid "%1$s poked %2$s" msgstr "%1$s stupste %2$s an" -#: ../../include/conversation.php:251 ../../include/text.php:1104 -#: ../../include/text.php:1109 +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 msgid "poked" msgstr "stupste" @@ -11753,32 +12051,32 @@ msgstr "Spam" msgid "Posts flagged as SPAM" msgstr "Nachrichten, die als SPAM markiert wurden" -#: ../../include/conversation.php:1811 ../../include/nav.php:413 +#: ../../include/conversation.php:1811 ../../include/nav.php:381 msgid "Status Messages and Posts" msgstr "Statusnachrichten und Beiträge" -#: ../../include/conversation.php:1824 ../../include/nav.php:426 +#: ../../include/conversation.php:1824 ../../include/nav.php:394 msgid "Profile Details" msgstr "Profil-Details" -#: ../../include/conversation.php:1834 ../../include/nav.php:436 +#: ../../include/conversation.php:1834 ../../include/nav.php:404 #: ../../include/photos.php:655 msgid "Photo Albums" msgstr "Fotoalben" -#: ../../include/conversation.php:1842 ../../include/nav.php:444 +#: ../../include/conversation.php:1842 ../../include/nav.php:412 msgid "Files and Storage" msgstr "Dateien und Speicher" -#: ../../include/conversation.php:1879 ../../include/nav.php:479 +#: ../../include/conversation.php:1879 ../../include/nav.php:447 msgid "Bookmarks" msgstr "Lesezeichen" -#: ../../include/conversation.php:1882 ../../include/nav.php:482 +#: ../../include/conversation.php:1882 ../../include/nav.php:450 msgid "Saved Bookmarks" msgstr "Gespeicherte Lesezeichen" -#: ../../include/conversation.php:1893 ../../include/nav.php:493 +#: ../../include/conversation.php:1893 ../../include/nav.php:461 msgid "View Cards" msgstr "Karten anzeigen" @@ -11786,11 +12084,11 @@ msgstr "Karten anzeigen" msgid "articles" msgstr "Artikel" -#: ../../include/conversation.php:1904 ../../include/nav.php:504 +#: ../../include/conversation.php:1904 ../../include/nav.php:472 msgid "View Articles" msgstr "Artikel anzeigen" -#: ../../include/conversation.php:1915 ../../include/nav.php:516 +#: ../../include/conversation.php:1915 ../../include/nav.php:484 msgid "View Webpages" msgstr "Webseiten anzeigen" @@ -11862,368 +12160,368 @@ 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/import.php:105 +#: ../../include/import.php:106 msgid "Cloned channel not found. Import failed." msgstr "Geklonter Kanal nicht gefunden. Import fehlgeschlagen." -#: ../../include/text.php:478 +#: ../../include/text.php:492 msgid "prev" msgstr "vorherige" -#: ../../include/text.php:480 +#: ../../include/text.php:494 msgid "first" msgstr "erste" -#: ../../include/text.php:509 +#: ../../include/text.php:523 msgid "last" msgstr "letzte" -#: ../../include/text.php:512 +#: ../../include/text.php:526 msgid "next" msgstr "nächste" -#: ../../include/text.php:523 +#: ../../include/text.php:537 msgid "older" msgstr "älter" -#: ../../include/text.php:525 +#: ../../include/text.php:539 msgid "newer" msgstr "neuer" -#: ../../include/text.php:947 +#: ../../include/text.php:961 msgid "No connections" msgstr "Keine Verbindungen" -#: ../../include/text.php:972 +#: ../../include/text.php:993 #, php-format msgid "View all %s connections" msgstr "Alle Verbindungen von %s anzeigen" -#: ../../include/text.php:1104 ../../include/text.php:1109 +#: ../../include/text.php:1129 ../../include/text.php:1133 msgid "poke" msgstr "anstupsen" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "ping" msgstr "anpingen" -#: ../../include/text.php:1110 +#: ../../include/text.php:1134 msgid "pinged" msgstr "pingte" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prod" msgstr "knuffen" -#: ../../include/text.php:1111 +#: ../../include/text.php:1135 msgid "prodded" msgstr "knuffte" -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slap" msgstr "ohrfeigen" -#: ../../include/text.php:1112 +#: ../../include/text.php:1136 msgid "slapped" msgstr "ohrfeigte" -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "finger" msgstr "befummeln" -#: ../../include/text.php:1113 +#: ../../include/text.php:1137 msgid "fingered" msgstr "befummelte" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuff" msgstr "eine Abfuhr erteilen" -#: ../../include/text.php:1114 +#: ../../include/text.php:1138 msgid "rebuffed" msgstr "zurückgewiesen" -#: ../../include/text.php:1126 +#: ../../include/text.php:1161 msgid "happy" msgstr "glücklich" -#: ../../include/text.php:1127 +#: ../../include/text.php:1162 msgid "sad" msgstr "traurig" -#: ../../include/text.php:1128 +#: ../../include/text.php:1163 msgid "mellow" msgstr "sanft" -#: ../../include/text.php:1129 +#: ../../include/text.php:1164 msgid "tired" msgstr "müde" -#: ../../include/text.php:1130 +#: ../../include/text.php:1165 msgid "perky" msgstr "frech" -#: ../../include/text.php:1131 +#: ../../include/text.php:1166 msgid "angry" msgstr "sauer" -#: ../../include/text.php:1132 +#: ../../include/text.php:1167 msgid "stupefied" msgstr "verblüfft" -#: ../../include/text.php:1133 +#: ../../include/text.php:1168 msgid "puzzled" msgstr "verwirrt" -#: ../../include/text.php:1134 +#: ../../include/text.php:1169 msgid "interested" msgstr "interessiert" -#: ../../include/text.php:1135 +#: ../../include/text.php:1170 msgid "bitter" msgstr "verbittert" -#: ../../include/text.php:1136 +#: ../../include/text.php:1171 msgid "cheerful" msgstr "fröhlich" -#: ../../include/text.php:1137 +#: ../../include/text.php:1172 msgid "alive" msgstr "lebendig" -#: ../../include/text.php:1138 +#: ../../include/text.php:1173 msgid "annoyed" msgstr "verärgert" -#: ../../include/text.php:1139 +#: ../../include/text.php:1174 msgid "anxious" msgstr "unruhig" -#: ../../include/text.php:1140 +#: ../../include/text.php:1175 msgid "cranky" msgstr "schrullig" -#: ../../include/text.php:1141 +#: ../../include/text.php:1176 msgid "disturbed" msgstr "verstört" -#: ../../include/text.php:1142 +#: ../../include/text.php:1177 msgid "frustrated" msgstr "frustriert" -#: ../../include/text.php:1143 +#: ../../include/text.php:1178 msgid "depressed" msgstr "deprimiert" -#: ../../include/text.php:1144 +#: ../../include/text.php:1179 msgid "motivated" msgstr "motiviert" -#: ../../include/text.php:1145 +#: ../../include/text.php:1180 msgid "relaxed" msgstr "entspannt" -#: ../../include/text.php:1146 +#: ../../include/text.php:1181 msgid "surprised" msgstr "überrascht" -#: ../../include/text.php:1320 ../../include/js_strings.php:70 +#: ../../include/text.php:1360 ../../include/js_strings.php:76 msgid "Monday" msgstr "Montag" -#: ../../include/text.php:1320 ../../include/js_strings.php:71 +#: ../../include/text.php:1360 ../../include/js_strings.php:77 msgid "Tuesday" msgstr "Dienstag" -#: ../../include/text.php:1320 ../../include/js_strings.php:72 +#: ../../include/text.php:1360 ../../include/js_strings.php:78 msgid "Wednesday" msgstr "Mittwoch" -#: ../../include/text.php:1320 ../../include/js_strings.php:73 +#: ../../include/text.php:1360 ../../include/js_strings.php:79 msgid "Thursday" msgstr "Donnerstag" -#: ../../include/text.php:1320 ../../include/js_strings.php:74 +#: ../../include/text.php:1360 ../../include/js_strings.php:80 msgid "Friday" msgstr "Freitag" -#: ../../include/text.php:1320 ../../include/js_strings.php:75 +#: ../../include/text.php:1360 ../../include/js_strings.php:81 msgid "Saturday" msgstr "Samstag" -#: ../../include/text.php:1320 ../../include/js_strings.php:69 +#: ../../include/text.php:1360 ../../include/js_strings.php:75 msgid "Sunday" msgstr "Sonntag" -#: ../../include/text.php:1324 ../../include/js_strings.php:45 +#: ../../include/text.php:1364 ../../include/js_strings.php:51 msgid "January" msgstr "Januar" -#: ../../include/text.php:1324 ../../include/js_strings.php:46 +#: ../../include/text.php:1364 ../../include/js_strings.php:52 msgid "February" msgstr "Februar" -#: ../../include/text.php:1324 ../../include/js_strings.php:47 +#: ../../include/text.php:1364 ../../include/js_strings.php:53 msgid "March" msgstr "März" -#: ../../include/text.php:1324 ../../include/js_strings.php:48 +#: ../../include/text.php:1364 ../../include/js_strings.php:54 msgid "April" msgstr "April" -#: ../../include/text.php:1324 +#: ../../include/text.php:1364 msgid "May" msgstr "Mai" -#: ../../include/text.php:1324 ../../include/js_strings.php:50 +#: ../../include/text.php:1364 ../../include/js_strings.php:56 msgid "June" msgstr "Juni" -#: ../../include/text.php:1324 ../../include/js_strings.php:51 +#: ../../include/text.php:1364 ../../include/js_strings.php:57 msgid "July" msgstr "Juli" -#: ../../include/text.php:1324 ../../include/js_strings.php:52 +#: ../../include/text.php:1364 ../../include/js_strings.php:58 msgid "August" msgstr "August" -#: ../../include/text.php:1324 ../../include/js_strings.php:53 +#: ../../include/text.php:1364 ../../include/js_strings.php:59 msgid "September" msgstr "September" -#: ../../include/text.php:1324 ../../include/js_strings.php:54 +#: ../../include/text.php:1364 ../../include/js_strings.php:60 msgid "October" msgstr "Oktober" -#: ../../include/text.php:1324 ../../include/js_strings.php:55 +#: ../../include/text.php:1364 ../../include/js_strings.php:61 msgid "November" msgstr "November" -#: ../../include/text.php:1324 ../../include/js_strings.php:56 +#: ../../include/text.php:1364 ../../include/js_strings.php:62 msgid "December" msgstr "Dezember" -#: ../../include/text.php:1388 ../../include/text.php:1392 +#: ../../include/text.php:1428 ../../include/text.php:1432 msgid "Unknown Attachment" msgstr "Unbekannter Anhang" -#: ../../include/text.php:1394 ../../include/feedutils.php:825 +#: ../../include/text.php:1434 ../../include/feedutils.php:852 msgid "unknown" msgstr "unbekannt" -#: ../../include/text.php:1430 +#: ../../include/text.php:1470 msgid "remove category" msgstr "Kategorie entfernen" -#: ../../include/text.php:1504 +#: ../../include/text.php:1544 msgid "remove from file" msgstr "aus der Datei entfernen" -#: ../../include/text.php:1623 ../../include/message.php:12 +#: ../../include/text.php:1686 ../../include/message.php:12 msgid "Download binary/encrypted content" msgstr "Binären/verschlüsselten Inhalt herunterladen" -#: ../../include/text.php:1782 ../../include/language.php:364 +#: ../../include/text.php:1848 ../../include/language.php:397 msgid "default" msgstr "Standard" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "Page layout" msgstr "Seiten-Layout" -#: ../../include/text.php:1790 +#: ../../include/text.php:1856 msgid "You can create your own with the layouts tool" msgstr "Mit dem Gestaltungswerkzeug kannst Du Deine eigenen Layouts erstellen" -#: ../../include/text.php:1801 +#: ../../include/text.php:1867 msgid "HTML" msgstr "HTML" -#: ../../include/text.php:1804 +#: ../../include/text.php:1870 msgid "Comanche Layout" msgstr "Comanche-Layout" -#: ../../include/text.php:1809 +#: ../../include/text.php:1875 msgid "PHP" msgstr "PHP" -#: ../../include/text.php:1818 +#: ../../include/text.php:1884 msgid "Page content type" msgstr "Art des Seiteninhalts" -#: ../../include/text.php:1951 +#: ../../include/text.php:2017 msgid "activity" msgstr "Aktivität" -#: ../../include/text.php:2014 +#: ../../include/text.php:2099 msgid "a-z, 0-9, -, and _ only" msgstr "nur a-z, 0-9, - und _" -#: ../../include/text.php:2285 +#: ../../include/text.php:2399 msgid "Design Tools" msgstr "Gestaltungswerkzeuge" -#: ../../include/text.php:2291 +#: ../../include/text.php:2405 msgid "Pages" msgstr "Seiten" -#: ../../include/text.php:2313 +#: ../../include/text.php:2427 msgid "Import website..." msgstr "Webseite importieren..." -#: ../../include/text.php:2314 +#: ../../include/text.php:2428 msgid "Select folder to import" msgstr "Ordner zum Importieren auswählen" -#: ../../include/text.php:2315 +#: ../../include/text.php:2429 msgid "Import from a zipped folder:" msgstr "Aus einem gezippten Ordner importieren:" -#: ../../include/text.php:2316 +#: ../../include/text.php:2430 msgid "Import from cloud files:" msgstr "Aus Cloud-Dateien importieren:" -#: ../../include/text.php:2317 +#: ../../include/text.php:2431 msgid "/cloud/channel/path/to/folder" msgstr "/Cloud/Kanal/Pfad/zum/Ordner" -#: ../../include/text.php:2318 +#: ../../include/text.php:2432 msgid "Enter path to website files" msgstr "Pfad zu Webseitendateien eingeben" -#: ../../include/text.php:2319 +#: ../../include/text.php:2433 msgid "Select folder" msgstr "Ordner auswählen" -#: ../../include/text.php:2320 +#: ../../include/text.php:2434 msgid "Export website..." msgstr "Webseite exportieren..." -#: ../../include/text.php:2321 +#: ../../include/text.php:2435 msgid "Export to a zip file" msgstr "In eine ZIP-Datei exportieren" -#: ../../include/text.php:2322 +#: ../../include/text.php:2436 msgid "website.zip" msgstr "website.zip" -#: ../../include/text.php:2323 +#: ../../include/text.php:2437 msgid "Enter a name for the zip file." msgstr "Geben Sie einen für die ZIP-Datei ein." -#: ../../include/text.php:2324 +#: ../../include/text.php:2438 msgid "Export to cloud files" msgstr "In Cloud-Dateien exportieren" -#: ../../include/text.php:2325 +#: ../../include/text.php:2439 msgid "/path/to/export/folder" msgstr "/Pfad/zum/exportierenden/Ordner" -#: ../../include/text.php:2326 +#: ../../include/text.php:2440 msgid "Enter a path to a cloud files destination." msgstr "Gib den Pfad zu einem Datei-Speicherort in der Cloud ein." -#: ../../include/text.php:2327 +#: ../../include/text.php:2441 msgid "Specify folder" msgstr "Ordner angeben" @@ -12271,7 +12569,7 @@ msgstr "Gemeinsame Verbindungen" msgid "View all %d common connections" msgstr "Zeige alle %d gemeinsamen Verbindungen" -#: ../../include/markdown.php:158 ../../include/bbcode.php:339 +#: ../../include/markdown.php:158 ../../include/bbcode.php:343 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "%1$s schrieb den folgenden %2$s %3$s" @@ -12375,182 +12673,182 @@ msgstr "Gib eine URL ein:" 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/js_strings.php:27 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "vor" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "in" -#: ../../include/js_strings.php:29 +#: ../../include/js_strings.php:33 msgid "timeago.suffixAgo" msgstr "NONE" -#: ../../include/js_strings.php:30 +#: ../../include/js_strings.php:34 msgid "timeago.suffixFromNow" msgstr "NONE" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "weniger als einer Minute" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "ungefähr einer Minute" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d Minuten" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "ungefähr einer Stunde" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "ungefähr %d Stunden" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "einem Tag" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d Tagen" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "ungefähr einem Monat" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d Monaten" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "ungefähr einem Jahr" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d Jahren" -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:43 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:49 +#: ../../include/js_strings.php:55 msgctxt "long" msgid "May" msgstr "Mai" -#: ../../include/js_strings.php:57 +#: ../../include/js_strings.php:63 msgid "Jan" msgstr "Jan" -#: ../../include/js_strings.php:58 +#: ../../include/js_strings.php:64 msgid "Feb" msgstr "Feb" -#: ../../include/js_strings.php:59 +#: ../../include/js_strings.php:65 msgid "Mar" msgstr "Mär" -#: ../../include/js_strings.php:60 +#: ../../include/js_strings.php:66 msgid "Apr" msgstr "Apr" -#: ../../include/js_strings.php:61 +#: ../../include/js_strings.php:67 msgctxt "short" msgid "May" msgstr "Mai" -#: ../../include/js_strings.php:62 +#: ../../include/js_strings.php:68 msgid "Jun" msgstr "Jun" -#: ../../include/js_strings.php:63 +#: ../../include/js_strings.php:69 msgid "Jul" msgstr "Jul" -#: ../../include/js_strings.php:64 +#: ../../include/js_strings.php:70 msgid "Aug" msgstr "Aug" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:71 msgid "Sep" msgstr "Sep" -#: ../../include/js_strings.php:66 +#: ../../include/js_strings.php:72 msgid "Oct" msgstr "Okt" -#: ../../include/js_strings.php:67 +#: ../../include/js_strings.php:73 msgid "Nov" msgstr "Nov" -#: ../../include/js_strings.php:68 +#: ../../include/js_strings.php:74 msgid "Dec" msgstr "Dez" -#: ../../include/js_strings.php:76 +#: ../../include/js_strings.php:82 msgid "Sun" msgstr "So" -#: ../../include/js_strings.php:77 +#: ../../include/js_strings.php:83 msgid "Mon" msgstr "Mo" -#: ../../include/js_strings.php:78 +#: ../../include/js_strings.php:84 msgid "Tue" msgstr "Di" -#: ../../include/js_strings.php:79 +#: ../../include/js_strings.php:85 msgid "Wed" msgstr "Mi" -#: ../../include/js_strings.php:80 +#: ../../include/js_strings.php:86 msgid "Thu" msgstr "Do" -#: ../../include/js_strings.php:81 +#: ../../include/js_strings.php:87 msgid "Fri" msgstr "Fr" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:88 msgid "Sat" msgstr "Sa" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:89 msgctxt "calendar" msgid "today" msgstr "heute" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:90 msgctxt "calendar" msgid "month" msgstr "Monat" -#: ../../include/js_strings.php:85 +#: ../../include/js_strings.php:91 msgctxt "calendar" msgid "week" msgstr "Woche" -#: ../../include/js_strings.php:86 +#: ../../include/js_strings.php:92 msgctxt "calendar" msgid "day" msgstr "Tag" -#: ../../include/js_strings.php:87 +#: ../../include/js_strings.php:93 msgctxt "calendar" msgid "All day" msgstr "Ganztägig" @@ -12598,61 +12896,61 @@ msgstr "%1$s hat ein aktualisiertes %2$s, %3$s wurde verändert." msgid "Item was not found." msgstr "Beitrag wurde nicht gefunden." -#: ../../include/attach.php:553 +#: ../../include/attach.php:554 msgid "No source file." msgstr "Keine Quelldatei." -#: ../../include/attach.php:575 +#: ../../include/attach.php:576 msgid "Cannot locate file to replace" msgstr "Kann Datei zum Ersetzen nicht finden" -#: ../../include/attach.php:593 +#: ../../include/attach.php:595 msgid "Cannot locate file to revise/update" msgstr "Kann Datei zum Prüfen/Aktualisieren nicht finden" -#: ../../include/attach.php:734 +#: ../../include/attach.php:737 #, php-format msgid "File exceeds size limit of %d" msgstr "Datei überschreitet das Größen-Limit von %d" -#: ../../include/attach.php:754 +#: ../../include/attach.php:758 #, 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:929 +#: ../../include/attach.php:940 msgid "File upload failed. Possible system limit or action terminated." msgstr "Datei-Upload fehlgeschlagen. Mögliche Systembegrenzung oder abgebrochener Prozess." -#: ../../include/attach.php:948 +#: ../../include/attach.php:959 msgid "Stored file could not be verified. Upload failed." msgstr "Gespeichert Datei konnte nicht verifiziert werden. Upload abgebrochen." -#: ../../include/attach.php:1022 ../../include/attach.php:1038 +#: ../../include/attach.php:1033 ../../include/attach.php:1049 msgid "Path not available." msgstr "Pfad nicht verfügbar." -#: ../../include/attach.php:1087 ../../include/attach.php:1252 +#: ../../include/attach.php:1098 ../../include/attach.php:1263 msgid "Empty pathname" msgstr "Leere Pfadangabe" -#: ../../include/attach.php:1113 +#: ../../include/attach.php:1124 msgid "duplicate filename or path" msgstr "doppelter Dateiname oder Pfad" -#: ../../include/attach.php:1138 +#: ../../include/attach.php:1149 msgid "Path not found." msgstr "Pfad nicht gefunden." -#: ../../include/attach.php:1206 +#: ../../include/attach.php:1217 msgid "mkdir failed." msgstr "mkdir fehlgeschlagen." -#: ../../include/attach.php:1210 +#: ../../include/attach.php:1221 msgid "database storage failed." msgstr "Speichern in der Datenbank fehlgeschlagen." -#: ../../include/attach.php:1258 +#: ../../include/attach.php:1269 msgid "Empty path" msgstr "Leere Pfadangabe" @@ -12699,34 +12997,34 @@ msgstr "Nur für akzeptierte Verbindungen sichtbar." msgid "Visible to specific connections." msgstr "Sichtbar für bestimmte Verbindungen." -#: ../../include/items.php:4117 +#: ../../include/items.php:4147 msgid "Privacy group is empty." msgstr "Gruppe ist leer." -#: ../../include/items.php:4124 +#: ../../include/items.php:4154 #, php-format msgid "Privacy group: %s" msgstr "Gruppe: %s" -#: ../../include/items.php:4136 +#: ../../include/items.php:4166 msgid "Connection not found." msgstr "Die Verbindung wurde nicht gefunden." -#: ../../include/items.php:4485 +#: ../../include/items.php:4515 msgid "profile photo" msgstr "Profilfoto" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 #, php-format msgid "[Edited %s]" msgstr "[%s wurde bearbeitet]" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Post" msgstr "Beitrag" -#: ../../include/items.php:4676 +#: ../../include/items.php:4706 msgctxt "edit_activity" msgid "Comment" msgstr "Kommentar" @@ -12745,7 +13043,7 @@ msgstr "Name ist zu lang" #: ../../include/channel.php:188 msgid "No account identifier" -msgstr "Keine Account-Kennung" +msgstr "Keine Konten-Kennung" #: ../../include/channel.php:200 msgid "Nickname is required." @@ -12771,11 +13069,11 @@ msgstr "Neues Profil erstellen" msgid "Visible to everybody" msgstr "Für jeden sichtbar" -#: ../../include/channel.php:1396 ../../include/channel.php:1523 +#: ../../include/channel.php:1396 ../../include/channel.php:1524 msgid "Gender:" msgstr "Geschlecht:" -#: ../../include/channel.php:1398 ../../include/channel.php:1578 +#: ../../include/channel.php:1398 ../../include/channel.php:1579 msgid "Homepage:" msgstr "Homepage:" @@ -12783,108 +13081,112 @@ msgstr "Homepage:" msgid "Online Now" msgstr "gerade online" -#: ../../include/channel.php:1482 +#: ../../include/channel.php:1452 +msgid "Change your profile photo" +msgstr "Dein Profilfoto ändern" + +#: ../../include/channel.php:1483 msgid "Trans" -msgstr "" +msgstr "Trans" -#: ../../include/channel.php:1528 +#: ../../include/channel.php:1529 msgid "Like this channel" msgstr "Dieser Kanal gefällt mir" -#: ../../include/channel.php:1552 +#: ../../include/channel.php:1553 msgid "j F, Y" msgstr "j. F Y" -#: ../../include/channel.php:1553 +#: ../../include/channel.php:1554 msgid "j F" msgstr "j. F" -#: ../../include/channel.php:1560 +#: ../../include/channel.php:1561 msgid "Birthday:" msgstr "Geburtstag:" -#: ../../include/channel.php:1573 +#: ../../include/channel.php:1574 #, php-format msgid "for %1$d %2$s" msgstr "seit %1$d %2$s" -#: ../../include/channel.php:1576 +#: ../../include/channel.php:1577 msgid "Sexual Preference:" msgstr "Sexuelle Orientierung:" -#: ../../include/channel.php:1582 +#: ../../include/channel.php:1583 msgid "Tags:" msgstr "Schlagworte:" -#: ../../include/channel.php:1584 +#: ../../include/channel.php:1585 msgid "Political Views:" msgstr "Politische Ansichten:" -#: ../../include/channel.php:1586 +#: ../../include/channel.php:1587 msgid "Religion:" msgstr "Religion:" -#: ../../include/channel.php:1590 +#: ../../include/channel.php:1591 msgid "Hobbies/Interests:" msgstr "Hobbys/Interessen:" -#: ../../include/channel.php:1592 +#: ../../include/channel.php:1593 msgid "Likes:" msgstr "Gefällt:" -#: ../../include/channel.php:1594 +#: ../../include/channel.php:1595 msgid "Dislikes:" msgstr "Gefällt nicht:" -#: ../../include/channel.php:1596 +#: ../../include/channel.php:1597 msgid "Contact information and Social Networks:" msgstr "Kontaktinformation und soziale Netzwerke:" -#: ../../include/channel.php:1598 +#: ../../include/channel.php:1599 msgid "My other channels:" msgstr "Meine anderen Kanäle:" -#: ../../include/channel.php:1600 +#: ../../include/channel.php:1601 msgid "Musical interests:" msgstr "Musikalische Interessen:" -#: ../../include/channel.php:1602 +#: ../../include/channel.php:1603 msgid "Books, literature:" msgstr "Bücher, Literatur:" -#: ../../include/channel.php:1604 +#: ../../include/channel.php:1605 msgid "Television:" msgstr "Fernsehen:" -#: ../../include/channel.php:1606 +#: ../../include/channel.php:1607 msgid "Film/dance/culture/entertainment:" msgstr "Film/Tanz/Kultur/Unterhaltung:" -#: ../../include/channel.php:1608 +#: ../../include/channel.php:1609 msgid "Love/Romance:" msgstr "Liebe/Romantik:" -#: ../../include/channel.php:1610 +#: ../../include/channel.php:1611 msgid "Work/employment:" msgstr "Arbeit/Anstellung:" -#: ../../include/channel.php:1612 +#: ../../include/channel.php:1613 msgid "School/education:" msgstr "Schule/Ausbildung:" -#: ../../include/channel.php:1635 +#: ../../include/channel.php:1636 msgid "Like this thing" msgstr "Gefällt mir" -#: ../../include/event.php:23 ../../include/event.php:70 +#: ../../include/event.php:24 ../../include/event.php:71 msgid "l F d, Y \\@ g:i A" msgstr "l, d. F Y, H:i" -#: ../../include/event.php:31 ../../include/event.php:74 +#: ../../include/event.php:32 ../../include/event.php:75 msgid "Starts:" msgstr "Beginnt:" -#: ../../include/event.php:41 ../../include/event.php:78 +#: ../../include/event.php:42 ../../include/event.php:79 msgid "Finishes:" msgstr "Endet:" @@ -12892,167 +13194,175 @@ msgstr "Endet:" msgid "This event has been added to your calendar." msgstr "Dieser Termin wurde zu Deinem Kalender hinzugefügt" -#: ../../include/event.php:1220 +#: ../../include/event.php:1227 msgid "Not specified" msgstr "Keine Angabe" -#: ../../include/event.php:1221 +#: ../../include/event.php:1228 msgid "Needs Action" msgstr "Aktion erforderlich" -#: ../../include/event.php:1222 +#: ../../include/event.php:1229 msgid "Completed" msgstr "Abgeschlossen" -#: ../../include/event.php:1223 +#: ../../include/event.php:1230 msgid "In Process" msgstr "In Bearbeitung" -#: ../../include/event.php:1224 +#: ../../include/event.php:1231 msgid "Cancelled" msgstr "gestrichen" -#: ../../include/event.php:1303 ../../include/connections.php:684 +#: ../../include/event.php:1310 ../../include/connections.php:684 msgid "Home, Voice" msgstr "Zuhause, Sprache" -#: ../../include/event.php:1304 ../../include/connections.php:685 +#: ../../include/event.php:1311 ../../include/connections.php:685 msgid "Home, Fax" msgstr "Zuhause, Fax" -#: ../../include/event.php:1306 ../../include/connections.php:687 +#: ../../include/event.php:1313 ../../include/connections.php:687 msgid "Work, Voice" msgstr "Arbeit, Sprache" -#: ../../include/event.php:1307 ../../include/connections.php:688 +#: ../../include/event.php:1314 ../../include/connections.php:688 msgid "Work, Fax" msgstr "Arbeit, Fax" -#: ../../include/network.php:761 +#: ../../include/network.php:762 msgid "view full size" msgstr "In Vollbildansicht anschauen" -#: ../../include/network.php:1763 ../../include/network.php:1764 +#: ../../include/network.php:1769 ../../include/network.php:1770 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:1765 +#: ../../include/network.php:1771 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:1766 +#: ../../include/network.php:1772 msgid "GNU-Social" msgstr "GNU-Social" -#: ../../include/network.php:1767 +#: ../../include/network.php:1773 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:1770 +#: ../../include/network.php:1776 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:1771 +#: ../../include/network.php:1777 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:1772 +#: ../../include/network.php:1778 msgid "Zot" -msgstr "Zot!" +msgstr "Zot" -#: ../../include/network.php:1773 +#: ../../include/network.php:1779 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:1774 +#: ../../include/network.php:1780 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:1775 +#: ../../include/network.php:1781 msgid "MySpace" msgstr "MySpace" -#: ../../include/language.php:377 +#: ../../include/language.php:410 msgid "Select an alternate language" msgstr "Wähle eine alternative Sprache" -#: ../../include/acl_selectors.php:208 +#: ../../include/acl_selectors.php:113 msgid "Who can see this?" msgstr "Wer kann das sehen?" -#: ../../include/acl_selectors.php:209 +#: ../../include/acl_selectors.php:114 msgid "Custom selection" msgstr "Benutzerdefinierte Auswahl" -#: ../../include/acl_selectors.php:210 +#: ../../include/acl_selectors.php:115 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/acl_selectors.php:211 +#: ../../include/acl_selectors.php:116 msgid "Show" msgstr "Anzeigen" -#: ../../include/acl_selectors.php:212 +#: ../../include/acl_selectors.php:117 msgid "Don't show" msgstr "Nicht anzeigen" -#: ../../include/acl_selectors.php:245 +#: ../../include/acl_selectors.php:150 #, 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/dba/dba_driver.php:190 +#: ../../include/dba/dba_driver.php:178 #, 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/bbcode.php:194 ../../include/bbcode.php:1106 -#: ../../include/bbcode.php:1109 ../../include/bbcode.php:1114 -#: ../../include/bbcode.php:1117 ../../include/bbcode.php:1120 -#: ../../include/bbcode.php:1123 ../../include/bbcode.php:1128 -#: ../../include/bbcode.php:1131 ../../include/bbcode.php:1136 -#: ../../include/bbcode.php:1139 ../../include/bbcode.php:1142 -#: ../../include/bbcode.php:1145 +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 +#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 +#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 +#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 +#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 +#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 +#: ../../include/bbcode.php:1190 msgid "Image/photo" msgstr "Bild/Foto" -#: ../../include/bbcode.php:233 ../../include/bbcode.php:1156 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 msgid "Encrypted content" msgstr "Verschlüsselter Inhalt" -#: ../../include/bbcode.php:249 +#: ../../include/bbcode.php:253 #, php-format msgid "Install %1$s element %2$s" -msgstr "" +msgstr "Installiere %1$s Element %2$s" -#: ../../include/bbcode.php:253 +#: ../../include/bbcode.php:257 #, 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/bbcode.php:331 +#: ../../include/bbcode.php:335 msgid "card" msgstr "Karte" -#: ../../include/bbcode.php:333 +#: ../../include/bbcode.php:337 msgid "article" msgstr "Artikel" -#: ../../include/bbcode.php:416 ../../include/bbcode.php:424 +#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 msgid "Click to open/close" msgstr "Klicke zum Öffnen/Schließen" -#: ../../include/bbcode.php:424 +#: ../../include/bbcode.php:428 msgid "spoiler" msgstr "Spoiler" -#: ../../include/bbcode.php:1094 +#: ../../include/bbcode.php:441 +msgid "View article" +msgstr "Artikel ansehen" + +#: ../../include/bbcode.php:441 +msgid "View summary" +msgstr "Zusammenfassung ansehen" + +#: ../../include/bbcode.php:1139 msgid "$1 wrote:" msgstr "$1 schrieb:" @@ -13072,7 +13382,7 @@ msgstr "Eingebetteter Inhalt" msgid "Embedding disabled" msgstr "Einbetten deaktiviert" -#: ../../include/zid.php:340 +#: ../../include/zid.php:346 #, php-format msgid "OpenWebAuth: %1$s welcomes %2$s" msgstr "OpenWebAuth: %1$s heißt %2$s willkommen" @@ -13081,344 +13391,364 @@ msgstr "OpenWebAuth: %1$s heißt %2$s willkommen" msgid "General Features" msgstr "Allgemeine Funktionen" -#: ../../include/features.php:59 -msgid "Multiple Profiles" -msgstr "Mehrfachprofile" - #: ../../include/features.php:60 -msgid "Ability to create multiple profiles" -msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" - -#: ../../include/features.php:68 msgid "Advanced Profiles" msgstr "Erweiterte Profile" -#: ../../include/features.php:69 +#: ../../include/features.php:61 msgid "Additional profile sections and selections" msgstr "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung" -#: ../../include/features.php:77 +#: ../../include/features.php:69 msgid "Profile Import/Export" msgstr "Profil-Import/Export" -#: ../../include/features.php:78 +#: ../../include/features.php:70 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/features.php:86 +#: ../../include/features.php:78 msgid "Web Pages" msgstr "Webseiten" -#: ../../include/features.php:87 +#: ../../include/features.php:79 msgid "Provide managed web pages on your channel" msgstr "Ermöglicht das Erstellen von Webseiten in Deinem Kanal" -#: ../../include/features.php:96 +#: ../../include/features.php:88 msgid "Provide a wiki for your channel" msgstr "Stelle ein Wiki in Deinem Kanal zur Verfügung" -#: ../../include/features.php:113 +#: ../../include/features.php:105 msgid "Private Notes" msgstr "Private Notizen" -#: ../../include/features.php:114 +#: ../../include/features.php:106 msgid "Enables a tool to store notes and reminders (note: not encrypted)" msgstr "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)" -#: ../../include/features.php:123 +#: ../../include/features.php:115 msgid "Create personal planning cards" msgstr "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken" -#: ../../include/features.php:141 +#: ../../include/features.php:125 +msgid "Create interactive articles" +msgstr "Erstelle interaktive Artikel" + +#: ../../include/features.php:133 msgid "Navigation Channel Select" msgstr "Kanal-Auswahl in der Navigationsleiste" -#: ../../include/features.php:142 +#: ../../include/features.php:134 msgid "Change channels directly from within the navigation dropdown menu" msgstr "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü" -#: ../../include/features.php:150 +#: ../../include/features.php:142 msgid "Photo Location" msgstr "Aufnahmeort" -#: ../../include/features.php:151 +#: ../../include/features.php:143 msgid "If location data is available on uploaded photos, link this to a map." msgstr "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte" -#: ../../include/features.php:159 +#: ../../include/features.php:151 msgid "Access Controlled Chatrooms" msgstr "Zugriffskontrollierte Chaträume" -#: ../../include/features.php:160 +#: ../../include/features.php:152 msgid "Provide chatrooms and chat services with access control." msgstr "Bieten Sie Chaträume und Chatdienste mit Zugriffskontrolle an." -#: ../../include/features.php:169 -msgid "Provide alternate connection permission roles." -msgstr "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung." - -#: ../../include/features.php:177 +#: ../../include/features.php:161 msgid "Smart Birthdays" msgstr "Smarte Geburtstage" -#: ../../include/features.php:178 +#: ../../include/features.php:162 msgid "" "Make birthday events timezone aware in case your friends are scattered " "across the planet." msgstr "Stellt für Geburtstage einen Zeitzonenbezug her, falls deine Freunde über den ganzen Planeten verstreut sind." -#: ../../include/features.php:186 +#: ../../include/features.php:170 msgid "Event Timezone Selection" msgstr "Termin-Zeitzonenauswahl" -#: ../../include/features.php:187 +#: ../../include/features.php:171 msgid "Allow event creation in timezones other than your own." msgstr "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen." -#: ../../include/features.php:195 +#: ../../include/features.php:180 +msgid "Premium Channel" +msgstr "Premium-Kanal" + +#: ../../include/features.php:181 +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/features.php:189 msgid "Advanced Directory Search" msgstr "Erweiterte Verzeichnissuche" -#: ../../include/features.php:196 +#: ../../include/features.php:190 msgid "Allows creation of complex directory search queries" msgstr "Ermöglicht die Erstellung komplexer Verzeichnis-Suchabfragen" -#: ../../include/features.php:204 +#: ../../include/features.php:198 msgid "Advanced Theme and Layout Settings" msgstr "Erweiterte Design- und Layout-Einstellungen" -#: ../../include/features.php:205 +#: ../../include/features.php:199 msgid "Allows fine tuning of themes and page layouts" msgstr "Erlaubt die Feineinstellung von Designs und Seitenlayouts" -#: ../../include/features.php:215 +#: ../../include/features.php:208 +msgid "Access Control and Permissions" +msgstr "Zugriffskontrolle und Berechtigungen" + +#: ../../include/features.php:212 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Gruppen" + +#: ../../include/features.php:213 +msgid "Enable management and selection of privacy groups" +msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" + +#: ../../include/features.php:221 +msgid "Multiple Profiles" +msgstr "Mehrfachprofile" + +#: ../../include/features.php:222 +msgid "Ability to create multiple profiles" +msgstr "Ermöglicht das Anlegen mehrerer Profile pro Kanal" + +#: ../../include/features.php:232 +msgid "Provide alternate connection permission roles." +msgstr "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung." + +#: ../../include/features.php:240 +msgid "OAuth Clients" +msgstr "OAuth Clients" + +#: ../../include/features.php:241 +msgid "Manage authenticatication tokens for mobile and remote apps." +msgstr "Verwalte Tokens für den Zugriff von mobilen bzw. externen Anwendungen." + +#: ../../include/features.php:249 +msgid "Access Tokens" +msgstr "Zugangstokens" + +#: ../../include/features.php:250 +msgid "Create access tokens so that non-members can access private content." +msgstr "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte." + +#: ../../include/features.php:261 msgid "Post Composition Features" msgstr "Nachbearbeitungsfunktionen" -#: ../../include/features.php:219 +#: ../../include/features.php:265 msgid "Large Photos" msgstr "Große Fotos" -#: ../../include/features.php:220 +#: ../../include/features.php:266 msgid "" "Include large (1024px) photo thumbnails in posts. If not enabled, use small " "(640px) photo thumbnails" msgstr "Große Vorschaubilder (1024px) in Beiträgen anzeigen. Falls nicht aktiviert, werden kleine Vorschaubilder (640px) verwendet." -#: ../../include/features.php:229 +#: ../../include/features.php:275 msgid "Automatically import channel content from other channels or feeds" msgstr "Ermöglicht den automatischen Import von Inhalten für diesen Kanal von anderen Kanälen oder Feeds" -#: ../../include/features.php:237 +#: ../../include/features.php:283 msgid "Even More Encryption" msgstr "Noch mehr Verschlüsselung" -#: ../../include/features.php:238 +#: ../../include/features.php:284 msgid "" "Allow optional encryption of content end-to-end with a shared secret key" msgstr "Ermöglicht optional die zusätzliche Verschlüsselung von Inhalten (Ende-zu-Ende mit geteiltem Schlüssel)" -#: ../../include/features.php:246 +#: ../../include/features.php:292 msgid "Enable Voting Tools" msgstr "Umfragewerkzeuge aktivieren" -#: ../../include/features.php:247 +#: ../../include/features.php:293 msgid "Provide a class of post which others can vote on" msgstr "Aktiviert die Umfragewerkzeuge, um anderen die Möglichkeit zu geben, einem Beitrag zuzustimmen, ihn abzulehnen oder sich zu enthalten. (Muss im Beitrag selbst noch aktiviert werden.)" -#: ../../include/features.php:255 +#: ../../include/features.php:301 msgid "Disable Comments" msgstr "Kommentare deaktivieren" -#: ../../include/features.php:256 +#: ../../include/features.php:302 msgid "Provide the option to disable comments for a post" msgstr "Ermöglicht, die Kommentarfunktion für einzelne Beiträge abzuschalten" -#: ../../include/features.php:264 +#: ../../include/features.php:310 msgid "Delayed Posting" msgstr "Verzögertes Senden" -#: ../../include/features.php:265 +#: ../../include/features.php:311 msgid "Allow posts to be published at a later date" msgstr "Ermöglicht es, Beiträge zu einem späteren Zeitpunkt zu veröffentlichen" -#: ../../include/features.php:273 +#: ../../include/features.php:319 msgid "Content Expiration" msgstr "Verfall von Inhalten" -#: ../../include/features.php:274 +#: ../../include/features.php:320 msgid "Remove posts/comments and/or private messages at a future time" msgstr "Ermöglicht das automatische Löschen von Beiträgen, Kommentaren und/oder privaten Nachrichten zu einem zukünftigen Datum." -#: ../../include/features.php:282 +#: ../../include/features.php:328 msgid "Suppress Duplicate Posts/Comments" msgstr "Doppelte Beiträge unterdrücken" -#: ../../include/features.php:283 +#: ../../include/features.php:329 msgid "" "Prevent posts with identical content to be published with less than two " "minutes in between submissions." msgstr "Verhindert, dass innerhalb von zwei Minuten Beiträge mit identischem Inhalt veröffentlicht werden." -#: ../../include/features.php:294 +#: ../../include/features.php:340 msgid "Network and Stream Filtering" msgstr "Netzwerk- und Stream-Filter" -#: ../../include/features.php:298 +#: ../../include/features.php:344 msgid "Search by Date" msgstr "Suche nach Datum" -#: ../../include/features.php:299 +#: ../../include/features.php:345 msgid "Ability to select posts by date ranges" msgstr "Möglichkeit, Beiträge nach Zeiträumen auszuwählen" -#: ../../include/features.php:307 ../../include/group.php:328 -msgid "Privacy Groups" -msgstr "Gruppen" - -#: ../../include/features.php:308 -msgid "Enable management and selection of privacy groups" -msgstr "Auswahl und Verwaltung von Gruppen für Kanäle aktivieren" - -#: ../../include/features.php:317 +#: ../../include/features.php:355 msgid "Save search terms for re-use" msgstr "Ermöglicht das Abspeichern von Suchbegriffen zur Wiederverwendung" -#: ../../include/features.php:325 +#: ../../include/features.php:363 msgid "Network Personal Tab" msgstr "Persönlicher Netzwerkreiter" -#: ../../include/features.php:326 +#: ../../include/features.php:364 msgid "Enable tab to display only Network posts that you've interacted on" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast" -#: ../../include/features.php:334 +#: ../../include/features.php:372 msgid "Network New Tab" msgstr "Netzwerkreiter Neu" -#: ../../include/features.php:335 +#: ../../include/features.php:373 msgid "Enable tab to display all new Network activity" msgstr "Aktiviert einen Reiter in der Grid-Ansicht, der alle neuen Netzwerkaktivitäten anzeigt" -#: ../../include/features.php:343 +#: ../../include/features.php:381 msgid "Affinity Tool" msgstr "Beziehungs-Tool" -#: ../../include/features.php:344 +#: ../../include/features.php:382 msgid "Filter stream activity by depth of relationships" msgstr "Aktiviert ein Werkzeug in der Grid-Ansicht, das den Stream nach Grad der Beziehung filtern kann" -#: ../../include/features.php:353 +#: ../../include/features.php:391 msgid "Show friend and connection suggestions" msgstr "Freund- und Verbindungsvorschläge anzeigen" -#: ../../include/features.php:361 +#: ../../include/features.php:399 msgid "Connection Filtering" msgstr "Filter für Verbindungen" -#: ../../include/features.php:362 +#: ../../include/features.php:400 msgid "Filter incoming posts from connections based on keywords/content" msgstr "Ermöglicht die Filterung eingehender Beiträge anhand von Schlüsselwörtern (muss an der Verbindung konfiguriert werden)" -#: ../../include/features.php:374 +#: ../../include/features.php:412 msgid "Post/Comment Tools" msgstr "Beitrag-/Kommentar-Tools" -#: ../../include/features.php:379 -msgid "Use markdown for editing posts" -msgstr "Verwende Markdown zum Bearbeiten von Beiträgen" - -#: ../../include/features.php:387 +#: ../../include/features.php:416 msgid "Community Tagging" msgstr "Gemeinschaftliches Verschlagworten" -#: ../../include/features.php:388 +#: ../../include/features.php:417 msgid "Ability to tag existing posts" msgstr "Ermöglicht das Verschlagworten existierender Beiträge" -#: ../../include/features.php:396 +#: ../../include/features.php:425 msgid "Post Categories" msgstr "Beitrags-Kategorien" -#: ../../include/features.php:397 +#: ../../include/features.php:426 msgid "Add categories to your posts" msgstr "Aktiviert Kategorien für Beiträge" -#: ../../include/features.php:405 +#: ../../include/features.php:434 msgid "Emoji Reactions" msgstr "Emoji Reaktionen" -#: ../../include/features.php:406 +#: ../../include/features.php:435 msgid "Add emoji reaction ability to posts" msgstr "Aktiviert Emoji-Reaktionen für Beiträge" -#: ../../include/features.php:415 +#: ../../include/features.php:444 msgid "Ability to file posts under folders" msgstr "Möglichkeit, Beiträge in Verzeichnissen zu sammeln" -#: ../../include/features.php:423 +#: ../../include/features.php:452 msgid "Dislike Posts" msgstr "Gefällt-mir-nicht-Beiträge" -#: ../../include/features.php:424 +#: ../../include/features.php:453 msgid "Ability to dislike posts/comments" msgstr "Aktiviert die „Gefällt mir nicht“-Schaltfläche" -#: ../../include/features.php:432 +#: ../../include/features.php:461 msgid "Star Posts" msgstr "Beiträge mit Sternchen versehen" -#: ../../include/features.php:433 +#: ../../include/features.php:462 msgid "Ability to mark special posts with a star indicator" msgstr "Ermöglicht die lokale Markierung spezieller Beiträge mit einem Sternchen-Symbol" -#: ../../include/features.php:441 +#: ../../include/features.php:470 msgid "Tag Cloud" msgstr "Schlagwort-Wolke" -#: ../../include/features.php:442 +#: ../../include/features.php:471 msgid "Provide a personal tag cloud on your channel page" msgstr "Aktiviert die Anzeige einer Schlagwort-Wolke (Tag Cloud) auf Deiner Kanal-Seite" -#: ../../include/features.php:453 -msgid "Premium Channel" -msgstr "Premium-Kanal" - -#: ../../include/features.php:454 -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:377 ../../include/taxonomy.php:398 +#: ../../include/taxonomy.php:384 ../../include/taxonomy.php:405 msgid "Tags" msgstr "Schlagwörter" -#: ../../include/taxonomy.php:483 +#: ../../include/taxonomy.php:487 msgid "Keywords" msgstr "Schlüsselwörter" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "have" msgstr "habe" -#: ../../include/taxonomy.php:504 +#: ../../include/taxonomy.php:508 msgid "has" msgstr "hat" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "want" msgstr "will" -#: ../../include/taxonomy.php:505 +#: ../../include/taxonomy.php:509 msgid "wants" msgstr "will" -#: ../../include/taxonomy.php:506 +#: ../../include/taxonomy.php:510 msgid "likes" msgstr "gefällt" -#: ../../include/taxonomy.php:507 +#: ../../include/taxonomy.php:511 msgid "dislikes" msgstr "missfällt" @@ -13450,256 +13780,200 @@ msgstr "Bitte gib die benötigten Informationen ein." msgid "Failed to store account information." msgstr "Speichern der Nutzerkontodaten fehlgeschlagen." -#: ../../include/account.php:291 +#: ../../include/account.php:313 #, php-format msgid "Registration confirmation for %s" msgstr "Registrierungsbestätigung für %s" -#: ../../include/account.php:360 +#: ../../include/account.php:382 #, php-format msgid "Registration request at %s" msgstr "Registrierungsanfrage auf %s" -#: ../../include/account.php:382 +#: ../../include/account.php:404 msgid "your registration password" msgstr "Dein Registrierungspasswort" -#: ../../include/account.php:388 ../../include/account.php:450 +#: ../../include/account.php:410 ../../include/account.php:472 #, php-format msgid "Registration details for %s" msgstr "Registrierungsdetails für %s" -#: ../../include/account.php:461 +#: ../../include/account.php:483 msgid "Account approved." msgstr "Nutzerkonto bestätigt." -#: ../../include/account.php:501 +#: ../../include/account.php:523 #, php-format msgid "Registration revoked for %s" msgstr "Registrierung für %s wurde widerrufen" -#: ../../include/account.php:780 ../../include/account.php:782 +#: ../../include/account.php:802 ../../include/account.php:804 msgid "Click here to upgrade." msgstr "Klicke hier, um das Upgrade durchzuführen." -#: ../../include/account.php:788 +#: ../../include/account.php:810 msgid "This action exceeds the limits set by your subscription plan." msgstr "Diese Aktion überschreitet die Grenzen Ihres Abonnements." -#: ../../include/account.php:793 +#: ../../include/account.php:815 msgid "This action is not available under your subscription plan." msgstr "Diese Aktion ist in Ihrem Abonnement nicht verfügbar." -#: ../../include/datetime.php:150 +#: ../../include/datetime.php:134 msgid "Birthday" msgstr "Geburtstag" -#: ../../include/datetime.php:152 +#: ../../include/datetime.php:134 msgid "Age: " msgstr "Alter:" -#: ../../include/datetime.php:154 +#: ../../include/datetime.php:134 msgid "YYYY-MM-DD or MM-DD" msgstr "JJJJ-MM-TT oder MM-TT" -#: ../../include/datetime.php:298 +#: ../../include/datetime.php:238 msgid "less than a second ago" msgstr "Vor weniger als einer Sekunde" -#: ../../include/datetime.php:316 +#: ../../include/datetime.php:256 #, php-format msgctxt "e.g. 22 hours ago, 1 minute ago" msgid "%1$d %2$s ago" msgstr "vor %1$d %2$s" -#: ../../include/datetime.php:327 +#: ../../include/datetime.php:267 msgctxt "relative_date" msgid "year" msgid_plural "years" msgstr[0] "Jahr" msgstr[1] "Jahre" -#: ../../include/datetime.php:330 +#: ../../include/datetime.php:270 msgctxt "relative_date" msgid "month" msgid_plural "months" msgstr[0] "Monat" msgstr[1] "Monate" -#: ../../include/datetime.php:333 +#: ../../include/datetime.php:273 msgctxt "relative_date" msgid "week" msgid_plural "weeks" msgstr[0] "Woche" msgstr[1] "Wochen" -#: ../../include/datetime.php:336 +#: ../../include/datetime.php:276 msgctxt "relative_date" msgid "day" msgid_plural "days" msgstr[0] "Tag" msgstr[1] "Tage" -#: ../../include/datetime.php:339 +#: ../../include/datetime.php:279 msgctxt "relative_date" msgid "hour" msgid_plural "hours" msgstr[0] "Stunde" msgstr[1] "Stunden" -#: ../../include/datetime.php:342 +#: ../../include/datetime.php:282 msgctxt "relative_date" msgid "minute" msgid_plural "minutes" msgstr[0] "Minute" msgstr[1] "Minuten" -#: ../../include/datetime.php:345 +#: ../../include/datetime.php:285 msgctxt "relative_date" msgid "second" msgid_plural "seconds" msgstr[0] "Sekunde" msgstr[1] "Sekunden" -#: ../../include/datetime.php:579 +#: ../../include/datetime.php:514 #, php-format msgid "%1$s's birthday" msgstr "%1$ss Geburtstag" -#: ../../include/datetime.php:580 +#: ../../include/datetime.php:515 #, php-format msgid "Happy Birthday %1$s" msgstr "Alles Gute zum Geburtstag, %1$s" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Remote authentication" msgstr "Über Konto auf anderem Server einloggen" -#: ../../include/nav.php:98 +#: ../../include/nav.php:96 msgid "Click to authenticate to your home hub" msgstr "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren" -#: ../../include/nav.php:105 -msgid "Network Activity" -msgstr "Netzwerk-Aktivitäten" - -#: ../../include/nav.php:107 -msgid "Mark all activity notifications seen" -msgstr "Alle Benachrichtigungen als gesehen markieren" - -#: ../../include/nav.php:109 -msgid "Channel home" -msgstr "Mein Kanal" - -#: ../../include/nav.php:110 -msgid "View your channel home" -msgstr "Zeige Deine Kanalseite an" - -#: ../../include/nav.php:111 -msgid "Mark all channel notifications seen" -msgstr "Markiere alle Kanal-Benachrichtigungen als angesehen" - -#: ../../include/nav.php:116 -msgid "Registrations" -msgstr "Registrierungen" - -#: ../../include/nav.php:119 -msgid "Notifications" -msgstr "Benachrichtigungen" - -#: ../../include/nav.php:120 -msgid "View all notifications" -msgstr "Alle Benachrichtigungen ansehen" - -#: ../../include/nav.php:121 -msgid "Mark all system notifications seen" -msgstr "Markiere alle System-Benachrichtigungen als gesehen" - -#: ../../include/nav.php:123 -msgid "Private mail" -msgstr "Persönliche Mail" - -#: ../../include/nav.php:124 -msgid "View your private messages" -msgstr "Zeige Deine persönlichen Nachrichten an" - -#: ../../include/nav.php:125 -msgid "Mark all private messages seen" -msgstr "Markiere alle persönlichen Nachrichten als gesehen" - -#: ../../include/nav.php:131 -msgid "Event Calendar" -msgstr "Terminkalender" - -#: ../../include/nav.php:136 ../../include/nav.php:222 +#: ../../include/nav.php:102 ../../include/nav.php:190 msgid "Manage Your Channels" msgstr "Verwalte Deine Kanäle" -#: ../../include/nav.php:139 ../../include/nav.php:224 +#: ../../include/nav.php:105 ../../include/nav.php:192 msgid "Account/Channel Settings" msgstr "Konto-/Kanal-Einstellungen" -#: ../../include/nav.php:145 ../../include/nav.php:174 +#: ../../include/nav.php:111 ../../include/nav.php:140 msgid "End this session" msgstr "Beende diese Sitzung" -#: ../../include/nav.php:148 +#: ../../include/nav.php:114 msgid "Your profile page" msgstr "Deine Profilseite" -#: ../../include/nav.php:151 +#: ../../include/nav.php:117 msgid "Manage/Edit profiles" msgstr "Profile verwalten" -#: ../../include/nav.php:153 -msgid "Edit your profile" -msgstr "Profil bearbeiten" - -#: ../../include/nav.php:160 ../../include/nav.php:164 +#: ../../include/nav.php:126 ../../include/nav.php:130 msgid "Sign in" msgstr "Anmelden" -#: ../../include/nav.php:189 +#: ../../include/nav.php:157 msgid "Take me home" msgstr "Bringe mich nach Hause (eigener Kanal)" -#: ../../include/nav.php:191 +#: ../../include/nav.php:159 msgid "Log me out of this site" msgstr "Logge mich von dieser Seite aus" -#: ../../include/nav.php:196 +#: ../../include/nav.php:164 msgid "Create an account" msgstr "Erzeuge ein Konto" -#: ../../include/nav.php:208 +#: ../../include/nav.php:176 msgid "Help and documentation" msgstr "Hilfe und Dokumentation" -#: ../../include/nav.php:211 +#: ../../include/nav.php:179 msgid "Search site @name, #tag, ?docs, content" msgstr "Hub durchsuchen: @Name. #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/nav.php:231 +#: ../../include/nav.php:199 msgid "Site Setup and Configuration" msgstr "Seiten-Einrichtung und -Konfiguration" -#: ../../include/nav.php:322 +#: ../../include/nav.php:290 msgid "@name, #tag, ?doc, content" msgstr "@Name, #Schlagwort, ?Dokumentation, Inhalt" -#: ../../include/nav.php:323 +#: ../../include/nav.php:291 msgid "Please wait..." msgstr "Bitte warten..." -#: ../../include/nav.php:329 +#: ../../include/nav.php:297 msgid "Add Apps" msgstr "Apps hinzufügen" -#: ../../include/nav.php:330 +#: ../../include/nav.php:298 msgid "Arrange Apps" msgstr "Apps anordnen" -#: ../../include/nav.php:331 +#: ../../include/nav.php:299 msgid "Toggle System Apps" msgstr "System-Apps umschalten" @@ -13730,19 +14004,23 @@ msgstr "%1$s hat %2$s auf %3$s veröffentlicht" msgid "Upload New Photos" msgstr "Neue Fotos hochladen" -#: ../../include/zot.php:675 +#: ../../include/zot.php:767 msgid "Invalid data packet" msgstr "Ungültiges Datenpaket" -#: ../../include/zot.php:702 +#: ../../include/zot.php:794 msgid "Unable to verify channel signature" msgstr "Konnte die Signatur des Kanals nicht verifizieren" -#: ../../include/zot.php:2409 +#: ../../include/zot.php:2529 #, php-format msgid "Unable to verify site signature for %s" msgstr "Kann die Signatur der Seite von %s nicht verifizieren" +#: ../../include/zot.php:4180 +msgid "invalid target signature" +msgstr "Ungültige Signatur des Ziels" + #: ../../include/group.php:22 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -13786,7 +14064,7 @@ msgstr "Ausgeloggt." msgid "Email validation is incomplete. Please check your email." msgstr "E-Mail-Bestätigung nicht abgeschlossen. Bitte prüfe Deine E-Mails (ggf. Spam-Filterung mit berücksichtigen)." -#: ../../include/auth.php:278 +#: ../../include/auth.php:279 msgid "Failed authentication" msgstr "Authentifizierung fehlgeschlagen" diff --git a/view/de-de/hstrings.php b/view/de-de/hstrings.php index e87f660f0..a96dd02b7 100644 --- a/view/de-de/hstrings.php +++ b/view/de-de/hstrings.php @@ -71,9 +71,8 @@ App::$strings["2. Enter my \$Projectname network address into the site searchbar App::$strings["or visit"] = "oder besuche"; App::$strings["3. Click [Connect]"] = "3. Klicke auf [Verbinden]"; App::$strings["Submit"] = "Absenden"; -App::$strings["Cards"] = "Karten"; -App::$strings["Add Article"] = "Artikel hinzufügen"; App::$strings["Articles"] = "Artikel"; +App::$strings["Add Article"] = "Artikel hinzufügen"; App::$strings["Item not found"] = "Element nicht gefunden"; App::$strings["Layout Name"] = "Layout-Name"; App::$strings["Layout Description (Optional)"] = "Layout-Beschreibung (optional)"; @@ -151,7 +150,8 @@ 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"] = "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["Welcome to hubzilla!"] = "Willkommen bei Hubzilla!"; +App::$strings["Welcome to Hubzilla!"] = "Willkommen bei Hubzilla!"; +App::$strings["You have got no unseen posts..."] = "Du hast keine ungelesenen Beiträge..."; App::$strings["Public access denied."] = "Öffentlichen Zugriff verweigert."; App::$strings["Search"] = "Suche"; App::$strings["Items tagged with: %s"] = "Beiträge mit Schlagwort: %s"; @@ -282,6 +282,7 @@ 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["Validate"] = "Überprüfe"; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Innerhalb von 48 Stunden nach einer Änderung des Passworts können keine Kanäle gelöscht werden."; App::$strings["Remove This Channel"] = "Diesen Kanal löschen"; App::$strings["WARNING: "] = "WARNUNG: "; @@ -319,7 +320,7 @@ 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["Your account email address must match this in order to use the web admin panel."] = "Die E-Mail-Adresse Deines Kontos 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"; @@ -412,10 +413,10 @@ App::$strings["Executing %s failed. Check system logs."] = "Ausführen von %s fe 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["No failed updates."] = "Keine fehlgeschlagenen Aktualisierungen."; App::$strings["Item not found."] = "Element nicht gefunden."; App::$strings["Plugin %s disabled."] = "Plug-In %s deaktiviert."; App::$strings["Plugin %s enabled."] = "Plug-In %s aktiviert."; @@ -542,6 +543,7 @@ App::$strings["Used to provide a member experience matched to technical comfort 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["Unfiltered HTML/CSS/JS is allowed"] = "Ungefiltertes HTML/CSS/JS ist erlaubt"; 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["Site Information"] = "Seiteninformationen"; @@ -558,6 +560,8 @@ App::$strings["Maximum size in bytes of uploaded images. Default is 0, which mea 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["Minimum age"] = "Mindestalter"; +App::$strings["Minimum age (in years) for who may register on this site."] = "Mindestalter (in Jahren) für alle, die sich auf dieser Website anmelden möchten."; 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."; @@ -575,6 +579,10 @@ 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["Site only Public Streams"] = "Öffentlichen Beitragsstrom auf diesen Server beschränken"; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "Erlaubt den Zugriff auf öffentliche Beiträge von ausschließlich dieser Website (diesem Server), wenn \"Öffentliche Beiträge importieren\" ausgeschaltet ist."; +App::$strings["Allow anybody on the internet to access the Public streams"] = "Allen im Internet Zugriff auf den öffentlichen Beitragsstrom erlauben"; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "Deaktiviert die erforderliche Authentifizierung vor dem Ansehen. 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"; @@ -604,6 +612,12 @@ 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["Public servers: Optional landing (marketing) webpage for new registrants"] = "Öffentliche Server: Optionale Einstiegsseite (landing page) für neue Mitglieder vor deren Anmeldung"; +App::$strings["Create this page first. Default is %s/register"] = "Erstelle zunächst die entsprechende Seite. Standard ist %s/register"; +App::$strings["Page to display after creating a new channel"] = "Seite, die nach Erstellung eines neuen Kanals angezeigt werden soll"; +App::$strings["Recommend: profiles, go, or settings"] = "Empfohlen: profiles, go oder settings"; +App::$strings["Optional: site location"] = "Optional: Standort der Website"; +App::$strings["Region or country"] = "Region oder Land"; 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"; @@ -754,8 +768,8 @@ App::$strings["If your channel is mirrored to multiple hubs, set this to your pr App::$strings["Also show new wall posts, private messages and connections under Notices"] = "Neue Pinnwand-Nachrichten, private Nachrichten und Verbindungen unter Benachrichtigungen anzeigen"; App::$strings["Notify me of events this many days in advance"] = "Benachrichtige mich zu Terminen so viele Tage im Voraus"; 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["Advanced Account/Page Type Settings"] = "Erweiterte Konten- und Seitenart-Einstellungen"; +App::$strings["Change the behaviour of this account for special situations"] = "Ändere das Verhalten dieses Kontos unter speziellen Umständen"; 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"; @@ -790,16 +804,18 @@ 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["Used to provide a member experience and additional features consistent with your comfort level"] = "Dies wird verwendet, um Dir eine Benutzererfahrung sowie zusätzliche Funktionen passend zu Deiner technischen Qualifikationsstufe zu bieten (Bedienkomfort beim Umgang mit Anwendungen)."; App::$strings["Remove Account"] = "Konto entfernen"; App::$strings["Remove this account including all its channels"] = "Dieses Konto inklusive all seiner Kanäle löschen"; App::$strings["Affinity Slider settings updated."] = "Die Beziehungsgrad-Schieberegler-Einstellungen wurden aktualisiert."; App::$strings["No feature settings configured"] = "Keine Funktions-Einstellungen konfiguriert"; App::$strings["Default maximum affinity level"] = "Voreinstellung für maximalen Beziehungsgrad"; +App::$strings["0-99 default 99"] = "0-99 - Standard 99"; App::$strings["Default minimum affinity level"] = "Voreinstellung für minimalen Beziehungsgrad"; +App::$strings["0-99 - default 0"] = "0-99 - Standard 0"; App::$strings["Affinity Slider Settings"] = "Beziehungsgrad-Schieberegler-Einstellungen"; -App::$strings["Feature/Addon Settings"] = "Funktions-/Addon-Einstellungen"; -App::$strings["No special theme for mobile devices"] = "Kein spezielles Design für mobile Geräte"; +App::$strings["Addon Settings"] = "Addon-Einstellungen"; +App::$strings["Please save/submit changes to any panel before opening another."] = "Bitte speichere alle Änderungen in diesem Bereich, bevor Du einen anderen öffnest."; App::$strings["%s - (Experimental)"] = "%s – (experimentell)"; App::$strings["Display Settings"] = "Anzeige-Einstellungen"; App::$strings["Theme Settings"] = "Design-Einstellungen"; @@ -807,7 +823,6 @@ App::$strings["Custom Theme Settings"] = "Benutzerdefinierte Design-Einstellunge App::$strings["Content Settings"] = "Inhaltseinstellungen"; App::$strings["Display Theme:"] = "Anzeige-Design:"; App::$strings["Select scheme"] = "Schema wählen"; -App::$strings["Mobile Theme:"] = "Design für mobile Geräte:"; 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"; @@ -1082,10 +1097,10 @@ 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["Use Photo for Profile"] = "Foto für Profil verwenden"; -App::$strings["Upload Profile Photo"] = "Lade neues Profilfoto hoch"; +App::$strings["Change Profile Photo"] = "Profilfoto ändern"; App::$strings["Use"] = "Verwenden"; -App::$strings["skip this step"] = "diesen Schritt überspringen"; -App::$strings["select a photo from your photo albums"] = "ein Foto aus meinen Fotoalben"; +App::$strings["Use a photo from your albums"] = "Ein Foto aus meinen Alben verwenden"; +App::$strings["Select existing photo"] = "Wähle ein vorhandenes Foto aus"; 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"; @@ -1164,6 +1179,7 @@ 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["Permission role"] = "Berechtigungsrolle"; +App::$strings["Loading"] = "Lädt..."; App::$strings["Add permission role"] = "Berechtigungsrolle hinzufügen"; App::$strings["This connection's primary address is"] = "Die Hauptadresse der Verbindung ist"; App::$strings["Available locations:"] = "Verfügbare Klone:"; @@ -1227,7 +1243,13 @@ 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["Please refresh page"] = "Bitte die Seite neu laden"; App::$strings["Unknown error"] = "Unbekannter Fehler"; +App::$strings["Token verification failed."] = "Überprüfung des Verifizierungscodes fehlgeschlagen."; +App::$strings["Email Verification Required"] = "Email-Überprüfung erforderlich"; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "Ein Verifizierungscode wurde an Deine Emailadresse versendet [%s]. Gib diesen Code hier ein, um die Überprüfung abzuschließen. Bedenke, dass die Zustellung der Mail einige Zeit dauern kann, und überprüfe ggf. auch Spam- und andere Filter-Ordner, falls die Nachricht nicht erscheint."; +App::$strings["Resend Email"] = "Email erneut versenden"; +App::$strings["Validation token"] = "Verifizierungscode"; App::$strings["Post not found."] = "Beitrag nicht gefunden."; App::$strings["post"] = "Beitrag"; App::$strings["comment"] = "Kommentar"; @@ -1319,6 +1341,21 @@ App::$strings["My other channels"] = "Meine anderen Kanäle"; App::$strings["Communications"] = "Kommunikation"; App::$strings["Profile Image"] = "Profilfoto:"; App::$strings["Edit Profiles"] = "Profile bearbeiten"; +App::$strings["This page is available only to site members"] = "Diese Seite ist nur für Mitglieder verfügbar"; +App::$strings["Welcome"] = "Willkommen"; +App::$strings["What would you like to do?"] = "Was möchtest Du gerne tun?"; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = "Bitte speichere diese Seite in Deinen Lesezeichen, falls Du später zu ihr zurückkehren möchtest."; +App::$strings["Upload a profile photo"] = "Ein Profilfoto hochladen"; +App::$strings["Upload a cover photo"] = "Ein Titelbild hochladen"; +App::$strings["Edit your default profile"] = "Dein Standardprofil bearbeiten"; +App::$strings["View friend suggestions"] = "Freundschafts- und Verbindungsvorschläge ansehen"; +App::$strings["View the channel directory"] = "Das Kanalverzeichnis ansehen"; +App::$strings["View/edit your channel settings"] = "Deine Kanaleinstellungen ansehen/bearbeiten"; +App::$strings["View the site or project documentation"] = "Die Website-/Projektdokumentation ansehen"; +App::$strings["Visit your channel homepage"] = "Deine Kanal-Startseite aufrufen"; +App::$strings["View your connections and/or add somebody whose address you already know"] = "Deine Verbindungen ansehen und/oder jemanden hinzufügen, dessen Kanal-Adresse Du bereits kennst"; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = "Deinen persönlichen Beitragsstrom ansehen (dieser kann leer sein, bis Du ein paar Verbindungen hinzugefügt hast)"; +App::$strings["View the public stream. Warning: this content is not moderated"] = "Den öffentlichen Beitragsstrom ansehen. Warnung: Diese Inhalte sind nicht moderiert."; App::$strings["Page link"] = "Seiten-Link"; App::$strings["Edit Webpage"] = "Webseite bearbeiten"; App::$strings["Create a new channel"] = "Neuen Kanal anlegen"; @@ -1330,6 +1367,7 @@ App::$strings["Make Default"] = "Zum Standard machen"; App::$strings["%d new messages"] = "%d neue Nachrichten"; App::$strings["%d new introductions"] = "%d neue Vorstellungen"; App::$strings["Delegated Channel"] = "Delegierte Kanäle"; +App::$strings["Cards"] = "Karten"; App::$strings["Add Card"] = "Karte hinzufügen"; App::$strings["This directory server requires an access token"] = "Dieser Verzeichnisserver benötigt einen Zugriffstoken"; App::$strings["About this site"] = "Über diese Seite"; @@ -1504,8 +1542,8 @@ App::$strings["Fetching URL returns error: %1\$s"] = "Abrufen der URL gab einen 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["Registration successful. Continue to create your first channel..."] = "Registrierung erfolgreich. Fahre fort, indem Du Deinen ersten Kanal anlegst..."; +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."; @@ -1522,7 +1560,7 @@ 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["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 Absenden des Formulars. Wenn Du auf eine Login-Seite zurückgeleitet wirst, prüfe bitte Deinen Posteingang auf neue Mails mit entsprechenden Hinweisen."; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Diese Website erfordert eine Email-Bestätigung. Bitte prüfe Deine Emails nach Ausfüllen und Absenden des Formulars, um weitere Hinweise zu bekommen."; App::$strings["Cover Photos"] = "Cover Foto"; App::$strings["female"] = "weiblich"; App::$strings["%1\$s updated her %2\$s"] = "%1\$s hat ihr %2\$s aktualisiert"; @@ -1530,7 +1568,7 @@ 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["Upload Cover Photo"] = "Cover Foto hochladen"; +App::$strings["Change Cover Photo"] = "Titelbild ändern"; App::$strings["Documentation Search"] = "Suche in der Dokumentation"; App::$strings["About"] = "Über"; App::$strings["Administrators"] = "Administratoren"; @@ -1568,6 +1606,8 @@ App::$strings["Show in your contacts shared folder"] = "Im geteilten Ordner Dein App::$strings["No channel."] = "Kein Kanal."; App::$strings["No connections in common."] = "Keine gemeinsamen Verbindungen."; App::$strings["View Common Connections"] = "Zeige gemeinsame Verbindungen"; +App::$strings["Email verification resent"] = "Email zur Verifizierung wurde erneut versendet"; +App::$strings["Unable to resend email verification message."] = "Erneutes Versenden der Email zur Verifizierung nicht möglich."; App::$strings["No connections."] = "Keine Verbindungen."; App::$strings["Visit %s's profile [%s]"] = "%ss Profil [%s] besuchen"; App::$strings["View Connections"] = "Verbindungen anzeigen"; @@ -1684,15 +1724,21 @@ App::$strings["\$Projectname Notification"] = "\$Projectname-Benachrichtigung"; App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Danke."; App::$strings["%s Administrator"] = "der Administrator von %s"; +App::$strings["This email was sent by %1\$s at %2\$s."] = "Diese Email wurde von %1\$s auf %2\$s gesendet."; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine Benachrichtigungseinstellungen unter folgendem Link an: %s"; +App::$strings["To stop receiving these messages, please adjust your %s."] = "Um diese Nachrichten nicht mehr zu erhalten, passe bitte Deine %s an."; App::$strings["%s "] = "%s "; App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Benachrichtigung] Neue Mail empfangen auf %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s hat Dir eine private Nachricht auf %3\$s gesendet."; App::$strings["%1\$s sent you %2\$s."] = "%1\$s hat Dir %2\$s geschickt."; App::$strings["a private message"] = "eine private Nachricht"; App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bitte besuche %s, um die private Nachricht anzusehen und/oder darauf zu antworten."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]einen %4\$s[/zrl] kommentiert"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]%4\$ss %5\$s[/zrl] kommentiert"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s hat [zrl=%3\$s]Deinen %4\$s[/zrl] kommentiert"; +App::$strings["commented on"] = "kommentierte"; +App::$strings["liked"] = "gefiel"; +App::$strings["disliked"] = "missfiel"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]ein %5\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = "%1\$s, %2\$s %3\$s [zrl=%4\$s]Dein %5\$s[/zrl]"; App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Moderierter Kommantar in Unterhaltung #%1\$d von %2\$s"; App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[\$Projectname:Benachrichtigung] Kommentar in Unterhaltung #%1\$d von %2\$s"; App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s hat eine Unterhaltung kommentiert, der Du folgst."; @@ -1727,6 +1773,8 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Bitte b App::$strings["[\$Projectname:Notify]"] = "[\$Projectname:Benachrichtigung]"; App::$strings["created a new post"] = "Neuer Beitrag wurde erzeugt"; App::$strings["commented on %s's post"] = "hat %s's Beitrag kommentiert"; +App::$strings["edited a post dated %s"] = "hat einen Beitrag vom %s bearbeitet"; +App::$strings["edited a comment dated %s"] = "hat einen Kommentar vom %s bearbeitet"; App::$strings["Wiki updated successfully"] = "Wiki erfolgreich aktualisiert"; App::$strings["Wiki files deleted successfully"] = "Wiki-Dateien erfolgreich gelöscht"; App::$strings["Update Error at %s"] = "Aktualisierungsfehler auf %s"; @@ -1865,6 +1913,18 @@ App::$strings["Suggestions"] = "Vorschläge"; App::$strings["See more..."] = "Mehr anzeigen …"; App::$strings["Saved Folders"] = "Gespeicherte Ordner"; App::$strings["Click to show more"] = "Klick, um mehr anzuzeigen"; +App::$strings["Profile Creation"] = "Profilerstellung"; +App::$strings["Upload profile photo"] = "Profilfoto hochladen"; +App::$strings["Upload cover photo"] = "Titelbild hochladen"; +App::$strings["Edit your profile"] = "Profil bearbeiten"; +App::$strings["Find and Connect with others"] = "Finden und Verbinden von/mit Anderen"; +App::$strings["Manage your connections"] = "Deine Verbindungen verwalten"; +App::$strings["Communicate"] = "Kommunizieren"; +App::$strings["View your channel homepage"] = "Deine Kanal-Startseite ansehen"; +App::$strings["View your network stream"] = "Deine Netzwerk-Aktivitäten ansehen"; +App::$strings["Documentation"] = "Dokumentation"; +App::$strings["View public stream. Warning: not moderated"] = "Öffentliche Beitragsaktivitäten ansehen. Warnung: Diese Inhalte sind nicht moderiert."; +App::$strings["New Member Links"] = "Links für neue Mitglieder"; 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"; @@ -1873,7 +1933,7 @@ App::$strings["Plugin Features"] = "Plug-In Funktionen"; 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["Addon settings"] = "Addon-Einstellungen"; App::$strings["Display settings"] = "Anzeige-Einstellungen"; App::$strings["Manage locations"] = "Klon-Adressen verwalten"; App::$strings["Export channel"] = "Kanal exportieren"; @@ -1886,6 +1946,7 @@ App::$strings["New Network Activity Notifications"] = "Benachrichtigungen für n App::$strings["View your network activity"] = "Zeige Deine Netzwerk-Aktivitäten"; App::$strings["Mark all notifications read"] = "Alle Benachrichtigungen als gesehen markieren"; App::$strings["Show new posts only"] = "Zeige nur neue Beiträge"; +App::$strings["Filter by name"] = "Nach Namen filtern"; App::$strings["New Home Activity"] = "Neue Kanal-Aktivitäten"; App::$strings["New Home Activity Notifications"] = "Benachrichtigungen für neue Kanal-Aktivitäten"; App::$strings["View your home activity"] = "Zeige Deine Kanal-Aktivitäten"; @@ -1909,7 +1970,7 @@ App::$strings["New Registrations"] = "Neue Registrierungen"; App::$strings["New Registrations Notifications"] = "Benachrichtigungen für neue Registrierungen"; App::$strings["Public Stream Notifications"] = "Benachrichtigungen für öffentlichen Beitrags-Stream"; App::$strings["View the public stream"] = "Zeige öffentlichen Beitrags-Stream"; -App::$strings["Loading"] = "Lädt..."; +App::$strings["Sorry, you have got no notifications at the moment"] = "Du hast momentan keine Benachrichtigungen"; App::$strings["Source channel not found."] = "Quellkanal nicht gefunden."; App::$strings["Create an account to access services and applications"] = "Erstelle ein Konto, um auf Dienste und Anwendungen zugreifen zu können."; App::$strings["Logout"] = "Abmelden"; @@ -1917,7 +1978,6 @@ App::$strings["Login/Email"] = "Anmelden/E-Mail"; App::$strings["Password"] = "Kennwort"; App::$strings["Remember me"] = "Angaben speichern"; App::$strings["Forgot your password?"] = "Passwort vergessen?"; -App::$strings["toggle mobile"] = "auf/von mobile Ansicht wechseln"; App::$strings["[\$Projectname] Website SSL error for %s"] = "[\$Projectname] Webseiten-SSL-Fehler für %s"; App::$strings["Website SSL certificate is not valid. Please correct."] = "Das SSL-Zertifikat der Website ist nicht gültig. Bitte beheben."; App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Cron-Jobs laufen nicht auf %s"; @@ -2005,11 +2065,11 @@ App::$strings["Preferred IDs Message"] = "Nachricht für bevorzugte IDs"; App::$strings["Message to display above preferred results."] = "Nachricht, die über den Ergebnissen mit den bevorzugten IDs angezeigt werden soll."; App::$strings["Uploaded by: "] = "Hochgeladen von: "; App::$strings["Drawn by: "] = "Gezeichnet von: "; +App::$strings["Use this image"] = ""; App::$strings["Or select from a free OpenClipart.org image:"] = "Oder wähle ein freies Bild von OpenClipart.org:"; App::$strings["Search Term"] = "Suchbegriff"; App::$strings["Unknown error. Please try again later."] = "Unbekannter Fehler. Bitte versuchen Sie es später erneut."; App::$strings["Profile photo updated successfully."] = "Profilfoto erfolgreich aktualisiert."; -App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$strings["Flag Adult Photos"] = "Nicht jugendfreie Fotos markieren"; App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Stellt eine Option zum Verstecken von Fotos mit unangemessenen Inhalten in der Standard-Albumansicht bereit"; App::$strings["Post to WordPress"] = "Auf WordPress posten"; @@ -2046,6 +2106,8 @@ App::$strings["Dreamwidth username"] = "Dreamwidth-Benutzername"; App::$strings["Dreamwidth password"] = "Dreamwidth-Passwort"; App::$strings["Post to Dreamwidth by default"] = "Standardmäßig auf auf Dreamwidth posten"; App::$strings["Dreamwidth Post Settings"] = "Dreamwidth-Beitragseinstellungen"; +App::$strings["New registration"] = ""; +App::$strings["Message sent to %s. New account registration: %s"] = "Nachricht gesendet an %s. Neue Kontoregistrierung: %s"; App::$strings["Hubzilla Directory Stats"] = "Hubzilla-Verzeichnisstatistiken"; App::$strings["Total Hubs"] = "Hubs insgesamt"; App::$strings["Hubzilla Hubs"] = "Hubzilla Hubs"; @@ -2132,8 +2194,8 @@ App::$strings["kiss"] = "küssen"; App::$strings["kissed"] = "geküsst"; App::$strings["tempt"] = "verlocken"; App::$strings["tempted"] = "verlockt"; -App::$strings["raise eyebrows at"] = ""; -App::$strings["raised their eyebrows at"] = ""; +App::$strings["raise eyebrows at"] = "Augenbrauen hochziehen"; +App::$strings["raised their eyebrows at"] = "zog die Augenbrauen hoch"; App::$strings["insult"] = "beleidigen"; App::$strings["insulted"] = "beleidigt"; App::$strings["praise"] = "loben"; @@ -2152,8 +2214,8 @@ App::$strings["fuck"] = "ficken"; App::$strings["fucked"] = "gefickt"; App::$strings["bonk"] = ""; App::$strings["bonked"] = ""; -App::$strings["declare undying love for"] = ""; -App::$strings["declared undying love for"] = ""; +App::$strings["declare undying love for"] = "erkläre unsterbliche Liebe"; +App::$strings["declared undying love for"] = "erklärte unsterbliche Liebe"; App::$strings["Diaspora Protocol Settings updated."] = "Diaspora Protokoll Einstellungen aktualisiert"; App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = "Das Diaspora-Protokoll unterstützt keine Server-unabhängigen Identitäten. Verbindungen, die Du mit diesem Netzwerk eingehst, können von anderen Orten (Klonen) dieses Kanals aus unerreichbar sein."; App::$strings["Enable the Diaspora protocol for this channel"] = "Das Diaspora Protokoll für diesen Kanal aktivieren"; @@ -2164,8 +2226,8 @@ App::$strings["Followed hashtags (comma separated, do not include the #)"] = "Ve App::$strings["Diaspora Protocol Settings"] = "Diaspora Protokoll Einstellungen"; App::$strings["No username found in import file."] = "Es wurde kein Nutzername in der importierten Datei gefunden."; App::$strings["Unable to create a unique channel address. Import failed."] = "Es war nicht möglich, eine eindeutige Kanal-Adresse zu erzeugen. Der Import ist fehlgeschlagen."; -App::$strings["Your account on %s will expire in a few days."] = "Dein Account auf %s wird in ein paar Tagen ablaufen."; -App::$strings["Your $Productname test account is about to expire."] = "Dein $Productname Test-Account wird bald auslaufen."; +App::$strings["Your account on %s will expire in a few days."] = "Dein Konto auf %s wird in ein paar Tagen ablaufen."; +App::$strings["Your $Productname test account is about to expire."] = "Dein $Productname Test-Konto wird bald auslaufen."; App::$strings["Enable Rainbowtag"] = "Rainbowtag aktivieren"; App::$strings["Rainbowtag Settings"] = "Rainbowtag-Einstellungen"; App::$strings["Rainbowtag Settings saved."] = "Rainbowtag-Einstellungen gespeichert."; @@ -2187,9 +2249,9 @@ App::$strings["Select default avatar image if none was found at Gravatar. See RE App::$strings["Rating of images"] = "Bewertungen der Bilder"; App::$strings["Select the appropriate avatar rating for your site. See README"] = ""; App::$strings["Gravatar settings updated."] = "Gravatar-Einstellungen aktualisiert."; -App::$strings["Hubzilla File Storage Import"] = ""; -App::$strings["This will import all your cloud files from another server."] = ""; -App::$strings["Hubzilla Server base URL"] = ""; +App::$strings["Hubzilla File Storage Import"] = "Hubzilla-Datenspeicher-Import"; +App::$strings["This will import all your cloud files from another server."] = "Hiermit werden alle Deine Cloud-Dateien von einem anderen Server importiert."; +App::$strings["Hubzilla Server base URL"] = "Basis-URL des Habzilla-Servers"; App::$strings["Since modified date yyyy-mm-dd"] = ""; App::$strings["Until modified date yyyy-mm-dd"] = ""; App::$strings["Recent Channel/Profile Viewers"] = "Kürzliche Kanal/Profil Besucher"; @@ -2208,6 +2270,7 @@ App::$strings["Mail sent."] = "Mail gesendet."; App::$strings["Sending of mail failed."] = "Senden der E-Mail fehlgeschlagen."; App::$strings["Mail Test"] = "Mail Test"; App::$strings["Message subject"] = "Betreff der Nachricht"; +App::$strings["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen"; App::$strings["View Larger"] = "Größer anzeigen"; App::$strings["Tile Server URL"] = "Kachelserver-URL"; App::$strings["A list of public tile servers"] = "Eine Liste öffentlicher Kachelserver"; @@ -2258,7 +2321,7 @@ App::$strings["Send public postings to Hubzilla channel by default"] = ""; App::$strings["Hubzilla API Path"] = "Hubzilla-API-Pfad"; App::$strings["Hubzilla login name"] = "Hubzilla-Anmeldename"; App::$strings["Hubzilla channel name"] = "Hubzilla-Kanalname"; -App::$strings["Hubzilla Crosspost Settings"] = ""; +App::$strings["Hubzilla Crosspost Settings"] = "Hubzilla Crosspost Einstellungen"; App::$strings["Logfile archive directory"] = "Verzeichnis der Logdatei"; App::$strings["Directory to store rotated logs"] = "Verzeichnis, in dem rotierte Logs gespeichert werden sollen"; App::$strings["Logfile size in bytes before rotating"] = "zu erreichende Logdateigröße in Bytes, bevor rotiert wird"; @@ -2269,12 +2332,12 @@ App::$strings["Friendica Server base URL"] = "BasisURL des Friendica Servers"; App::$strings["Friendica Login Username"] = "Friendica-Anmeldebenutzername"; App::$strings["Friendica Login Password"] = "Friendica-Anmeldepasswort"; App::$strings["ActivityPub"] = "ActivityPub"; -App::$strings["ActivityPub Protocol Settings updated."] = ""; +App::$strings["ActivityPub Protocol Settings updated."] = "ActivityPub Protokoll Einstellungen aktualisiert"; App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; -App::$strings["Enable the ActivityPub protocol for this channel"] = ""; -App::$strings["Send multi-media HTML articles"] = ""; -App::$strings["Not supported by some microblog services such as Mastodon"] = ""; -App::$strings["ActivityPub Protocol Settings"] = ""; +App::$strings["Enable the ActivityPub protocol for this channel"] = "Aktiviere das ActivityPub Protokoll für diesen Kanal"; +App::$strings["Send multi-media HTML articles"] = "Multimedia HTML Artikel versenden"; +App::$strings["Not supported by some microblog services such as Mastodon"] = "Wird von einigen Microblogging-Plattformen wie Mastodon nicht unterstützt"; +App::$strings["ActivityPub Protocol Settings"] = "ActivityPub Protokoll Einstellungen"; App::$strings["Project Servers and Resources"] = "Projektserver und -ressourcen"; App::$strings["Project Creator and Tech Lead"] = "Projektersteller und Technischer Leiter"; App::$strings["Admin, developer, directorymin, support bloke"] = "Administrator, Entwickler, Verzeichnis Betreibender, Supportleistende"; @@ -2343,9 +2406,9 @@ App::$strings["Cancel GNU social Connection"] = "GNU social Verbindung trennen"; App::$strings["Currently connected to: "] = "Momentan verbunden mit:"; App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; App::$strings["Allow posting to GNU social"] = "Erlaube die Veröffentlichung bei GNU social"; -App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Account veröffentlicht werden."; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen GNU social Konto veröffentlicht werden."; App::$strings["Post to GNU social by default"] = "Standardmäßig bei GNU social veröffentlichen"; -App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Account veröffentlicht."; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = "Wenn aktiv werden all deine öffentlichen Beiträge standardmäßig bei dem verbundenen GNU social Konto veröffentlicht."; App::$strings["Clear OAuth configuration"] = "OAuth Konfiguration löschen"; App::$strings["GNU social Post Settings"] = "GNU social Einstellungen"; App::$strings["API URL"] = "API-URL"; @@ -2357,9 +2420,9 @@ App::$strings["Invalid game."] = "Ungültiges Spiel."; App::$strings["You are not a player in this game."] = "Sie sind kein Spieler in diesem Spiel."; App::$strings["You must be a local channel to create a game."] = "Um ein Spiel zu eröffnen, musst du ein lokaler Kanal sein"; App::$strings["You must select one opponent that is not yourself."] = "Du musst einen Gegner wählen, der nicht du selbst ist"; -App::$strings["You must select white or black."] = "Sie müssen weiß oder schwarz auswählen."; +App::$strings["Random color chosen."] = ""; App::$strings["Error creating new game."] = "Fehler beim Erstellen eines neuen Spiels."; -App::$strings["Requested channel is not available."] = "Angeforderte Kanal nicht verfügbar."; +App::$strings["Requested channel is not available."] = "Angeforderter Kanal nicht verfügbar."; App::$strings["You must select a local channel /chess/channelname"] = "Du musst einen lokalen Kanal/Schach(Kanalnamen aufwählen"; App::$strings["Enable notifications"] = "Benachrichtigungen aktivieren"; App::$strings["Post to Twitter"] = "Bei Twitter veröffentlichen"; @@ -2370,9 +2433,11 @@ App::$strings["Log in with Twitter"] = "Mit Twitter anmelden"; App::$strings["Copy the PIN from Twitter here"] = "PIN von Twitter hier her kopieren"; App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = "Hinweis: Entsprechend Deiner Privatsphären-Einstellungen (Profil-Details vor nicht angemeldeten Besuchern verbergen?) kann ein ggf. zu Twitter geteilter Link Besucher auf eine leere Seite führen, die darüber informiert, dass der Zugriff zu Deinem Profil eingeschränkt ist."; App::$strings["Allow posting to Twitter"] = "Erlaube die Veröffentlichung bei Twitter"; -App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden."; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; +App::$strings["Twitter post length"] = ""; +App::$strings["Maximum tweet length"] = ""; App::$strings["Send public postings to Twitter by default"] = "Standardmäßig öffentliche Beiträge bei Twitter veröffentlichen"; -App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wenn aktiv können deine öffentlichen Beiträge bei dem verbundenen Twitter Account veröffentlicht werden."; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = "Wenn aktiv werden deine öffentlichen Beiträge bei dem verbundenen Twitter Konto veröffentlicht werden."; App::$strings["Twitter Post Settings"] = "Twitter-Beitragseinstellungen"; App::$strings["Deactivate the feature"] = "Diese Funktion abschalten"; App::$strings["Hide the button and show the smilies directly."] = "Verstecke die Schaltfläche und zeige die Smilies direkt an."; @@ -2422,7 +2487,7 @@ App::$strings["If you see this icon you can be sure that the sender is who it sa App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = "Vorsicht! Es kann sein, dass jemand versucht, eine Nachricht zu fälschen! Diese Nachricht muss nicht unbedingt vom angegebenen Absender stammen!"; App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Willkommen zu Hubzilla! Möchtest Du eine Tour der Benutzeroberfläche angezeigt bekommen?

Du kannst zu jeder Zeit pausieren und fortsetzen, wo Du aufgehört hast, indem Du die Seite neu lädtst, oder zu einer anderen Seite springst.

Du kannst auc durch das Drücken der Enter-Taste weitergehen."; App::$strings["Extended Identity Sharing"] = "Erweitertes Teilen von Identitäten"; -App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with sites in the matrix."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit Hubzilla-Servern geteilt."; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = "Teile Deine Identität mit allen Webseiten im Internet. Ist dies deaktiviert, wird Deine Identität nur mit \$Projectname - Servern geteilt."; App::$strings["Three Dimensional Tic-Tac-Toe"] = "Dreidimensionales Tic-Tac-Toe"; App::$strings["3D Tic-Tac-Toe"] = "3D Tic-Tac-Toe"; App::$strings["New game"] = "Neues Spiel"; @@ -2489,7 +2554,7 @@ App::$strings["Mirror all public posts"] = "Öffentliche Beiträge spiegeln"; App::$strings["Pump.io Post Settings"] = "Pump.io-Beitragseinstellungen"; App::$strings["PumpIO Settings saved."] = "PumpIO-Einstellungen gespeichert."; App::$strings["An account has been created for you."] = "Ein Konto wurde für Sie erstellt."; -App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authentifizierung war erfolgreich wurde aber abgewiesen! Das Anlegen von Accounts wurde deaktiviert."; +App::$strings["Authentication successful but rejected: account creation is disabled."] = "Authentifizierung war erfolgreich, wurde aber abgewiesen! Das Anlegen von Konten wurde deaktiviert."; App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Suche %1\$s (%2\$s)"; App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; App::$strings["Search \$Projectname"] = "\$Projectname suchen"; @@ -2561,8 +2626,8 @@ 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["likes %1\$s's %2\$s"] = ""; -App::$strings["doesn't like %1\$s's %2\$s"] = ""; +App::$strings["likes %1\$s's %2\$s"] = "gefällt %1\$ss %2\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "missfällt %1\$ss %2\$s"; 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"; @@ -2876,7 +2941,7 @@ App::$strings["__ctx:edit_activity__ Comment"] = "Kommentar"; 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["No account identifier"] = "Keine Konten-Kennung"; App::$strings["Nickname is required."] = "Spitzname ist erforderlich."; App::$strings["Unable to retrieve created identity"] = "Kann die erstellte Identität nicht empfangen"; App::$strings["Default Profile"] = "Standard-Profil"; @@ -2886,7 +2951,8 @@ App::$strings["Visible to everybody"] = "Für jeden sichtbar"; App::$strings["Gender:"] = "Geschlecht:"; App::$strings["Homepage:"] = "Homepage:"; App::$strings["Online Now"] = "gerade online"; -App::$strings["Trans"] = ""; +App::$strings["Change your profile photo"] = "Dein Profilfoto ändern"; +App::$strings["Trans"] = "Trans"; App::$strings["Like this channel"] = "Dieser Kanal gefällt mir"; App::$strings["j F, Y"] = "j. F Y"; App::$strings["j F"] = "j. F"; @@ -2929,7 +2995,7 @@ 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["Zot"] = "Zot"; App::$strings["LinkedIn"] = "LinkedIn"; App::$strings["XMPP/IM"] = "XMPP/IM"; App::$strings["MySpace"] = "MySpace"; @@ -2943,12 +3009,14 @@ App::$strings["Post permissions %s cannot be changed %s after a post is shared.< App::$strings["Cannot locate DNS info for database server '%s'"] = "Kann die DNS-Informationen für den Datenbank-Server '%s' nicht finden"; App::$strings["Image/photo"] = "Bild/Foto"; App::$strings["Encrypted content"] = "Verschlüsselter Inhalt"; -App::$strings["Install %1\$s element %2\$s"] = ""; +App::$strings["Install %1\$s element %2\$s"] = "Installiere %1\$s Element %2\$s"; App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Dieser Beitrag beinhaltet ein installierbares %s Element, aber Du hast nicht die nötigen Rechte, um es auf diesem Hub zu installieren."; App::$strings["card"] = "Karte"; App::$strings["article"] = "Artikel"; App::$strings["Click to open/close"] = "Klicke zum Öffnen/Schließen"; App::$strings["spoiler"] = "Spoiler"; +App::$strings["View article"] = "Artikel ansehen"; +App::$strings["View summary"] = "Zusammenfassung ansehen"; App::$strings["$1 wrote:"] = "$1 schrieb:"; App::$strings[" by "] = "von"; App::$strings[" on "] = "am"; @@ -2956,8 +3024,6 @@ App::$strings["Embedded content"] = "Eingebetteter Inhalt"; App::$strings["Embedding disabled"] = "Einbetten deaktiviert"; App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$s heißt %2\$s willkommen"; App::$strings["General Features"] = "Allgemeine Funktionen"; -App::$strings["Multiple Profiles"] = "Mehrfachprofile"; -App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal"; App::$strings["Advanced Profiles"] = "Erweiterte Profile"; App::$strings["Additional profile sections and selections"] = "Stellt zusätzliche Bereiche und Felder im Profil zur Verfügung"; App::$strings["Profile Import/Export"] = "Profil-Import/Export"; @@ -2968,21 +3034,33 @@ App::$strings["Provide a wiki for your channel"] = "Stelle ein Wiki in Deinem Ka App::$strings["Private Notes"] = "Private Notizen"; App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Aktiviert ein Werkzeug mit dem Notizen und Erinnerungen gespeichert werden können (Hinweis: nicht verschlüsselt)"; App::$strings["Create personal planning cards"] = "Erstelle persönliche (Notiz-)Karten zur Planung/Koordination oder ähnlichen Zwecken"; +App::$strings["Create interactive articles"] = "Erstelle interaktive Artikel"; App::$strings["Navigation Channel Select"] = "Kanal-Auswahl in der Navigationsleiste"; App::$strings["Change channels directly from within the navigation dropdown menu"] = "Ermöglicht den direkten Wechsel zu anderen Kanälen über das Navigationsmenü"; App::$strings["Photo Location"] = "Aufnahmeort"; App::$strings["If location data is available on uploaded photos, link this to a map."] = "Verlinkt den Aufnahmeort von Fotos (falls verfügbar) auf einer Karte"; 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["Provide alternate connection permission roles."] = "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung."; 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["Event Timezone Selection"] = "Termin-Zeitzonenauswahl"; App::$strings["Allow event creation in timezones other than your own."] = "Ermögliche das Erstellen von Terminen in anderen Zeitzonen als Deiner eigenen."; +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["Access Control and Permissions"] = "Zugriffskontrolle und Berechtigungen"; +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["Multiple Profiles"] = "Mehrfachprofile"; +App::$strings["Ability to create multiple profiles"] = "Ermöglicht das Anlegen mehrerer Profile pro Kanal"; +App::$strings["Provide alternate connection permission roles."] = "Stelle benutzerdefinierte Berechtigungsrollen für Verbindungen zur Verfügung."; +App::$strings["OAuth Clients"] = "OAuth Clients"; +App::$strings["Manage authenticatication tokens for mobile and remote apps."] = "Verwalte Tokens für den Zugriff von mobilen bzw. externen Anwendungen."; +App::$strings["Access Tokens"] = "Zugangstokens"; +App::$strings["Create access tokens so that non-members can access private content."] = "Erzeuge Tokens für den Zugriff von Nicht-Mitgliedern auf private Inhalte."; 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."; @@ -3002,8 +3080,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"; App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Aktiviert einen Reiter in der Grid-Ansicht, der nur Netzwerk-Beiträge anzeigt, mit denen Du interagiert hast"; @@ -3015,7 +3091,6 @@ App::$strings["Show friend and connection suggestions"] = "Freund- und Verbindun 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["Post/Comment Tools"] = "Beitrag-/Kommentar-Tools"; -App::$strings["Use markdown for editing posts"] = "Verwende Markdown zum Bearbeiten von Beiträgen"; App::$strings["Community Tagging"] = "Gemeinschaftliches Verschlagworten"; App::$strings["Ability to tag existing posts"] = "Ermöglicht das Verschlagworten existierender Beiträge"; App::$strings["Post Categories"] = "Beitrags-Kategorien"; @@ -3029,8 +3104,6 @@ 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["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["Tags"] = "Schlagwörter"; App::$strings["Keywords"] = "Schlüsselwörter"; App::$strings["have"] = "habe"; @@ -3092,25 +3165,11 @@ App::$strings["%1\$s's birthday"] = "%1\$ss Geburtstag"; App::$strings["Happy Birthday %1\$s"] = "Alles Gute zum Geburtstag, %1\$s"; App::$strings["Remote authentication"] = "Über Konto auf anderem Server einloggen"; App::$strings["Click to authenticate to your home hub"] = "Klicke, um Dich über Deinen Heimat-Server zu authentifizieren"; -App::$strings["Network Activity"] = "Netzwerk-Aktivitäten"; -App::$strings["Mark all activity notifications seen"] = "Alle Benachrichtigungen als gesehen markieren"; -App::$strings["Channel home"] = "Mein Kanal"; -App::$strings["View your channel home"] = "Zeige Deine Kanalseite an"; -App::$strings["Mark all channel notifications seen"] = "Markiere alle Kanal-Benachrichtigungen als angesehen"; -App::$strings["Registrations"] = "Registrierungen"; -App::$strings["Notifications"] = "Benachrichtigungen"; -App::$strings["View all notifications"] = "Alle Benachrichtigungen ansehen"; -App::$strings["Mark all system notifications seen"] = "Markiere alle System-Benachrichtigungen als gesehen"; -App::$strings["Private mail"] = "Persönliche Mail"; -App::$strings["View your private messages"] = "Zeige Deine persönlichen Nachrichten an"; -App::$strings["Mark all private messages seen"] = "Markiere alle persönlichen Nachrichten als gesehen"; -App::$strings["Event Calendar"] = "Terminkalender"; App::$strings["Manage Your Channels"] = "Verwalte Deine Kanäle"; App::$strings["Account/Channel Settings"] = "Konto-/Kanal-Einstellungen"; App::$strings["End this session"] = "Beende diese Sitzung"; App::$strings["Your profile page"] = "Deine Profilseite"; App::$strings["Manage/Edit profiles"] = "Profile verwalten"; -App::$strings["Edit your profile"] = "Profil bearbeiten"; App::$strings["Sign in"] = "Anmelden"; App::$strings["Take me home"] = "Bringe mich nach Hause (eigener Kanal)"; App::$strings["Log me out of this site"] = "Logge mich von dieser Seite aus"; @@ -3132,6 +3191,7 @@ App::$strings["Upload New Photos"] = "Neue Fotos hochladen"; App::$strings["Invalid data packet"] = "Ungültiges Datenpaket"; App::$strings["Unable to verify channel signature"] = "Konnte die Signatur des Kanals nicht verifizieren"; App::$strings["Unable to verify site signature for %s"] = "Kann die Signatur der Seite von %s nicht verifizieren"; +App::$strings["invalid target signature"] = "Ungültige Signatur des Ziels"; App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Es hat früher schon einmal eine Gruppe mit diesem Namen existiert, die gelöscht wurde. Es könnten von damals noch Elemente (Beiträge, Dateien etc.) vorhanden sein, die allen jetzigen und zukünftigen Mitgliedern dieser Gruppe den Zugriff erlauben. Wenn das nicht Deine Absicht ist, erstelle bitte eine neue Gruppe mit einem anderen Namen."; App::$strings["Add new connections to this privacy group"] = "Neue Verbindung zu dieser Gruppe hinzufügen"; App::$strings["edit"] = "Bearbeiten"; -- cgit v1.2.3 From 9fb65e10bd11ae8f0b3118b119e8cad1cb2607a9 Mon Sep 17 00:00:00 2001 From: mrjive Date: Mon, 5 Mar 2018 05:37:15 -0800 Subject: Partial italina translationhmessages.po hstrings.php --- view/it/hmessages.po | 18781 +++++++++++++++++++++++++++++-------------------- view/it/hstrings.php | 4490 +++++++----- 2 files changed, 13994 insertions(+), 9277 deletions(-) (limited to 'view') diff --git a/view/it/hmessages.po b/view/it/hmessages.po index c09bc1536..5f9ec9cc6 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -1,18 +1,18 @@ -# Hubzilla Project -# Copyright (C) 2012-2014 the Hubzilla Project -# This file is distributed under the same license as the Red package. +# hubzilla +# Copyright (C) 2012-2016 hubzilla +# This file is distributed under the same license as the hubzilla package. # # Translators: -# Davide Pesenti , 2015-2016 +# Davide Pesenti , 2015-2016,2018 # Paolo Wave , 2015-2016 # Paolo Wave , 2015 msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \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" +"POT-Creation-Date: 2018-03-01 08:51+0100\n" +"PO-Revision-Date: 2018-03-01 17:14+0000\n" +"Last-Translator: fabrixxm \n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,1750 +20,5344 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../../Zotlabs/Access/PermissionRoles.php:182 -#: ../../include/permissions.php:945 -msgid "Social Networking" -msgstr "Social network" - -#: ../../Zotlabs/Access/PermissionRoles.php:183 -#: ../../include/permissions.php:945 -msgid "Social - Mostly Public" -msgstr "Social - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:184 -#: ../../include/permissions.php:945 -msgid "Social - Restricted" -msgstr "Social - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:185 -#: ../../include/permissions.php:945 -msgid "Social - Private" -msgstr "Social - Privato" - -#: ../../Zotlabs/Access/PermissionRoles.php:188 -#: ../../include/permissions.php:946 -msgid "Community Forum" -msgstr "Forum di discussione" - -#: ../../Zotlabs/Access/PermissionRoles.php:189 -#: ../../include/permissions.php:946 -msgid "Forum - Mostly Public" -msgstr "Social - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:190 -#: ../../include/permissions.php:946 -msgid "Forum - Restricted" -msgstr "Forum - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:191 -#: ../../include/permissions.php:946 -msgid "Forum - Private" -msgstr "Forum - Privato" - -#: ../../Zotlabs/Access/PermissionRoles.php:194 -#: ../../include/permissions.php:947 -msgid "Feed Republish" -msgstr "Aggregatore di feed esterni" - -#: ../../Zotlabs/Access/PermissionRoles.php:195 -#: ../../include/permissions.php:947 -msgid "Feed - Mostly Public" -msgstr "Feed - Prevalentemente pubblico" - -#: ../../Zotlabs/Access/PermissionRoles.php:196 -#: ../../include/permissions.php:947 -msgid "Feed - Restricted" -msgstr "Feed - Con restrizioni" - -#: ../../Zotlabs/Access/PermissionRoles.php:199 -#: ../../include/permissions.php:948 -msgid "Special Purpose" -msgstr "Per finalità speciali" - -#: ../../Zotlabs/Access/PermissionRoles.php:200 -#: ../../include/permissions.php:948 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciale - Pagina per fan" - -#: ../../Zotlabs/Access/PermissionRoles.php:201 -#: ../../include/permissions.php:948 -msgid "Special - Group Repository" -msgstr "Speciale - Repository di gruppo" - -#: ../../Zotlabs/Access/PermissionRoles.php:204 -#: ../../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 "Altro" - -#: ../../Zotlabs/Access/PermissionRoles.php:205 -#: ../../include/permissions.php:949 -msgid "Custom/Expert Mode" -msgstr "Personalizzazione per esperti" - -#: ../../Zotlabs/Access/Permissions.php:30 +#: ../../Zotlabs/Access/Permissions.php:56 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:42 +#: ../../Zotlabs/Access/Permissions.php:57 msgid "Can send me their channel stream and posts" msgstr "È tra i canali che seguo" -#: ../../Zotlabs/Access/Permissions.php:32 ../../include/permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:58 msgid "Can view my default channel profile" msgstr "Può vedere il profilo predefinito del canale" -#: ../../Zotlabs/Access/Permissions.php:33 ../../include/permissions.php:37 +#: ../../Zotlabs/Access/Permissions.php:59 msgid "Can view my connections" msgstr "Può vedere i miei contatti" -#: ../../Zotlabs/Access/Permissions.php:34 ../../include/permissions.php:38 +#: ../../Zotlabs/Access/Permissions.php:60 msgid "Can view my file storage and photos" msgstr "Può vedere il mio archivio file e foto" -#: ../../Zotlabs/Access/Permissions.php:35 +#: ../../Zotlabs/Access/Permissions.php:61 msgid "Can upload/modify my file storage and photos" msgstr "Può caricare o modificare i file e le foto del mio archivio" -#: ../../Zotlabs/Access/Permissions.php:36 +#: ../../Zotlabs/Access/Permissions.php:62 msgid "Can view my channel webpages" msgstr "Può vedere le pagine web del mio canale" -#: ../../Zotlabs/Access/Permissions.php:37 +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can view my wiki pages" +msgstr "Può vedere le pagine del mio wiki" + +#: ../../Zotlabs/Access/Permissions.php:64 msgid "Can create/edit my channel webpages" msgstr "Può creare o modificare le pagine web del mio canale" -#: ../../Zotlabs/Access/Permissions.php:38 +#: ../../Zotlabs/Access/Permissions.php:65 +msgid "Can write to my wiki pages" +msgstr "Può scrivere nelle pagine del mio wiki" + +#: ../../Zotlabs/Access/Permissions.php:66 msgid "Can post on my channel (wall) page" msgstr "Può postare sulla mia bacheca" -#: ../../Zotlabs/Access/Permissions.php:39 ../../include/permissions.php:44 +#: ../../Zotlabs/Access/Permissions.php:67 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:45 +#: ../../Zotlabs/Access/Permissions.php:68 msgid "Can send me private mail messages" msgstr "Può inviarmi messaggi privati" -#: ../../Zotlabs/Access/Permissions.php:41 +#: ../../Zotlabs/Access/Permissions.php:69 msgid "Can like/dislike profiles and profile things" msgstr "Può aggiungere un \"mi piace\" sul profilo e sugli oggetti del profilo" -#: ../../Zotlabs/Access/Permissions.php:42 +#: ../../Zotlabs/Access/Permissions.php:70 msgid "Can forward to all my channel connections via @+ mentions in posts" msgstr "Può inoltrare post a tutti i miei contatti con una menzione @+" -#: ../../Zotlabs/Access/Permissions.php:43 +#: ../../Zotlabs/Access/Permissions.php:71 msgid "Can chat with me" msgstr "Può aprire una chat con me" -#: ../../Zotlabs/Access/Permissions.php:44 ../../include/permissions.php:53 +#: ../../Zotlabs/Access/Permissions.php:72 msgid "Can source my public posts in derived channels" msgstr "Può usare i miei post pubblici per creare canali derivati" -#: ../../Zotlabs/Access/Permissions.php:45 +#: ../../Zotlabs/Access/Permissions.php:73 msgid "Can administer my channel" msgstr "Può amministrare il mio canale" -#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:238 -msgid "parent" -msgstr "cartella superiore" +#: ../../Zotlabs/Access/PermissionRoles.php:265 +msgid "Social Networking" +msgstr "Social network" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2711 -msgid "Collection" -msgstr "Cartella" +#: ../../Zotlabs/Access/PermissionRoles.php:266 +msgid "Social - Mostly Public" +msgstr "Social - Prevalentemente pubblico" -#: ../../Zotlabs/Storage/Browser.php:134 -msgid "Principal" -msgstr "Principale" +#: ../../Zotlabs/Access/PermissionRoles.php:267 +msgid "Social - Restricted" +msgstr "Social - Con restrizioni" -#: ../../Zotlabs/Storage/Browser.php:137 -msgid "Addressbook" -msgstr "Rubrica" +#: ../../Zotlabs/Access/PermissionRoles.php:268 +msgid "Social - Private" +msgstr "Social - Privato" -#: ../../Zotlabs/Storage/Browser.php:140 -msgid "Calendar" -msgstr "Calendario" +#: ../../Zotlabs/Access/PermissionRoles.php:271 +msgid "Community Forum" +msgstr "Forum di discussione" -#: ../../Zotlabs/Storage/Browser.php:143 -msgid "Schedule Inbox" -msgstr "Appuntamenti ricevuti" +#: ../../Zotlabs/Access/PermissionRoles.php:272 +msgid "Forum - Mostly Public" +msgstr "Social - Prevalentemente pubblico" -#: ../../Zotlabs/Storage/Browser.php:146 -msgid "Schedule Outbox" -msgstr "Appuntamenti inviati" +#: ../../Zotlabs/Access/PermissionRoles.php:273 +msgid "Forum - Restricted" +msgstr "Forum - Con restrizioni" -#: ../../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:1031 -#: ../../include/widgets.php:1683 -msgid "Unknown" -msgstr "Sconosciuto" +#: ../../Zotlabs/Access/PermissionRoles.php:274 +msgid "Forum - Private" +msgstr "Forum - Privato" -#: ../../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 "Archivio file" +#: ../../Zotlabs/Access/PermissionRoles.php:277 +msgid "Feed Republish" +msgstr "Aggregatore di feed esterni" -#: ../../Zotlabs/Storage/Browser.php:226 -msgid "Total" -msgstr "Totale" +#: ../../Zotlabs/Access/PermissionRoles.php:278 +msgid "Feed - Mostly Public" +msgstr "Feed - Prevalentemente pubblico" -#: ../../Zotlabs/Storage/Browser.php:228 -msgid "Shared" -msgstr "Condiviso" +#: ../../Zotlabs/Access/PermissionRoles.php:279 +msgid "Feed - Restricted" +msgstr "Feed - Con restrizioni" -#: ../../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/Access/PermissionRoles.php:282 +msgid "Special Purpose" +msgstr "Per finalità speciali" -#: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:816 ../../Zotlabs/Module/Photos.php:1370 -#: ../../Zotlabs/Module/Profile_photo.php:390 -#: ../../Zotlabs/Module/Embedphotos.php:159 ../../include/widgets.php:1696 -msgid "Upload" -msgstr "Carica" +#: ../../Zotlabs/Access/PermissionRoles.php:283 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciale - Pagina per fan" -#: ../../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 "Nome" +#: ../../Zotlabs/Access/PermissionRoles.php:284 +msgid "Special - Group Repository" +msgstr "Speciale - Repository di gruppo" -#: ../../Zotlabs/Storage/Browser.php:235 -msgid "Type" -msgstr "Tipo" +#: ../../Zotlabs/Access/PermissionRoles.php:287 +#: ../../Zotlabs/Module/Cdav.php:1182 ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Settings/Channel.php:473 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:224 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/selectors.php:104 +#: ../../include/selectors.php:140 ../../include/event.php:1315 +#: ../../include/event.php:1322 ../../include/connections.php:689 +#: ../../include/connections.php:696 +msgid "Other" +msgstr "Altro" -#: ../../Zotlabs/Storage/Browser.php:236 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1372 -msgid "Size" -msgstr "Dimensione" +#: ../../Zotlabs/Access/PermissionRoles.php:288 +msgid "Custom/Expert Mode" +msgstr "Personalizzazione per esperti" -#: ../../Zotlabs/Storage/Browser.php:237 -#: ../../Zotlabs/Module/Sharedwithme.php:102 -msgid "Last Modified" -msgstr "Ultima modifica" +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:29 +#: ../../Zotlabs/Module/Editlayout.php:31 ../../Zotlabs/Module/Connect.php:17 +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Editblock.php:31 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Cards.php:33 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:51 ../../include/channel.php:1198 +msgid "Requested profile is not available." +msgstr "Il profilo richiesto non è disponibile." + +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Articles.php:68 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:110 +#: ../../Zotlabs/Module/Channel.php:248 ../../Zotlabs/Module/Channel.php:288 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:86 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Article_edit.php:51 +#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:102 +#: ../../Zotlabs/Module/Sharedwithme.php:16 ../../Zotlabs/Module/Setup.php:209 +#: ../../Zotlabs/Module/Moderate.php:13 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:275 +#: ../../Zotlabs/Module/Thing.php:295 ../../Zotlabs/Module/Thing.php:336 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:64 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:273 ../../Zotlabs/Module/Wiki.php:400 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:149 +#: ../../Zotlabs/Module/Profile_photo.php:302 +#: ../../Zotlabs/Module/Profile_photo.php:315 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 +#: ../../Zotlabs/Module/Item.php:246 ../../Zotlabs/Module/Item.php:256 +#: ../../Zotlabs/Module/Item.php:1099 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:389 +#: ../../Zotlabs/Module/Chat.php:100 ../../Zotlabs/Module/Chat.php:105 +#: ../../Zotlabs/Module/Menu.php:78 ../../Zotlabs/Module/Layouts.php:71 +#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 +#: ../../Zotlabs/Module/Defperms.php:173 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Cards.php:72 ../../Zotlabs/Module/Webpages.php:118 +#: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 +#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:74 +#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:28 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 +#: ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:281 +#: ../../Zotlabs/Module/Cover_photo.php:294 +#: ../../Zotlabs/Module/Display.php:406 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:15 +#: ../../Zotlabs/Module/Filestorage.php:70 +#: ../../Zotlabs/Module/Filestorage.php:85 +#: ../../Zotlabs/Module/Filestorage.php:117 ../../Zotlabs/Module/Common.php:38 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Rate.php:113 ../../Zotlabs/Module/Card_edit.php:51 +#: ../../Zotlabs/Module/Notifications.php:11 +#: ../../Zotlabs/Lib/Chatroom.php:133 ../../Zotlabs/Web/WebServer.php:123 +#: ../../addon/keepout/keepout.php:36 ../../addon/openid/Mod_Id.php:53 +#: ../../addon/gitwiki/Mod_Gitwiki.php:196 +#: ../../addon/gitwiki/Mod_Gitwiki.php:292 ../../addon/pumpio/pumpio.php:40 +#: ../../include/attach.php:150 ../../include/attach.php:197 +#: ../../include/attach.php:270 ../../include/attach.php:284 +#: ../../include/attach.php:293 ../../include/attach.php:366 +#: ../../include/attach.php:380 ../../include/attach.php:387 +#: ../../include/attach.php:469 ../../include/attach.php:1019 +#: ../../include/attach.php:1093 ../../include/attach.php:1258 +#: ../../include/items.php:3656 ../../include/photos.php:27 +msgid "Permission denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "Nome del block" + +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2402 +msgid "Blocks" +msgstr "Block" + +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" +msgstr "Titolo del block" + +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:251 +msgid "Created" +msgstr "Creato" -#: ../../Zotlabs/Storage/Browser.php:239 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:252 +msgid "Edited" +msgstr "Modificato" + +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:96 +#: ../../Zotlabs/Module/Cdav.php:1185 ../../Zotlabs/Module/New_channel.php:146 +#: ../../Zotlabs/Module/Connedit.php:921 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Cards.php:100 ../../Zotlabs/Module/Webpages.php:239 +#: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:382 +#: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 +msgid "Create" +msgstr "Crea" + +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Article_edit.php:99 #: ../../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/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 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:265 +#: ../../Zotlabs/Module/Connections.php:303 +#: ../../Zotlabs/Module/Connections.php:323 ../../Zotlabs/Module/Wiki.php:202 +#: ../../Zotlabs/Module/Wiki.php:358 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:240 ../../Zotlabs/Module/Editpost.php:85 +#: ../../Zotlabs/Module/Card_edit.php:99 ../../Zotlabs/Lib/Apps.php:409 +#: ../../Zotlabs/Lib/ThreadItem.php:121 ../../Zotlabs/Storage/Browser.php:288 +#: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 +#: ../../addon/gitwiki/Mod_Gitwiki.php:151 +#: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1297 +#: ../../include/channel.php:1301 ../../include/menu.php:113 msgid "Edit" msgstr "Modifica" -#: ../../Zotlabs/Storage/Browser.php:240 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1102 +#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Webpages.php:241 +#: ../../Zotlabs/Widget/Cdav.php:124 ../../include/conversation.php:1363 +msgid "Share" +msgstr "Condividi" + +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Cdav.php:897 ../../Zotlabs/Module/Cdav.php:1187 +#: ../../Zotlabs/Module/Article_edit.php:129 #: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Admin/Channels.php:153 +#: ../../Zotlabs/Module/Admin/Channels.php:149 #: ../../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/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 +#: ../../Zotlabs/Module/Thing.php:262 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:273 +#: ../../Zotlabs/Module/Photos.php:1203 ../../Zotlabs/Module/Connedit.php:654 +#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Group.php:179 +#: ../../Zotlabs/Module/Profiles.php:803 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:242 +#: ../../Zotlabs/Module/Card_edit.php:129 ../../Zotlabs/Lib/Apps.php:410 +#: ../../Zotlabs/Lib/ThreadItem.php:141 ../../Zotlabs/Storage/Browser.php:289 +#: ../../include/conversation.php:690 ../../include/conversation.php:733 msgid "Delete" msgstr "Elimina" -#: ../../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/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:204 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:246 ../../Zotlabs/Module/Pubsites.php:60 +#: ../../addon/gitwiki/Mod_Gitwiki.php:153 +msgid "View" +msgstr "Guarda" + +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Hai superato il numero massimo di inviti." -#: ../../Zotlabs/Storage/Browser.php:304 +#: ../../Zotlabs/Module/Invite.php:53 #, 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%)" +msgid "%s : Not a valid email address." +msgstr "%s: non è un indirizzo email valido." -#: ../../Zotlabs/Storage/Browser.php:315 -msgid "WARNING:" -msgstr "ATTENZIONE:" +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" +msgstr "Unisciti a noi su $Projectname" -#: ../../Zotlabs/Storage/Browser.php:320 -msgid "Create new folder" -msgstr "Nuova cartella" +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Hai superato il numero massimo di inviti. Contatta l'amministratore se necessario." -#: ../../Zotlabs/Storage/Browser.php:322 -msgid "Upload file" -msgstr "Carica un file" +#: ../../Zotlabs/Module/Invite.php:82 +#: ../../addon/notifyadmin/notifyadmin.php:40 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: la consegna del messaggio è fallita." -#: ../../Zotlabs/Storage/Browser.php:335 -msgid "Drop files here to immediately upload" -msgstr "Trascina i file qui per caricarli al volo" +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d messaggio inviato." +msgstr[1] "%d messaggi inviati." -#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Web/WebServer.php:128 -#: ../../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/Mail.php:121 ../../Zotlabs/Module/Connections.php:33 -#: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../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/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/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/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/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/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: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/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:909 -#: ../../include/attach.php:980 ../../include/attach.php:1132 -msgid "Permission denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Invite.php:107 +msgid "You have no more invitations available" +msgstr "Non hai altri inviti disponibili" -#: ../../Zotlabs/Web/Router.php:146 ../../include/help.php:56 -msgid "Not Found" -msgstr "Non disponibile" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "Send invitations" +msgstr "Spedisci inviti" -#: ../../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 non trovata." +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Enter email addresses, one per line:" +msgstr "Inserisci gli indirizzi email, uno per riga:" -#: ../../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 -msgid "Permission denied" -msgstr "Permesso negato" +#: ../../Zotlabs/Module/Invite.php:140 ../../Zotlabs/Module/Mail.php:285 +msgid "Your message:" +msgstr "Il tuo messaggio:" -#: ../../Zotlabs/Zot/Auth.php:138 -msgid "" -"Remote authentication blocked. You are logged into this site locally. Please" -" logout and retry." -msgstr "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo." +#: ../../Zotlabs/Module/Invite.php:141 +msgid "Please join my community on $Projectname." +msgstr "Entra nella mia comunità su $Projectname." -#: ../../Zotlabs/Zot/Auth.php:246 -#, php-format -msgid "Welcome %s. Remote authentication successful." -msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." +#: ../../Zotlabs/Module/Invite.php:143 +msgid "You will need to supply this invitation code:" +msgstr "Dovrai fornire questo codice invito:" -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../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 "Il profilo richiesto non è disponibile." +#: ../../Zotlabs/Module/Invite.php:144 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registrati su qualsiasi server $Projectname (sono tutti interconnessi)" -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" -msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" +#: ../../Zotlabs/Module/Invite.php:146 +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/Chatsvc.php:117 -msgid "Away" -msgstr "Assente" +#: ../../Zotlabs/Module/Invite.php:147 +msgid "or visit" +msgstr "oppure visita" -#: ../../Zotlabs/Module/Chatsvc.php:122 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Invite.php:149 +msgid "3. Click [Connect]" +msgstr "3. Clicca su [Aggiungi]" -#: ../../Zotlabs/Module/Network.php:95 -msgid "No such group" -msgstr "Impossibile trovare il gruppo di canali" +#: ../../Zotlabs/Module/Invite.php:151 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:152 +#: ../../Zotlabs/Module/Import_items.php:129 +#: ../../Zotlabs/Module/Setup.php:308 ../../Zotlabs/Module/Setup.php:349 +#: ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Plugins.php:438 +#: ../../Zotlabs/Module/Admin/Accounts.php:167 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Channel.php:488 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:54 +#: ../../Zotlabs/Module/Settings/Display.php:192 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Thing.php:321 ../../Zotlabs/Module/Thing.php:374 +#: ../../Zotlabs/Module/Import.php:529 ../../Zotlabs/Module/Cal.php:345 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:1082 +#: ../../Zotlabs/Module/Photos.php:1122 ../../Zotlabs/Module/Photos.php:1240 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Module/Pdledit.php:98 +#: ../../Zotlabs/Module/Poke.php:200 ../../Zotlabs/Module/Connedit.php:887 +#: ../../Zotlabs/Module/Chat.php:196 ../../Zotlabs/Module/Chat.php:242 +#: ../../Zotlabs/Module/Email_validation.php:40 +#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Defperms.php:249 +#: ../../Zotlabs/Module/Group.php:87 ../../Zotlabs/Module/Profiles.php:726 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 +#: ../../Zotlabs/Module/Filestorage.php:160 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Lib/ThreadItem.php:750 +#: ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Widget/Wiki_pages.php:40 +#: ../../Zotlabs/Widget/Wiki_pages.php:97 +#: ../../view/theme/redbasic_c/php/config.php:95 +#: ../../view/theme/redbasic/php/config.php:93 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:273 +#: ../../addon/planets/planets.php:153 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:822 +#: ../../addon/gitwiki/Mod_Gitwiki.php:155 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/hzfiles/hzfiles.php:84 +#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 +#: ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:96 ../../addon/pubcrawl/pubcrawl.php:1053 +#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:218 +#: ../../addon/twitter/twitter.php:265 +#: ../../addon/smileybutton/smileybutton.php:219 +#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 +#: ../../addon/authchoose/authchoose.php:71 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" +msgstr "Salva" -#: ../../Zotlabs/Module/Network.php:135 -msgid "No such channel" -msgstr "Canale sconosciuto" +#: ../../Zotlabs/Module/Articles.php:38 ../../Zotlabs/Module/Articles.php:179 +#: ../../Zotlabs/Lib/Apps.php:229 ../../include/features.php:124 +#: ../../include/nav.php:469 +msgid "Articles" +msgstr "Articoli" -#: ../../Zotlabs/Module/Network.php:140 -msgid "forum" -msgstr "forum" +#: ../../Zotlabs/Module/Articles.php:95 +msgid "Add Article" +msgstr "Aggiungi un articolo" -#: ../../Zotlabs/Module/Network.php:152 -msgid "Search Results For:" -msgstr "Cerca risultati con:" +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Article_edit.php:17 +#: ../../Zotlabs/Module/Article_edit.php:33 +#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Card_edit.php:17 +#: ../../Zotlabs/Module/Card_edit.php:33 +msgid "Item not found" +msgstr "Elemento non trovato" -#: ../../Zotlabs/Module/Network.php:218 -msgid "Privacy group is empty" -msgstr "Il gruppo di canali è vuoto" +#: ../../Zotlabs/Module/Editlayout.php:128 +#: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" +msgstr "Nome layout" -#: ../../Zotlabs/Module/Network.php:227 -msgid "Privacy group: " -msgstr "Gruppo di canali:" +#: ../../Zotlabs/Module/Editlayout.php:129 +#: ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" +msgstr "Descrizione del layout (facoltativa)" -#: ../../Zotlabs/Module/Network.php:253 -msgid "Invalid connection." -msgstr "Contatto non valido." +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" +msgstr "Modifica il layout" -#: ../../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/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Cloud.php:111 ../../Zotlabs/Module/Group.php:74 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:296 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 +#: ../../addon/frphotos/frphotos.php:81 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:358 +msgid "Permission denied" +msgstr "Permesso negato" -#: ../../Zotlabs/Module/Acl.php:313 -msgid "network" -msgstr "rete" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Indentificativo del profilo non valido." -#: ../../Zotlabs/Module/Acl.php:323 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" +msgstr "Modifica la visibilità del profilo" -#: ../../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/Profperm.php:113 ../../include/channel.php:1634 +msgid "Profile" +msgstr "Profilo" -#: ../../Zotlabs/Module/Channel.php:40 -msgid "Posts and comments" -msgstr "Post e commenti" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." +msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Channel.php:41 -msgid "Only posts" -msgstr "Solo post" +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" +msgstr "Visibile a" -#: ../../Zotlabs/Module/Channel.php:101 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:140 +msgid "All Connections" +msgstr "Tutti i contatti" -#: ../../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/Cdav.php:785 +msgid "INVALID EVENT DISMISSED!" +msgstr "EVENTO NON VALIDO ELIMINATO!" + +#: ../../Zotlabs/Module/Cdav.php:786 +msgid "Summary: " +msgstr "Sommario:" + +#: ../../Zotlabs/Module/Cdav.php:786 ../../Zotlabs/Module/Cdav.php:787 +#: ../../Zotlabs/Module/Cdav.php:794 ../../Zotlabs/Module/Embedphotos.php:146 +#: ../../Zotlabs/Module/Photos.php:817 ../../Zotlabs/Module/Photos.php:1273 +#: ../../Zotlabs/Lib/Apps.php:754 ../../Zotlabs/Lib/Apps.php:832 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Widget/Portfolio.php:95 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/pubcrawl/as.php:853 +#: ../../include/conversation.php:1160 +msgid "Unknown" +msgstr "Sconosciuto" -#: ../../Zotlabs/Module/Import.php:71 ../../Zotlabs/Module/Import_items.php:42 -msgid "Nothing to import." -msgstr "Non c'è niente da importare." +#: ../../Zotlabs/Module/Cdav.php:787 +msgid "Date: " +msgstr "Data:" -#: ../../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/Cdav.php:788 ../../Zotlabs/Module/Cdav.php:795 +msgid "Reason: " +msgstr "Motivo:" -#: ../../Zotlabs/Module/Import.php:101 -#: ../../Zotlabs/Module/Import_items.php:72 -msgid "Imported file is empty." -msgstr "Il file da importare è vuoto." +#: ../../Zotlabs/Module/Cdav.php:793 +msgid "INVALID CARD DISMISSED!" +msgstr "CARD NON VALIDA ELIMINATA!" -#: ../../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/Cdav.php:794 +msgid "Name: " +msgstr "Nome:" -#: ../../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/Cdav.php:868 ../../Zotlabs/Module/Events.php:460 +msgid "Event title" +msgstr "Titolo dell'evento" -#: ../../Zotlabs/Module/Import.php:163 -msgid "No channel. Import failed." -msgstr "Nessun canale. Import fallito." +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Events.php:466 +msgid "Start date and time" +msgstr "Data e ora di inizio" -#: ../../Zotlabs/Module/Import.php:520 -#: ../../include/Import/import_diaspora.php:142 -msgid "Import completed." -msgstr "L'importazione è terminata con successo." +#: ../../Zotlabs/Module/Cdav.php:869 ../../Zotlabs/Module/Cdav.php:870 +msgid "Example: YYYY-MM-DD HH:mm" +msgstr "Esempio: YYYY-MM-DD HH:mm" -#: ../../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/Cdav.php:870 +msgid "End date and time" +msgstr "Data e ora di fine" -#: ../../Zotlabs/Module/Import.php:547 -msgid "Import Channel" -msgstr "Importa un canale" +#: ../../Zotlabs/Module/Cdav.php:871 ../../Zotlabs/Module/Events.php:473 +#: ../../Zotlabs/Module/Appman.php:142 ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 +msgid "Description" +msgstr "Descrizione" -#: ../../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/Cdav.php:872 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Events.php:475 ../../Zotlabs/Module/Profiles.php:509 +#: ../../Zotlabs/Module/Profiles.php:737 ../../Zotlabs/Module/Pubsites.php:52 +#: ../../include/js_strings.php:25 +msgid "Location" +msgstr "Posizione geografica" -#: ../../Zotlabs/Module/Import.php:549 -#: ../../Zotlabs/Module/Import_items.php:121 -msgid "File to Upload" -msgstr "File da caricare" +#: ../../Zotlabs/Module/Cdav.php:879 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 ../../Zotlabs/Module/Cal.php:339 +#: ../../Zotlabs/Module/Cal.php:346 ../../Zotlabs/Module/Photos.php:971 +msgid "Previous" +msgstr "Precendente" -#: ../../Zotlabs/Module/Import.php:550 -msgid "Or provide the old server/hub details" -msgstr "Oppure fornisci i dettagli del vecchio hub" +#: ../../Zotlabs/Module/Cdav.php:880 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Cal.php:347 +#: ../../Zotlabs/Module/Photos.php:980 +msgid "Next" +msgstr "Successivo" -#: ../../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/Cdav.php:881 ../../Zotlabs/Module/Events.php:700 +#: ../../Zotlabs/Module/Cal.php:348 +msgid "Today" +msgstr "Oggi" -#: ../../Zotlabs/Module/Import.php:552 -msgid "Your old login email address" -msgstr "L'email che usavi per accedere sul vecchio hub" +#: ../../Zotlabs/Module/Cdav.php:882 ../../Zotlabs/Module/Events.php:695 +msgid "Month" +msgstr "Mese" -#: ../../Zotlabs/Module/Import.php:553 -msgid "Your old login password" -msgstr "La password per il vecchio hub" +#: ../../Zotlabs/Module/Cdav.php:883 ../../Zotlabs/Module/Events.php:696 +msgid "Week" +msgstr "Settimana" -#: ../../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/Cdav.php:884 ../../Zotlabs/Module/Events.php:697 +msgid "Day" +msgstr "Giorno" -#: ../../Zotlabs/Module/Import.php:555 -msgid "Make this hub my primary location" -msgstr "Rendi questo hub il mio indirizzo primario" +#: ../../Zotlabs/Module/Cdav.php:885 +msgid "List month" +msgstr "Lista del mese" -#: ../../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/Cdav.php:886 +msgid "List week" +msgstr "Lista della settimana" -#: ../../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/Cdav.php:887 +msgid "List day" +msgstr "Lista del giorno" -#: ../../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/Cdav.php:894 +msgid "More" +msgstr "Di più" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" -msgstr "Segnalibro aggiunto" +#: ../../Zotlabs/Module/Cdav.php:895 +msgid "Less" +msgstr "Meno" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" -msgstr "I miei segnalibri" +#: ../../Zotlabs/Module/Cdav.php:896 +msgid "Select calendar" +msgstr "Seleziona calendario" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" -msgstr "I segnalibri dei miei contatti" +#: ../../Zotlabs/Module/Cdav.php:898 +msgid "Delete all" +msgstr "Elimina tutto" -#: ../../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/Cdav.php:899 ../../Zotlabs/Module/Cdav.php:1188 +#: ../../Zotlabs/Module/Admin/Plugins.php:423 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Wiki.php:345 ../../Zotlabs/Module/Wiki.php:375 +#: ../../Zotlabs/Module/Profile_photo.php:464 +#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Cover_photo.php:365 +#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1386 +#: ../../include/conversation.php:1435 +msgid "Cancel" +msgstr "Annulla" -#: ../../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/Cdav.php:900 +msgid "Sorry! Editing of recurrent events is not yet implemented." +msgstr "Spiacenti! La modifica di eventi ricorrenti non è ancora disponibile." -#: ../../Zotlabs/Module/Admin/Accounts.php:79 -msgid "Account not found" -msgstr "Account non trovato" +#: ../../Zotlabs/Module/Cdav.php:1170 +#: ../../Zotlabs/Module/Sharedwithme.php:105 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Wiki.php:209 ../../Zotlabs/Module/Connedit.php:906 +#: ../../Zotlabs/Module/Chat.php:251 ../../Zotlabs/Lib/NativeWikiPage.php:558 +#: ../../Zotlabs/Storage/Browser.php:283 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 +#: ../../addon/gitwiki/Mod_Gitwiki.php:158 +msgid "Name" +msgstr "Nome" -#: ../../Zotlabs/Module/Admin/Accounts.php:90 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' eliminato" +#: ../../Zotlabs/Module/Cdav.php:1171 ../../Zotlabs/Module/Connedit.php:907 +msgid "Organisation" +msgstr "Organizzazione" -#: ../../Zotlabs/Module/Admin/Accounts.php:98 -#, php-format -msgid "Account '%s' blocked" -msgstr "Aggiunto un blocco verso '%s'" +#: ../../Zotlabs/Module/Cdav.php:1172 ../../Zotlabs/Module/Connedit.php:908 +msgid "Title" +msgstr "Titolo" -#: ../../Zotlabs/Module/Admin/Accounts.php:106 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Rimosso il blocco verso '%s'" +#: ../../Zotlabs/Module/Cdav.php:1173 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Profiles.php:789 +msgid "Phone" +msgstr "Telefono" -#: ../../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/Cdav.php:1174 +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +#: ../../Zotlabs/Module/Admin/Accounts.php:182 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:790 +#: ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:1775 +msgid "Email" +msgstr "Email" -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Accounts.php:179 ../../include/widgets.php:1561 -msgid "Accounts" -msgstr "Account" +#: ../../Zotlabs/Module/Cdav.php:1175 ../../Zotlabs/Module/Connedit.php:911 +#: ../../Zotlabs/Module/Profiles.php:791 +msgid "Instant messenger" +msgstr "Messaggistica istantanea" -#: ../../Zotlabs/Module/Admin/Accounts.php:168 -#: ../../Zotlabs/Module/Admin/Channels.php:152 -msgid "select all" -msgstr "seleziona tutti" +#: ../../Zotlabs/Module/Cdav.php:1176 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Profiles.php:792 +msgid "Website" +msgstr "Sito web" -#: ../../Zotlabs/Module/Admin/Accounts.php:169 -msgid "Registrations waiting for confirm" -msgstr "Registrazioni in attesa di conferma" +#: ../../Zotlabs/Module/Cdav.php:1177 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:793 +msgid "Address" +msgstr "Indirizzo" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -msgid "Request date" -msgstr "Data richiesta" +#: ../../Zotlabs/Module/Cdav.php:1178 ../../Zotlabs/Module/Connedit.php:914 +#: ../../Zotlabs/Module/Profiles.php:794 +msgid "Note" +msgstr "Nota" -#: ../../Zotlabs/Module/Admin/Accounts.php:170 -#: ../../Zotlabs/Module/Admin/Accounts.php:182 ../../include/network.php:2212 -msgid "Email" -msgstr "Email" +#: ../../Zotlabs/Module/Cdav.php:1179 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Profiles.php:795 ../../include/event.php:1308 +#: ../../include/connections.php:682 +msgid "Mobile" +msgstr "Mobile" -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "No registrations." -msgstr "Nessuna registrazione." +#: ../../Zotlabs/Module/Cdav.php:1180 ../../Zotlabs/Module/Connedit.php:916 +#: ../../Zotlabs/Module/Profiles.php:796 ../../include/event.php:1309 +#: ../../include/connections.php:683 +msgid "Home" +msgstr "Bacheca" -#: ../../Zotlabs/Module/Admin/Accounts.php:172 -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Approve" -msgstr "Approva" +#: ../../Zotlabs/Module/Cdav.php:1181 ../../Zotlabs/Module/Connedit.php:917 +#: ../../Zotlabs/Module/Profiles.php:797 ../../include/event.php:1312 +#: ../../include/connections.php:686 +msgid "Work" +msgstr "Lavoro" + +#: ../../Zotlabs/Module/Cdav.php:1183 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Profiles.php:799 +#: ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" +msgstr "Aggiungi contatto" + +#: ../../Zotlabs/Module/Cdav.php:1184 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Profiles.php:800 +msgid "Add Field" +msgstr "Aggiungi campo" + +#: ../../Zotlabs/Module/Cdav.php:1186 +#: ../../Zotlabs/Module/Admin/Plugins.php:453 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:393 +msgid "Update" +msgstr "Aggiorna" -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -msgid "Deny" -msgstr "Nega" +#: ../../Zotlabs/Module/Cdav.php:1189 ../../Zotlabs/Module/Connedit.php:925 +msgid "P.O. Box" +msgstr "P.O. Box" -#: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Block" -msgstr "Blocca" +#: ../../Zotlabs/Module/Cdav.php:1190 ../../Zotlabs/Module/Connedit.php:926 +msgid "Additional" +msgstr "Aggiuntivo" -#: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:575 -msgid "Unblock" -msgstr "Sblocca" +#: ../../Zotlabs/Module/Cdav.php:1191 ../../Zotlabs/Module/Connedit.php:927 +msgid "Street" +msgstr "Via" -#: ../../Zotlabs/Module/Admin/Accounts.php:181 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Cdav.php:1192 ../../Zotlabs/Module/Connedit.php:928 +msgid "Locality" +msgstr "Località" -#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:267 -msgid "All Channels" -msgstr "Tutti i canali" +#: ../../Zotlabs/Module/Cdav.php:1193 ../../Zotlabs/Module/Connedit.php:929 +msgid "Region" +msgstr "Regione" -#: ../../Zotlabs/Module/Admin/Accounts.php:184 -msgid "Register date" -msgstr "Data registrazione" +#: ../../Zotlabs/Module/Cdav.php:1194 ../../Zotlabs/Module/Connedit.php:930 +msgid "ZIP Code" +msgstr "CAP" -#: ../../Zotlabs/Module/Admin/Accounts.php:185 -msgid "Last login" -msgstr "Ultimo accesso" +#: ../../Zotlabs/Module/Cdav.php:1195 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Profiles.php:760 +msgid "Country" +msgstr "Nazione" -#: ../../Zotlabs/Module/Admin/Accounts.php:186 -msgid "Expires" -msgstr "Con scadenza" +#: ../../Zotlabs/Module/Cdav.php:1242 +msgid "Default Calendar" +msgstr "Calendario predefinito" -#: ../../Zotlabs/Module/Admin/Accounts.php:187 -msgid "Service Class" -msgstr "Classe dell'account" +#: ../../Zotlabs/Module/Cdav.php:1252 +msgid "Default Addressbook" +msgstr "Rubrica predefinita" -#: ../../Zotlabs/Module/Admin/Accounts.php:189 +#: ../../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/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:508 +msgid "You must be logged in to see this page." +msgstr "Devi aver effettuato l'accesso per vedere questa pagina." + +#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Profile.php:45 +msgid "Posts and comments" +msgstr "Post e commenti" + +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Profile.php:52 +msgid "Only posts" +msgstr "Solo post" + +#: ../../Zotlabs/Module/Channel.php:107 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permessi insufficienti. Sarà visualizzata la pagina del profilo." + +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" +msgstr "Esporta il canale" + +#: ../../Zotlabs/Module/Uexport.php:59 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?" +"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/Admin/Accounts.php:190 +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" +msgstr "Esporta i contenuti" + +#: ../../Zotlabs/Module/Uexport.php:61 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?" +"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/Uexport.php:63 +msgid "Export your posts from a given year." +msgstr "Esporta i tuoi post a partire dall'anno scelto." + +#: ../../Zotlabs/Module/Uexport.php:65 +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/Admin/Channels.php:30 +#: ../../Zotlabs/Module/Uexport.php:66 #, 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 "" +"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/Admin/Channels.php:39 +#: ../../Zotlabs/Module/Uexport.php:67 #, 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" +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/Admin/Channels.php:45 +#: ../../Zotlabs/Module/Uexport.php:68 #, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canale è stato rimosso" -msgstr[1] "%s canali sono stati rimossi" +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/Admin/Channels.php:66 -msgid "Channel not found" -msgstr "Canale non trovato" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "Welcome to Hubzilla!" +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:76 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Il canale '%s' è stato rimosso" +#: ../../Zotlabs/Module/Hq.php:140 +msgid "You have got no unseen posts..." +msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:88 -#, php-format -msgid "Channel '%s' censored" -msgstr "Applicata una censura al canale '%s'" +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:540 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Directory.php:68 ../../Zotlabs/Module/Display.php:30 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." +msgstr "Accesso pubblico negato." -#: ../../Zotlabs/Module/Admin/Channels.php:88 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Rimossa la censura dal canale '%s'" +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:319 +#: ../../Zotlabs/Lib/Apps.php:256 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1051 ../../include/text.php:1063 +#: ../../include/acl_selectors.php:118 ../../include/nav.php:179 +msgid "Search" +msgstr "Cerca" -#: ../../Zotlabs/Module/Admin/Channels.php:99 +#: ../../Zotlabs/Module/Search.php:226 #, php-format -msgid "Channel '%s' code allowed" -msgstr "Il canale '%s' permette codice nei contenuti" +msgid "Items tagged with: %s" +msgstr "Elementi taggati con: %s" -#: ../../Zotlabs/Module/Admin/Channels.php:99 +#: ../../Zotlabs/Module/Search.php:228 #, php-format -msgid "Channel '%s' code disallowed" -msgstr "Il canale '%s' non permette codice nei contenuti" +msgid "Search results for: %s" +msgstr "Risultati ricerca: %s" -#: ../../Zotlabs/Module/Admin/Channels.php:150 ../../include/widgets.php:1562 -msgid "Channels" -msgstr "Canali" +#: ../../Zotlabs/Module/Pubstream.php:93 +#: ../../Zotlabs/Widget/Notifications.php:131 +msgid "Public Stream" +msgstr "Flusso pubblico" -#: ../../Zotlabs/Module/Admin/Channels.php:154 -msgid "Censor" -msgstr "Applica censura" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Indirizzo non trovato." -#: ../../Zotlabs/Module/Admin/Channels.php:155 -msgid "Uncensor" -msgstr "Rimuovi censura" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "La ricerca dell'indirizzo è fallita." -#: ../../Zotlabs/Module/Admin/Channels.php:156 -msgid "Allow Code" -msgstr "Permetti codice" +#: ../../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/Channels.php:157 -msgid "Disallow Code" -msgstr "Non permettere codice" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" -#: ../../Zotlabs/Module/Admin/Channels.php:158 -#: ../../include/conversation.php:1651 -msgid "Channel" -msgstr "Canale" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Nessun indirizzo trovato." -#: ../../Zotlabs/Module/Admin/Channels.php:162 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Modifica gli indirizzi del canale" -#: ../../Zotlabs/Module/Admin/Channels.php:164 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Profiles.php:470 -msgid "Address" -msgstr "Indirizzo" +#: ../../Zotlabs/Module/Locs.php:119 ../../Zotlabs/Module/Admin.php:111 +msgid "Primary" +msgstr "Primario" + +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Elimina" + +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizza ora" + +#: ../../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/Channels.php:166 +#: ../../Zotlabs/Module/Locs.php:124 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?" +"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/Admin/Channels.php:167 +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of Pinned Navbar Apps" +msgstr "Cambia l'ordine della app bloccate sulla barra di navigazione" + +#: ../../Zotlabs/Module/Apporder.php:44 +msgid "Change Order of App Tray Apps" +msgstr "Cambia l'ordine delle app elencate nel menu delle app" + +#: ../../Zotlabs/Module/Apporder.php:45 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?" +"Use arrows to move the corresponding app left (top) or right (bottom) in the" +" navbar" +msgstr "Utilizza le frecce per spostare l'app a sinistra (su) o destra (giù) nella barra di navigazione" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "L'aggiornamento è stato marcato come eseguito." +#: ../../Zotlabs/Module/Apporder.php:45 +msgid "Use arrows to move the corresponding app up or down in the app tray" +msgstr "Utilizza le frecce per spostare l'app su o giù nel menu delle app" -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." +msgstr "Menù non trovato." -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 -#, php-format -msgid "Update %s was successfully applied." -msgstr "L'aggiornamento %s è terminato correttamente." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Impossibile creare l'elemento." -#: ../../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/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Non è possibile aggiornare l'elemento del menù." -#: ../../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/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Impossibile aggiungere l'elemento al menù." + +#: ../../Zotlabs/Module/Mitem.php:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Non trovato." + +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" +msgstr "Permessi del menu" + +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:521 +msgid "(click to open/close)" +msgstr "(clicca per aprire/chiudere)" + +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" +msgstr "Nome link" + +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" +msgstr "Azione del link o del sottomenu" + +#: ../../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/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/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:252 +#: ../../Zotlabs/Module/Settings/Channel.php:305 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:99 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Connedit.php:779 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Defperms.php:180 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/gitwiki/Mod_Gitwiki.php:166 +#: ../../addon/rainbowtag/rainbowtag.php:81 ../../addon/visage/visage.php:166 +#: ../../addon/nsabait/nsabait.php:157 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "No" +msgstr "No" + +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Admin/Site.php:254 +#: ../../Zotlabs/Module/Settings/Channel.php:305 +#: ../../Zotlabs/Module/Settings/Display.php:100 +#: ../../Zotlabs/Module/Api.php:98 ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Wiki.php:219 +#: ../../Zotlabs/Module/Connedit.php:396 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Defperms.php:180 +#: ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 ../../boot.php:1587 +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic_c/php/config.php:115 +#: ../../view/theme/redbasic/php/config.php:98 +#: ../../addon/planets/planets.php:149 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/gitwiki/Mod_Gitwiki.php:166 +#: ../../addon/rainbowtag/rainbowtag.php:81 ../../addon/visage/visage.php:166 +#: ../../addon/nsabait/nsabait.php:157 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:243 +#: ../../addon/twitter/twitter.php:252 ../../addon/twitter/twitter.php:261 +#: ../../addon/smileybutton/smileybutton.php:211 +#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/authchoose/authchoose.php:67 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "Yes" +msgstr "Sì" + +#: ../../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/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" +msgstr "Ordine dell'elenco" + +#: ../../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/Mitem.php:165 +msgid "Submit and finish" +msgstr "Salva e termina" + +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" +msgstr "Salva e continua" + +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" +msgstr "Menu:" + +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" +msgstr "Destinazione link" + +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" +msgstr "Modifica il menù" + +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" +msgstr "Modifica l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" +msgstr "Elimina l'elemento" + +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" +msgstr "Nuovo elemento" + +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" +msgstr "Modifica il contenitore del menù" + +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" +msgstr "Aggiungi un elemento al menù" + +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" +msgstr "Elimina questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" +msgstr "Modifica questo elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." +msgstr "L'elemento del menù non è stato trovato." + +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." +msgstr "L'elemento del menù è stato eliminato." + +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." +msgstr "L'elemento del menù non può essere eliminato." + +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" +msgstr "Modifica l'elemento del menù" + +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" +msgstr "Testo del link" + +#: ../../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:110 +msgid "Event can not end before it has started." +msgstr "Un evento non può terminare prima del suo inizio." + +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." +msgstr "Impossibile creare un'anteprima." + +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." +msgstr "Sono necessari il titolo e l'ora d'inizio dell'evento." + +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." +msgstr "Evento non trovato." + +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 +#: ../../Zotlabs/Module/Like.php:385 ../../include/conversation.php:119 +#: ../../include/text.php:2007 ../../include/event.php:1153 +msgid "event" +msgstr "l'evento" + +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" +msgstr "Modifica il titolo dell'evento" + +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:140 ../../Zotlabs/Module/Appman.php:141 +#: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 +#: ../../include/datetime.php:205 +msgid "Required" +msgstr "Obbligatorio" + +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" +msgstr "Categorie (separate da virgola)" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" +msgstr "Modifica la categoria" + +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" +msgstr "Categoria" + +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" +msgstr "Modifica data/ora di inizio" + +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +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:469 +msgid "Edit finish date and time" +msgstr "Modifica data/ora di fine" + +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" +msgstr "Data e ora di fine" + +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" +msgstr "Adatta al fuso orario di chi legge" + +#: ../../Zotlabs/Module/Events.php:471 +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:473 +msgid "Edit Description" +msgstr "Modifica la descrizione" + +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" +msgstr "Modifica il luogo" + +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1123 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/ThreadItem.php:760 +#: ../../include/conversation.php:1330 +msgid "Preview" +msgstr "Anteprima" + +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1402 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" + +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" +msgstr "Fuso orario: " + +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" +msgstr "Opzioni avanzate" + +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:266 +msgid "l, F j" +msgstr "l j F" + +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" +msgstr "Elimina l'evento" + +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:315 +#: ../../include/text.php:1826 +msgid "Link to Source" +msgstr "Link al sito d'origine" + +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" +msgstr "calendario" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Edit Event" +msgstr "Modifica l'evento" + +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:338 +msgid "Create Event" +msgstr "Crea un evento" + +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:341 +#: ../../include/channel.php:1637 +msgid "Export" +msgstr "Esporta" + +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" +msgstr "Evento eliminato" + +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" +msgstr "Impossibile eliminare l'evento" + +#: ../../Zotlabs/Module/Appman.php:38 ../../Zotlabs/Module/Appman.php:55 +msgid "App installed." +msgstr "App installata" + +#: ../../Zotlabs/Module/Appman.php:48 +msgid "Malformed app." +msgstr "L'app contiene errori" + +#: ../../Zotlabs/Module/Appman.php:129 +msgid "Embed code" +msgstr "Inserisci il codice" + +#: ../../Zotlabs/Module/Appman.php:135 +msgid "Edit App" +msgstr "Modifica app" + +#: ../../Zotlabs/Module/Appman.php:135 +msgid "Create App" +msgstr "Crea una app" + +#: ../../Zotlabs/Module/Appman.php:140 +msgid "Name of app" +msgstr "Nome app" + +#: ../../Zotlabs/Module/Appman.php:141 +msgid "Location (URL) of app" +msgstr "Indirizzo (URL) della app" + +#: ../../Zotlabs/Module/Appman.php:143 +msgid "Photo icon URL" +msgstr "URL icona" + +#: ../../Zotlabs/Module/Appman.php:143 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixel - facoltativa" + +#: ../../Zotlabs/Module/Appman.php:144 +msgid "Categories (optional, comma separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../Zotlabs/Module/Appman.php:145 +msgid "Version ID" +msgstr "ID versione" + +#: ../../Zotlabs/Module/Appman.php:146 +msgid "Price of app" +msgstr "Prezzo app" + +#: ../../Zotlabs/Module/Appman.php:147 +msgid "Location (URL) to purchase app" +msgstr "Indirizzo (URL) per acquistare la app" + +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Effettua l'accesso." + +#: ../../Zotlabs/Module/Magic.php:72 +msgid "Hub not found." +msgstr "Hub non trovato." + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:383 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:116 ../../include/text.php:2004 +msgid "photo" +msgstr "la foto" + +#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:383 +#: ../../addon/diaspora/Receiver.php:1518 ../../addon/pubcrawl/as.php:1359 +#: ../../include/conversation.php:144 ../../include/text.php:2010 +msgid "status" +msgstr "il messaggio di stato" + +#: ../../Zotlabs/Module/Subthread.php:142 +#, 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:144 +#, 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/Article_edit.php:44 ../../Zotlabs/Module/Cal.php:62 +#: ../../Zotlabs/Module/Chanview.php:96 ../../Zotlabs/Module/Page.php:75 +#: ../../Zotlabs/Module/Wall_upload.php:31 ../../Zotlabs/Module/Block.php:41 +#: ../../Zotlabs/Module/Card_edit.php:44 +msgid "Channel not found." +msgstr "Canale non trovato." + +#: ../../Zotlabs/Module/Article_edit.php:101 +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:207 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:288 +#: ../../Zotlabs/Module/Mail.php:430 ../../Zotlabs/Module/Card_edit.php:101 +#: ../../include/conversation.php:1278 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../Zotlabs/Module/Article_edit.php:117 +#: ../../Zotlabs/Module/Editblock.php:129 +#: ../../Zotlabs/Module/Card_edit.php:117 ../../include/conversation.php:1398 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" + +#: ../../Zotlabs/Module/Article_edit.php:128 +msgid "Edit Article" +msgstr "Modifica l'articolo" + +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 +msgid "Nothing to import." +msgstr "Non c'è niente da importare." + +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 +#: ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" +msgstr "Impossibile importare i dati dal vecchio hub" + +#: ../../Zotlabs/Module/Import_items.php:77 +#: ../../Zotlabs/Module/Import.php:102 +msgid "Imported file is empty." +msgstr "Il file da importare è vuoto." + +#: ../../Zotlabs/Module/Import_items.php:93 +#: ../../Zotlabs/Module/Import.php:121 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Attenzione: le versioni di database differiscono di %1$d aggiornamenti." + +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" +msgstr "Importazione completata" + +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" +msgstr "Importa i contenuti" + +#: ../../Zotlabs/Module/Import_items.php:126 +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/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:516 +msgid "File to Upload" +msgstr "File da caricare" + +#: ../../Zotlabs/Module/New_channel.php:119 +#: ../../Zotlabs/Module/Manage.php:138 +#, 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/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 +msgid "Name or caption" +msgstr "Nome o titolo" + +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:254 +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/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 +msgid "Choose a short nickname" +msgstr "Scegli un nome breve" + +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:256 +#, 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/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Channel role and privacy" +msgstr "Tipo di canale e privacy" + +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Select a channel role with your privacy requirements." +msgstr "Scegli il tipo di canale che vuoi e la privacy da applicare." + +#: ../../Zotlabs/Module/New_channel.php:135 +#: ../../Zotlabs/Module/Register.php:257 +msgid "Read more about roles" +msgstr "Maggiori informazioni sui ruoli" + +#: ../../Zotlabs/Module/New_channel.php:138 +msgid "Create Channel" +msgstr "Crea un canale" + +#: ../../Zotlabs/Module/New_channel.php:139 +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:140 +msgid "" +"or import an existing channel from another location." +msgstr "oppure importa un canale esistente da un altro server/hub." + +#: ../../Zotlabs/Module/New_channel.php:145 +msgid "Validate" +msgstr "" + +#: ../../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/Removeme.php:60 +msgid "Remove This Channel" +msgstr "Elimina questo canale" + +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "WARNING: " +msgstr "ATTENZIONE:" + +#: ../../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/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/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +#: ../../Zotlabs/Module/Changeaddr.php:79 +msgid "Please enter your password for verification:" +msgstr "Inserisci la tua password per verifica:" + +#: ../../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/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/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:592 +msgid "Remove Channel" +msgstr "Elimina questo canale" + +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Files: shared with me" +msgstr "File: condivisi con me" + +#: ../../Zotlabs/Module/Sharedwithme.php:106 +msgid "NEW" +msgstr "NOVITÀ" + +#: ../../Zotlabs/Module/Sharedwithme.php:107 +#: ../../Zotlabs/Storage/Browser.php:285 ../../include/text.php:1434 +msgid "Size" +msgstr "Dimensione" + +#: ../../Zotlabs/Module/Sharedwithme.php:108 +#: ../../Zotlabs/Storage/Browser.php:286 +msgid "Last Modified" +msgstr "Ultima modifica" + +#: ../../Zotlabs/Module/Sharedwithme.php:109 +msgid "Remove all files" +msgstr "Elimina tutti i file" + +#: ../../Zotlabs/Module/Sharedwithme.php:110 +msgid "Remove this file" +msgstr "Elimina questo file" + +#: ../../Zotlabs/Module/Setup.php:170 +msgid "$Projectname Server - Setup" +msgstr "Server $Projectname - Installazione" + +#: ../../Zotlabs/Module/Setup.php:174 +msgid "Could not connect to database." +msgstr " Impossibile connettersi al database." + +#: ../../Zotlabs/Module/Setup.php:178 +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/Setup.php:185 +msgid "Could not create table." +msgstr "Impossibile creare le tabelle." + +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Your site database has been installed." +msgstr "Il database del sito è stato installato." + +#: ../../Zotlabs/Module/Setup.php:197 +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/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 +#: ../../Zotlabs/Module/Setup.php:745 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Leggi il file 'install/INSTALL.txt'." + +#: ../../Zotlabs/Module/Setup.php:259 +msgid "System check" +msgstr "Verifica del sistema" + +#: ../../Zotlabs/Module/Setup.php:264 +msgid "Check again" +msgstr "Verifica di nuovo" + +#: ../../Zotlabs/Module/Setup.php:286 +msgid "Database connection" +msgstr "Connessione al database" + +#: ../../Zotlabs/Module/Setup.php:287 +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/Setup.php:288 +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/Setup.php:289 +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/Setup.php:293 +msgid "Database Server Name" +msgstr "Server del database" + +#: ../../Zotlabs/Module/Setup.php:293 +msgid "Default is 127.0.0.1" +msgstr "Il valore predefinito è 127.0.0.1" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Port" +msgstr "Port del database" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Communication port number - use 0 for default" +msgstr "Scrivi 0 per usare il valore standard" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Login Name" +msgstr "Utente database" + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Password" +msgstr "Password database" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Name" +msgstr "Nome database" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Type" +msgstr "Tipo database" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +msgid "Site administrator email address" +msgstr "Indirizzo email dell'amministratore del hub" + +#: ../../Zotlabs/Module/Setup.php:300 ../../Zotlabs/Module/Setup.php:341 +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/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Website URL" +msgstr "URL completo del sito" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:343 +msgid "Please use SSL (https) URL if available." +msgstr "Se disponibile, usa l'indirizzo SSL (https)." + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:345 +msgid "Please select a default timezone for your website" +msgstr "Seleziona il fuso orario predefinito per il tuo hub" + +#: ../../Zotlabs/Module/Setup.php:330 +msgid "Site settings" +msgstr "Impostazioni del hub" + +#: ../../Zotlabs/Module/Setup.php:384 +msgid "PHP version 5.5 or greater is required." +msgstr "E' necessario PHP versione 5.5 o superiore." + +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version" +msgstr "Versione PHP" + +#: ../../Zotlabs/Module/Setup.php:401 +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/Setup.php:402 +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/Setup.php:406 +msgid "PHP executable path" +msgstr "Path del comando PHP" + +#: ../../Zotlabs/Module/Setup.php:406 +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:411 +msgid "Command line PHP" +msgstr "PHP da riga di comando" + +#: ../../Zotlabs/Module/Setup.php:421 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "Non è possible accedere alla linea di comando PHP perché shell_exec() è disabilitato. Requisito necessario." + +#: ../../Zotlabs/Module/Setup.php:424 +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/Setup.php:425 +msgid "This is required for message delivery to work." +msgstr "E' necessario perché funzioni la consegna dei messaggi." + +#: ../../Zotlabs/Module/Setup.php:428 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" + +#: ../../Zotlabs/Module/Setup.php:446 +#, 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/Setup.php:451 +msgid "You can adjust these settings in the server php.ini file." +msgstr "Puoi modificare queste impostazione nel file php.ini del server." + +#: ../../Zotlabs/Module/Setup.php:453 +msgid "PHP upload limits" +msgstr "Limiti PHP in upload" + +#: ../../Zotlabs/Module/Setup.php:476 +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/Setup.php:477 +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/Setup.php:480 +msgid "Generate encryption keys" +msgstr "Genera chiavi di cifratura" + +#: ../../Zotlabs/Module/Setup.php:497 +msgid "libCurl PHP module" +msgstr "modulo PHP libCurl" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "GD graphics PHP module" +msgstr "modulo PHP GD graphics" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "OpenSSL PHP module" +msgstr "modulo PHP OpenSSL" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "PDO database PHP module" +msgstr "PDO database PHP module" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "mb_string PHP module" +msgstr "modulo PHP mb_string" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "xml PHP module" +msgstr "modulo xml PHP" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "zip PHP module" +msgstr "modulo zip del PHP" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "modulo Apache mod_rewrite" + +#: ../../Zotlabs/Module/Setup.php:507 +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/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:513 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" +msgstr "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini" + +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Errore: shell_exec è richiesto ma non è installato o è stato disabilitato in php.ini" + +#: ../../Zotlabs/Module/Setup.php:527 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Errore: il modulo libCURL di PHP è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:531 +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/Setup.php:535 +msgid "Error: openssl PHP module required but not installed." +msgstr "Errore: il modulo openssl di PHP è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "Errore: PDO database PHP module è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:543 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Errore: il modulo PHP mb_string è richiesto ma non installato." + +#: ../../Zotlabs/Module/Setup.php:547 +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/Setup.php:551 +msgid "Error: zip PHP module required but not installed." +msgstr "Errore: il modulo zip del PHP necessario ma non installato." + +#: ../../Zotlabs/Module/Setup.php:569 +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/Setup.php:570 +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/Setup.php:571 +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/Setup.php:572 +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:575 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php è scrivibile" + +#: ../../Zotlabs/Module/Setup.php:589 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." +msgstr "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione." + +#: ../../Zotlabs/Module/Setup.php:590 +#, 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/Setup.php:591 ../../Zotlabs/Module/Setup.php:612 +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/Setup.php:592 +#, 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/Setup.php:595 +#, php-format +msgid "%s is writable" +msgstr "%s è scrivibile" + +#: ../../Zotlabs/Module/Setup.php:611 +msgid "" +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level" +" web folder" +msgstr "Questo software salva i file caricati nelle directory sul filesystem. Il server web necessita di permessi di scrittura sulle directory alla radice della cartella web" + +#: ../../Zotlabs/Module/Setup.php:615 +msgid "store is writable" +msgstr "l'archivio è scrivibile" + +#: ../../Zotlabs/Module/Setup.php:647 +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/Setup.php:648 +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/Setup.php:649 +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/Setup.php:650 +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:651 +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:652 +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:654 +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:656 +msgid "SSL certificate validation" +msgstr "Validazione del certificato SSL" + +#: ../../Zotlabs/Module/Setup.php:662 +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:665 +msgid "Url rewrite is working" +msgstr "Url rewrite funziona correttamente" + +#: ../../Zotlabs/Module/Setup.php:679 +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:703 +#: ../../addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "La creazione delle tabelle del database ha generato errori." + +#: ../../Zotlabs/Module/Setup.php:743 +msgid "

What next?

" +msgstr "

E ora?

" + +#: ../../Zotlabs/Module/Setup.php:744 +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/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/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/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/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/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/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/Connect.php:114 +msgid "Restricted or Premium Channel" +msgstr "Canale premium - con restrizioni" + +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" +msgstr "Statistiche della coda" + +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" +msgstr "Totale" + +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" +msgstr "Priorità" + +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" +msgstr "URL di destinazione" + +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" +msgstr "Questo hub è definitivamente offline" + +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" +msgstr "Svuota la coda per questo hub" + +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" +msgstr "Ultimo scambio dati" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" +msgstr "Off" + +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" +msgstr "On" + +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" +msgstr "Rendi non modificabile %s" + +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" +msgstr "L'aggiornamento è stato marcato come eseguito." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:31 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:34 +#, php-format +msgid "Update %s was successfully applied." +msgstr "L'aggiornamento %s è terminato correttamente." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:38 +#, 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/Admin/Dbsync.php:41 +#, php-format +msgid "Update function %s could not be found." +msgstr "Impossibile trovare la funzione di aggiornamento %s" + +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" +msgstr "Aggiornamenti falliti." + +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" +msgstr "Marca come eseguito (se applicato manualmente)." + +#: ../../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/Admin/Dbsync.php:67 +msgid "No failed updates." +msgstr "Nessun aggiornamento fallito." + +#: ../../Zotlabs/Module/Admin/Plugins.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:46 +#: ../../Zotlabs/Module/Display.php:410 +#: ../../Zotlabs/Module/Filestorage.php:24 ../../Zotlabs/Module/Admin.php:62 +#: ../../include/items.php:3569 +msgid "Item not found." +msgstr "Elemento non trovato." + +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s non attivo." + +#: ../../Zotlabs/Module/Admin/Plugins.php:294 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s attivo." + +#: ../../Zotlabs/Module/Admin/Plugins.php:310 +#: ../../Zotlabs/Module/Admin/Themes.php:95 +msgid "Disable" +msgstr "Disattiva" + +#: ../../Zotlabs/Module/Admin/Plugins.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 +msgid "Enable" +msgstr "Attiva" + +#: ../../Zotlabs/Module/Admin/Plugins.php:341 +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +#: ../../Zotlabs/Module/Admin/Accounts.php:165 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin.php:136 +msgid "Administration" +msgstr "Amministrazione" + +#: ../../Zotlabs/Module/Admin/Plugins.php:342 +#: ../../Zotlabs/Module/Admin/Plugins.php:437 +#: ../../Zotlabs/Widget/Admin.php:27 +msgid "Plugins" +msgstr "Plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 +msgid "Toggle" +msgstr "Attiva/disattiva" + +#: ../../Zotlabs/Module/Admin/Plugins.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:242 +#: ../../Zotlabs/Widget/Newmember.php:55 +#: ../../Zotlabs/Widget/Settings_menu.php:133 ../../include/nav.php:105 +#: ../../include/nav.php:192 +msgid "Settings" +msgstr "Impostazioni" + +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 +msgid "Author: " +msgstr "Autore:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 +msgid "Maintainer: " +msgstr "Gestore:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +msgid "Minimum project version: " +msgstr "Minima versione hubzilla" + +#: ../../Zotlabs/Module/Admin/Plugins.php:354 +msgid "Maximum project version: " +msgstr "Massima versione hubzilla" + +#: ../../Zotlabs/Module/Admin/Plugins.php:355 +msgid "Minimum PHP version: " +msgstr "Minima versione PHP:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:356 +msgid "Compatible Server Roles: " +msgstr "Ruoli previsti per questo server" + +#: ../../Zotlabs/Module/Admin/Plugins.php:357 +msgid "Requires: " +msgstr "Necessita di:" + +#: ../../Zotlabs/Module/Admin/Plugins.php:358 +#: ../../Zotlabs/Module/Admin/Plugins.php:442 +msgid "Disabled - version incompatibility" +msgstr "Disabilitato - incompatibilità di versione" + +#: ../../Zotlabs/Module/Admin/Plugins.php:411 +msgid "Enter the public git repository URL of the plugin repo." +msgstr "Inserisci lo URL del repository git dei plugin." + +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Plugin repo git URL" +msgstr "URL git del repository del plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "Custom repo name" +msgstr "Nome repository personalizzato" + +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "(optional)" +msgstr "(facoltativo)" + +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +msgid "Download Plugin Repo" +msgstr "Scarica il repository del plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:421 +msgid "Install new repo" +msgstr "Installa un nuovo repository" + +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:393 +msgid "Install" +msgstr "Installa" + +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +msgid "Manage Repos" +msgstr "Gestisci i repository" + +#: ../../Zotlabs/Module/Admin/Plugins.php:446 +msgid "Installed Plugin Repositories" +msgstr "Repository per i plugin installati" + +#: ../../Zotlabs/Module/Admin/Plugins.php:447 +msgid "Install a New Plugin Repository" +msgstr "Installa un nuovo repository per i plugin" + +#: ../../Zotlabs/Module/Admin/Plugins.php:454 +msgid "Switch branch" +msgstr "Cambia branch" + +#: ../../Zotlabs/Module/Admin/Plugins.php:455 +#: ../../Zotlabs/Module/Photos.php:1020 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 +msgid "Remove" +msgstr "Rimuovi" + +#: ../../Zotlabs/Module/Admin/Accounts.php:37 +#, 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/Admin/Accounts.php:44 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account eliminato" +msgstr[1] "%s account eliminati" + +#: ../../Zotlabs/Module/Admin/Accounts.php:80 +msgid "Account not found" +msgstr "Account non trovato" + +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2462 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' eliminato" + +#: ../../Zotlabs/Module/Admin/Accounts.php:99 +#, php-format +msgid "Account '%s' blocked" +msgstr "Aggiunto un blocco verso '%s'" + +#: ../../Zotlabs/Module/Admin/Accounts.php:107 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Rimosso il blocco verso '%s'" + +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Accounts.php:179 +#: ../../Zotlabs/Module/Admin.php:96 ../../Zotlabs/Widget/Admin.php:23 +msgid "Accounts" +msgstr "Account" + +#: ../../Zotlabs/Module/Admin/Accounts.php:168 +#: ../../Zotlabs/Module/Admin/Channels.php:148 +msgid "select all" +msgstr "seleziona tutti" + +#: ../../Zotlabs/Module/Admin/Accounts.php:169 +msgid "Registrations waiting for confirm" +msgstr "Registrazioni in attesa di conferma" + +#: ../../Zotlabs/Module/Admin/Accounts.php:170 +msgid "Request date" +msgstr "Data richiesta" + +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +msgid "No registrations." +msgstr "Nessuna registrazione." + +#: ../../Zotlabs/Module/Admin/Accounts.php:172 +#: ../../Zotlabs/Module/Connections.php:287 ../../include/conversation.php:732 +msgid "Approve" +msgstr "Approva" + +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +msgid "Deny" +msgstr "Nega" + +#: ../../Zotlabs/Module/Admin/Accounts.php:175 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Block" +msgstr "Blocca" + +#: ../../Zotlabs/Module/Admin/Accounts.php:176 +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "Unblock" +msgstr "Sblocca" + +#: ../../Zotlabs/Module/Admin/Accounts.php:181 +msgid "ID" +msgstr "ID" + +#: ../../Zotlabs/Module/Admin/Accounts.php:183 ../../include/group.php:284 +msgid "All Channels" +msgstr "Tutti i canali" + +#: ../../Zotlabs/Module/Admin/Accounts.php:184 +msgid "Register date" +msgstr "Data registrazione" + +#: ../../Zotlabs/Module/Admin/Accounts.php:185 +msgid "Last login" +msgstr "Ultimo accesso" + +#: ../../Zotlabs/Module/Admin/Accounts.php:186 +msgid "Expires" +msgstr "Con scadenza" + +#: ../../Zotlabs/Module/Admin/Accounts.php:187 +msgid "Service Class" +msgstr "Classe dell'account" + +#: ../../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 "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?" + +#: ../../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 "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/Logs.php:28 +msgid "Log settings updated." +msgstr "Impostazioni di log aggiornate." + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "Log" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "Pulisci" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "Debugging" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "File di log" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +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/Admin/Logs.php:93 +msgid "Log level" +msgstr "Livello di log" + +#: ../../Zotlabs/Module/Admin/Channels.php:31 +#, 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/Admin/Channels.php:40 +#, 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/Admin/Channels.php:46 +#, 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/Admin/Channels.php:65 +msgid "Channel not found" +msgstr "Canale non trovato" + +#: ../../Zotlabs/Module/Admin/Channels.php:75 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Il canale '%s' è stato rimosso" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' censored" +msgstr "Applicata una censura al canale '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:87 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Rimossa la censura dal canale '%s'" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Il canale '%s' permette codice nei contenuti" + +#: ../../Zotlabs/Module/Admin/Channels.php:98 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Il canale '%s' non permette codice nei contenuti" + +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Module/Admin.php:110 ../../Zotlabs/Widget/Admin.php:24 +msgid "Channels" +msgstr "Canali" + +#: ../../Zotlabs/Module/Admin/Channels.php:150 +msgid "Censor" +msgstr "Applica censura" + +#: ../../Zotlabs/Module/Admin/Channels.php:151 +msgid "Uncensor" +msgstr "Rimuovi censura" + +#: ../../Zotlabs/Module/Admin/Channels.php:152 +msgid "Allow Code" +msgstr "Permetti codice" + +#: ../../Zotlabs/Module/Admin/Channels.php:153 +msgid "Disallow Code" +msgstr "Non permettere codice" + +#: ../../Zotlabs/Module/Admin/Channels.php:154 +#: ../../include/conversation.php:1808 ../../include/nav.php:378 +msgid "Channel" +msgstr "Canale" + +#: ../../Zotlabs/Module/Admin/Channels.php:158 +msgid "UID" +msgstr "UID" + +#: ../../Zotlabs/Module/Admin/Channels.php:162 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +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/Admin/Channels.php:163 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +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/Themes.php:26 +msgid "Theme settings updated." +msgstr "Le impostazioni del tema sono state aggiornate." + +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." +msgstr "Nessun tema trovato." + +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" +msgstr "Istantanea dello schermo" + +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" +msgstr "Temi" + +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" +msgstr "[Sperimentale]" + +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" +msgstr "[Non supportato]" + +#: ../../Zotlabs/Module/Admin/Site.php:158 +msgid "Site settings updated." +msgstr "Impostazioni del sito salvate correttamente." + +#: ../../Zotlabs/Module/Admin/Site.php:184 +#: ../../view/theme/redbasic_c/php/config.php:15 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3082 +msgid "Default" +msgstr "Predefinito" + +#: ../../Zotlabs/Module/Admin/Site.php:195 +#: ../../Zotlabs/Module/Settings/Display.php:130 +#, php-format +msgid "%s - (Incompatible)" +msgstr "%s - (Incompatibile)" + +#: ../../Zotlabs/Module/Admin/Site.php:202 +msgid "mobile" +msgstr "mobile" + +#: ../../Zotlabs/Module/Admin/Site.php:204 +msgid "experimental" +msgstr "sperimentale" + +#: ../../Zotlabs/Module/Admin/Site.php:206 +msgid "unsupported" +msgstr "non supportato" + +#: ../../Zotlabs/Module/Admin/Site.php:253 +msgid "Yes - with approval" +msgstr "Sì - con approvazione" + +#: ../../Zotlabs/Module/Admin/Site.php:259 +msgid "My site is not a public server" +msgstr "Non è un server pubblico" + +#: ../../Zotlabs/Module/Admin/Site.php:260 +msgid "My site has paid access only" +msgstr "È un servizio a pagamento" + +#: ../../Zotlabs/Module/Admin/Site.php:261 +msgid "My site has free access only" +msgstr "È un servizio gratuito" + +#: ../../Zotlabs/Module/Admin/Site.php:262 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" + +#: ../../Zotlabs/Module/Admin/Site.php:274 +msgid "Beginner/Basic" +msgstr "Principiante" + +#: ../../Zotlabs/Module/Admin/Site.php:275 +msgid "Novice - not skilled but willing to learn" +msgstr "Novizio - disposto a imparare" + +#: ../../Zotlabs/Module/Admin/Site.php:276 +msgid "Intermediate - somewhat comfortable" +msgstr "Intermedio - con alcune conoscenze tecniche" + +#: ../../Zotlabs/Module/Admin/Site.php:277 +msgid "Advanced - very comfortable" +msgstr "Avanzato - a mio agio con gli aspetti tecnici" + +#: ../../Zotlabs/Module/Admin/Site.php:278 +msgid "Expert - I can write computer code" +msgstr "Esperto - posso scrivere codice" + +#: ../../Zotlabs/Module/Admin/Site.php:279 +msgid "Wizard - I probably know more than you do" +msgstr "Genio - probabilmente ne so più di te!" + +#: ../../Zotlabs/Module/Admin/Site.php:288 ../../Zotlabs/Widget/Admin.php:22 +msgid "Site" +msgstr "Sito" + +#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Register.php:269 +msgid "Registration" +msgstr "Registrazione" + +#: ../../Zotlabs/Module/Admin/Site.php:291 +msgid "File upload" +msgstr "Caricamento file" + +#: ../../Zotlabs/Module/Admin/Site.php:292 +msgid "Policies" +msgstr "Politiche" + +#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../include/contact_widgets.php:16 +msgid "Advanced" +msgstr "Avanzate" + +#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../addon/statusnet/statusnet.php:891 +msgid "Site name" +msgstr "Nome del sito" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +msgid "Site default technical skill level" +msgstr "Livello tecnico predefinito per gli utenti del sito" + +#: ../../Zotlabs/Module/Admin/Site.php:299 +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/Admin/Site.php:301 +msgid "Lock the technical skill level setting" +msgstr "Il livello tecnico non potrà essere modificato" + +#: ../../Zotlabs/Module/Admin/Site.php:301 +msgid "Members can set their own technical comfort level by default" +msgstr "Gli utenti possono scegliere il livello tecnico preferito" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Banner/Logo" +msgstr "Banner o logo" + +#: ../../Zotlabs/Module/Admin/Site.php:303 +msgid "Unfiltered HTML/CSS/JS is allowed" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +msgid "Administrator Information" +msgstr "Informazioni sull'amministratore" + +#: ../../Zotlabs/Module/Admin/Site.php:304 +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/Admin/Site.php:305 +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "Site Information" +msgstr "Informazioni sul sito" + +#: ../../Zotlabs/Module/Admin/Site.php:305 +msgid "" +"Publicly visible description of this site. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Descrizione del sito, visibile pubblicamente. Visualizzata sulla pagina siteinfo. Puoi usare il BBCode" + +#: ../../Zotlabs/Module/Admin/Site.php:306 +msgid "System language" +msgstr "Lingua di sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +msgid "System theme" +msgstr "Tema di sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:307 +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/Admin/Site.php:308 +msgid "Mobile system theme" +msgstr "Tema di sistema per dispositivi mobili" + +#: ../../Zotlabs/Module/Admin/Site.php:308 +msgid "Theme for mobile devices" +msgstr "Tema per i dispositivi mobili" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "Allow Feeds as Connections" +msgstr "Permetti di aggiungere i feed come contatti" + +#: ../../Zotlabs/Module/Admin/Site.php:310 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso delle risorse di sistema!)" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +msgid "Maximum image size" +msgstr "Dimensione massima immagini" + +#: ../../Zotlabs/Module/Admin/Site.php:311 +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/Admin/Site.php:312 +msgid "Does this site allow new member registration?" +msgstr "Questo sito permette a nuovi utenti di registrarsi?" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "Invitation only" +msgstr "Solo con invito" + +#: ../../Zotlabs/Module/Admin/Site.php:313 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "La registrazione è permessa solo a chi possiede un codice di invito. Funziona solo se la possibilità di registrarsi è impostata a 'Sì'." + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:314 +msgid "Minimum age (in years) for who may register on this site." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:315 +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/Admin/Site.php:316 +msgid "Register text" +msgstr "Testo di registrazione" + +#: ../../Zotlabs/Module/Admin/Site.php:316 +msgid "Will be displayed prominently on the registration page." +msgstr "Sarà mostrato ben visibile nella pagina di registrazione." + +#: ../../Zotlabs/Module/Admin/Site.php:317 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" + +#: ../../Zotlabs/Module/Admin/Site.php:317 +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/Admin/Site.php:318 +msgid "Preserve site homepage URL" +msgstr "Conserva l'URL della homepage" + +#: ../../Zotlabs/Module/Admin/Site.php:318 +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/Admin/Site.php:319 +msgid "Accounts abandoned after x days" +msgstr "Account abbandonati dopo X giorni" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +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/Admin/Site.php:320 +msgid "Allowed friend domains" +msgstr "Domini fidati e consentiti" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +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/Admin/Site.php:321 +msgid "Verify Email Addresses" +msgstr "Verifica l'indirizzo email" + +#: ../../Zotlabs/Module/Admin/Site.php:321 +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/Admin/Site.php:322 +msgid "Force publish" +msgstr "Forza la publicazione del profilo" + +#: ../../Zotlabs/Module/Admin/Site.php:322 +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/Admin/Site.php:323 +msgid "Import Public Streams" +msgstr "Suggerisci contenuti pubblici della rete Hubzilla" + +#: ../../Zotlabs/Module/Admin/Site.php:323 +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/Admin/Site.php:324 +msgid "Site only Public Streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:324 +msgid "" +"Allow access to public content originating only from this site if Imported " +"Public Streams are disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "Allow anybody on the internet to access the Public streams" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:325 +msgid "" +"Disable to require authentication before viewing. Warning: this content is " +"unmoderated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +msgid "Login on Homepage" +msgstr "Login sulla homepage" + +#: ../../Zotlabs/Module/Admin/Site.php:326 +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/Admin/Site.php:327 +msgid "Enable context help" +msgstr "Abilita la guida contestuale" + +#: ../../Zotlabs/Module/Admin/Site.php:327 +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/Site.php:329 +msgid "Reply-to email address for system generated email." +msgstr "Indirizzo Reply-to per mail generate dal sistema." + +#: ../../Zotlabs/Module/Admin/Site.php:330 +msgid "Sender (From) email address for system generated email." +msgstr "Indirzzo email del mittente (From) per mail generate dal sistema." + +#: ../../Zotlabs/Module/Admin/Site.php:331 +msgid "Name of email sender for system generated email." +msgstr "Nome del mittente per mail generate dal sistema" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Directory Server URL" +msgstr "URL del directory server" + +#: ../../Zotlabs/Module/Admin/Site.php:333 +msgid "Default directory server" +msgstr "Directory server predefinito" + +#: ../../Zotlabs/Module/Admin/Site.php:335 +msgid "Proxy user" +msgstr "Utente proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:336 +msgid "Proxy URL" +msgstr "URL proxy" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Network timeout" +msgstr "Timeout rete" + +#: ../../Zotlabs/Module/Admin/Site.php:337 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." + +#: ../../Zotlabs/Module/Admin/Site.php:338 +msgid "Delivery interval" +msgstr "Recapito ritardato" + +#: ../../Zotlabs/Module/Admin/Site.php:338 +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/Admin/Site.php:339 +msgid "Deliveries per process" +msgstr "Tentativi di recapito per processo" + +#: ../../Zotlabs/Module/Admin/Site.php:339 +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/Admin/Site.php:340 +msgid "Queue Threshold" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:340 +msgid "" +"Always defer immediate delivery if queue contains more than this number of " +"entries." +msgstr "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi." + +#: ../../Zotlabs/Module/Admin/Site.php:341 +msgid "Poll interval" +msgstr "Intervallo di polling" + +#: ../../Zotlabs/Module/Admin/Site.php:341 +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/Admin/Site.php:342 +msgid "Path to ImageMagick convert program" +msgstr "Percorso del comando convert di ImageMagic" + +#: ../../Zotlabs/Module/Admin/Site.php:342 +msgid "" +"If set, use this program to generate photo thumbnails for huge images ( > " +"4000 pixels in either dimension), otherwise memory exhaustion may occur. " +"Example: /usr/bin/convert" +msgstr "Se impostato, utilizza questo programma per generare le anteprime di immagini molto grandi ( > 4000 pixel in larghezza o altezza), per evitare di esaurire la memoria. Esempio: /user/bin/convert" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "Allow SVG thumbnails in file browser" +msgstr "Permetti le anteprime SVG nell'elenco dei file" + +#: ../../Zotlabs/Module/Admin/Site.php:343 +msgid "WARNING: SVG images may contain malicious code." +msgstr "ATTENZIONE: le immagini SVG potrebbero contenere codice malevolo." + +#: ../../Zotlabs/Module/Admin/Site.php:344 +msgid "Maximum Load Average" +msgstr "Carico massimo medio" + +#: ../../Zotlabs/Module/Admin/Site.php:344 +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/Site.php:345 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" + +#: ../../Zotlabs/Module/Admin/Site.php:345 +msgid "0 for no expiration of imported content" +msgstr "0 per non avere scadenza" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +msgid "" +"Public servers: Optional landing (marketing) webpage for new registrants" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:347 +#, php-format +msgid "Create this page first. Default is %s/register" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Page to display after creating a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:348 +msgid "Recommend: profiles, go, or settings" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Optional: site location" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:350 +msgid "Region or country" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" +msgstr "Nuovo campo del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" +msgstr "Nome breve del campo" + +#: ../../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/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" +msgstr "Tipo di dati" + +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" +msgstr "Nome del campo" + +#: ../../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/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" +msgstr "Testo di aiuto" + +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" +msgstr "Informazioni aggiuntive (facoltative)" + +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1052 +#: ../../include/text.php:1064 +msgid "Save" +msgstr "Salva" + +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" +msgstr "Impossibile trovare la definizione del campo" + +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" +msgstr "Modifica campo del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" +msgstr "Campi del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" +msgstr "Campi base del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" +msgstr "Campi avanzati del profilo" + +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" +msgstr "(In aggiunta ai campi di base)" + +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" +msgstr "Tutti i campi disponibili" + +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" +msgstr "Campi personalizzati" + +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" +msgstr "Aggiungi campo personalizzato" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." +msgstr "La password per l'utente %d è cambiata." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." +msgstr "L'impostazioni sono state aggiornate." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." +msgstr "Account non trovato." + +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" +msgstr "Modifica le impostazioni" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" +msgstr "Nuova password" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" +msgstr "Ripeti la nuova password" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" +msgstr "Livello tecnico" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" +msgstr "Lingua (per le email di sistema)" + +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" +msgstr "Classe dell'account" + +#: ../../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/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/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/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/Admin/Security.php:87 +#: ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" +msgstr "Sicurezza" + +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" +msgstr "Blocca pagine pubbliche" + +#: ../../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/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" +msgstr "Imposta il \"Transport Security\" HTTP header" + +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" +msgstr "Imposta il \"Content Security Policy\" HTTP header" + +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" +msgstr "Domini email consentiti" + +#: ../../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/Admin/Security.php:93 +msgid "Not allowed email domains" +msgstr "Domini email non consentiti" + +#: ../../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/Admin/Security.php:94 +msgid "Allow communications only from these sites" +msgstr "Permetti la comunicazione solo da questi siti" + +#: ../../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/Admin/Security.php:95 +msgid "Block communications from these sites" +msgstr "Blocca la comunicazione da questi siti" + +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" +msgstr "Permetti la comunicazione solo da questi canali" + +#: ../../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/Admin/Security.php:97 +msgid "Block communications from these channels" +msgstr "Blocca la comunicazione da questi 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/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/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/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" +msgstr "Blocca i contenuti incorporati HTML da questi domini" + +#: ../../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/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 +msgctxt "acl" +msgid "Profile" +msgstr "Profilo" + +#: ../../Zotlabs/Module/Moderate.php:55 +msgid "Comment approved" +msgstr "Commento approvato" + +#: ../../Zotlabs/Module/Moderate.php:59 +msgid "Comment deleted" +msgstr "Commento eliminato" + +#: ../../Zotlabs/Module/Settings/Permcats.php:37 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:61 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:94 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:102 +msgid "Permission Name" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:103 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:891 ../../Zotlabs/Module/Defperms.php:250 +msgid "My Settings" +msgstr "Permessi che concedo" + +#: ../../Zotlabs/Module/Settings/Permcats.php:105 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:886 ../../Zotlabs/Module/Defperms.php:248 +msgid "inherited" +msgstr "derivato" + +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:893 ../../Zotlabs/Module/Defperms.php:253 +msgid "Individual Permissions" +msgstr "Permessi individuali" + +#: ../../Zotlabs/Module/Settings/Permcats.php:109 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:894 +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/Channel.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:68 +#: ../../Zotlabs/Module/Settings/Channel.php:69 +#: ../../Zotlabs/Module/Settings/Channel.php:72 +#: ../../Zotlabs/Module/Settings/Channel.php:83 +#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:24 +#: ../../include/selectors.php:123 ../../include/channel.php:437 +#: ../../include/channel.php:438 ../../include/channel.php:445 +msgid "Friends" +msgstr "Amici" + +#: ../../Zotlabs/Module/Settings/Channel.php:262 +#: ../../Zotlabs/Module/Defperms.php:103 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:772 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." +msgstr "Impostazioni aggiornate." + +#: ../../Zotlabs/Module/Settings/Channel.php:323 +msgid "Nobody except yourself" +msgstr "Nessuno tranne te" + +#: ../../Zotlabs/Module/Settings/Channel.php:324 +msgid "Only those you specifically allow" +msgstr "Solo chi riceve il mio permesso" + +#: ../../Zotlabs/Module/Settings/Channel.php:325 +msgid "Approved connections" +msgstr "Contatti approvati" + +#: ../../Zotlabs/Module/Settings/Channel.php:326 +msgid "Any connections" +msgstr "Tutti i contatti" + +#: ../../Zotlabs/Module/Settings/Channel.php:327 +msgid "Anybody on this website" +msgstr "Chiunque su questo hub" + +#: ../../Zotlabs/Module/Settings/Channel.php:328 +msgid "Anybody in this network" +msgstr "Chiunque su questa rete" + +#: ../../Zotlabs/Module/Settings/Channel.php:329 +msgid "Anybody authenticated" +msgstr "Chiunque abbia effettuato l'accesso" + +#: ../../Zotlabs/Module/Settings/Channel.php:330 +msgid "Anybody on the internet" +msgstr "Chiunque su internet" + +#: ../../Zotlabs/Module/Settings/Channel.php:405 +msgid "Publish your default profile in the network directory" +msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" + +#: ../../Zotlabs/Module/Settings/Channel.php:410 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Vuoi essere suggerito come amico ai nuovi membri?" + +#: ../../Zotlabs/Module/Settings/Channel.php:414 +msgid "or" +msgstr "o" + +#: ../../Zotlabs/Module/Settings/Channel.php:419 +msgid "Your channel address is" +msgstr "L'indirizzo del tuo canale è" + +#: ../../Zotlabs/Module/Settings/Channel.php:422 +msgid "Your files/photos are accessible via WebDAV at" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "Channel Settings" +msgstr "Impostazioni del canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:493 +msgid "Basic Settings" +msgstr "Impostazioni di base" + +#: ../../Zotlabs/Module/Settings/Channel.php:494 +#: ../../include/channel.php:1522 +msgid "Full Name:" +msgstr "Nome completo:" + +#: ../../Zotlabs/Module/Settings/Channel.php:495 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" +msgstr "Indirizzo email:" + +#: ../../Zotlabs/Module/Settings/Channel.php:496 +msgid "Your Timezone:" +msgstr "Il tuo fuso orario:" + +#: ../../Zotlabs/Module/Settings/Channel.php:497 +msgid "Default Post Location:" +msgstr "Località predefinita:" + +#: ../../Zotlabs/Module/Settings/Channel.php:497 +msgid "Geographical location to display on your posts" +msgstr "La posizione geografica da mostrare sui tuoi post" + +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "Use Browser Location:" +msgstr "Usa la località rilevata dal browser:" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Adult Content" +msgstr "Contenuto per adulti" + +#: ../../Zotlabs/Module/Settings/Channel.php:500 +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/Settings/Channel.php:502 +msgid "Security and Privacy Settings" +msgstr "Impostazioni di sicurezza e privacy" + +#: ../../Zotlabs/Module/Settings/Channel.php:504 +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/Settings/Channel.php:506 +msgid "Hide my online presence" +msgstr "Nascondi la mia presenza online" + +#: ../../Zotlabs/Module/Settings/Channel.php:506 +msgid "Prevents displaying in your profile that you are online" +msgstr "Non mostrare sul tuo profilo quando sei online" + +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Simple Privacy Settings:" +msgstr "Impostazioni di privacy semplificate" + +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" + +#: ../../Zotlabs/Module/Settings/Channel.php:510 +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/Settings/Channel.php:511 +msgid "Private - default private, never open or public" +msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" + +#: ../../Zotlabs/Module/Settings/Channel.php:512 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +msgid "Allow others to tag your posts" +msgstr "Permetti ad altri di taggare i tuoi post" + +#: ../../Zotlabs/Module/Settings/Channel.php:514 +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/Settings/Channel.php:516 +msgid "Channel Permission Limits" +msgstr "Limiti sui permessi del canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:518 +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:518 +msgid "0 or blank to use the website limit." +msgstr "0 o vuoto per usare i valori predefiniti." + +#: ../../Zotlabs/Module/Settings/Channel.php:518 +#, php-format +msgid "This website expires after %d days." +msgstr "Per questo sito la scadenza è %d giorni. " + +#: ../../Zotlabs/Module/Settings/Channel.php:518 +msgid "This website does not expire imported content." +msgstr "I contenuti di questo sito non hanno scadenza." + +#: ../../Zotlabs/Module/Settings/Channel.php:518 +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/Settings/Channel.php:519 +msgid "Maximum Friend Requests/Day:" +msgstr "Numero massimo giornaliero di richieste di amicizia:" + +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "May reduce spam activity" +msgstr "Serve a ridurre lo spam" + +#: ../../Zotlabs/Module/Settings/Channel.php:520 +msgid "Default Privacy Group" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:522 +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/Settings/Channel.php:523 +msgid "Profile to assign new connections" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "Channel permissions category:" +msgstr "Categorie di permessi dei canali:" + +#: ../../Zotlabs/Module/Settings/Channel.php:533 +msgid "Default Permissions Group" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Maximum private messages per day from unknown people:" +msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" + +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "Useful to reduce spamming" +msgstr "Serve e ridurre lo spam" + +#: ../../Zotlabs/Module/Settings/Channel.php:542 +#: ../../Zotlabs/Lib/Enotify.php:68 +msgid "Notification Settings" +msgstr "Impostazioni di notifica" + +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "By default post a status message when:" +msgstr "Pubblica un messaggio di stato quando:" + +#: ../../Zotlabs/Module/Settings/Channel.php:544 +msgid "accepting a friend request" +msgstr "accetto una nuova amicizia" + +#: ../../Zotlabs/Module/Settings/Channel.php:545 +msgid "joining a forum/community" +msgstr "entro a far parte di un forum" + +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "making an interesting profile change" +msgstr "faccio un cambiamento interessante al mio profilo" + +#: ../../Zotlabs/Module/Settings/Channel.php:547 +msgid "Send a notification email when:" +msgstr "Invia una email di notifica quando:" + +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "You receive a connection request" +msgstr "Ricevi una richiesta di entrare in contatto" + +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "Your connections are confirmed" +msgstr "I tuoi contatti sono confermati" + +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Someone writes on your profile wall" +msgstr "Qualcuno scrive sulla tua bacheca" + +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "Someone writes a followup comment" +msgstr "Qualcuno scrive un commento dopo di te" + +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "You receive a private message" +msgstr "Ricevi un messaggio privato" + +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "You receive a friend suggestion" +msgstr "Ti viene suggerito un amico" + +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "You are tagged in a post" +msgstr "Sei taggato in un post" + +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "You are poked/prodded/etc. in a post" +msgstr "Ricevi un poke in un post" + +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "Someone likes your post/comment" +msgstr "Qualcuno mette mi piace al tuo post/commento" + +#: ../../Zotlabs/Module/Settings/Channel.php:560 +msgid "Show visual notifications including:" +msgstr "Mostra queste notifiche a schermo:" + +#: ../../Zotlabs/Module/Settings/Channel.php:562 +msgid "Unseen grid activity" +msgstr "Nuove attività nella rete" + +#: ../../Zotlabs/Module/Settings/Channel.php:563 +msgid "Unseen channel activity" +msgstr "Novità nei canali" + +#: ../../Zotlabs/Module/Settings/Channel.php:564 +msgid "Unseen private messages" +msgstr "Nuovi messaggi privati" + +#: ../../Zotlabs/Module/Settings/Channel.php:564 +#: ../../Zotlabs/Module/Settings/Channel.php:569 +#: ../../Zotlabs/Module/Settings/Channel.php:570 +#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" +msgstr "Consigliato" + +#: ../../Zotlabs/Module/Settings/Channel.php:565 +msgid "Upcoming events" +msgstr "Prossimi eventi" + +#: ../../Zotlabs/Module/Settings/Channel.php:566 +msgid "Events today" +msgstr "Eventi di oggi" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Upcoming birthdays" +msgstr "Prossimi compleanni" + +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Not available in all themes" +msgstr "Non disponibile in tutti i temi" + +#: ../../Zotlabs/Module/Settings/Channel.php:568 +msgid "System (personal) notifications" +msgstr "Notifiche personali dal sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:569 +msgid "System info messages" +msgstr "Notifiche di sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "System critical alerts" +msgstr "Avvisi critici di sistema" + +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "New connections" +msgstr "Nuovi contatti" + +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "System Registrations" +msgstr "Registrazioni" + +#: ../../Zotlabs/Module/Settings/Channel.php:573 +msgid "Unseen shared files" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Unseen public activity" +msgstr "Attività pubblica non letta" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "Email notification hub (hostname)" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:575 +#, php-format +msgid "" +"If your channel is mirrored to multiple hubs, set this to your preferred " +"location. This will prevent duplicate email notifications. Example: %s" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Channel.php:576 +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/Settings/Channel.php:578 +msgid "Notify me of events this many days in advance" +msgstr "Giorni di anticipo per notificare gli eventi" + +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Must be greater than 0" +msgstr "Maggiore di 0" + +#: ../../Zotlabs/Module/Settings/Channel.php:584 +msgid "Advanced Account/Page Type Settings" +msgstr "Impostazioni avanzate" + +#: ../../Zotlabs/Module/Settings/Channel.php:585 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambia il funzionamento di questo account per necessità particolari" + +#: ../../Zotlabs/Module/Settings/Channel.php:587 +msgid "Miscellaneous Settings" +msgstr "Impostazioni varie" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +msgid "Default photo upload folder" +msgstr "Cartella predefinita per le foto caricate" + +#: ../../Zotlabs/Module/Settings/Channel.php:588 +#: ../../Zotlabs/Module/Settings/Channel.php:589 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" + +#: ../../Zotlabs/Module/Settings/Channel.php:589 +msgid "Default file upload folder" +msgstr "Cartella predefinita per i file caricati" + +#: ../../Zotlabs/Module/Settings/Channel.php:591 +msgid "Personal menu to display in your channel pages" +msgstr "Menu personale da mostrare sulle pagine del tuo canale" + +#: ../../Zotlabs/Module/Settings/Channel.php:593 +msgid "Remove this channel." +msgstr "Elimina questo canale." + +#: ../../Zotlabs/Module/Settings/Channel.php:594 +msgid "Firefox Share $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" + +#: ../../Zotlabs/Module/Settings/Channel.php:595 +msgid "Start calendar week on Monday" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" +msgstr "Funzionalità opzionali" + +#: ../../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/Settings/Tokens.php:77 +msgid "Token saved." +msgstr "Token salvato." + +#: ../../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/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/Settings/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:92 +msgid "Guest Access Tokens" +msgstr "Token di accesso ospite" + +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" +msgstr "Nome utente" + +#: ../../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/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:890 +msgid "Their Settings" +msgstr "Permessi concessi a te" + +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." +msgstr "Email non valida." + +#: ../../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/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/Settings/Account.php:40 +msgid "Technical skill level updated" +msgstr "Livello tecnico aggiornato" + +#: ../../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/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Le password non possono essere vuote. Password non cambiata." + +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." +msgstr "Password cambiata." + +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." +msgstr "Modifica password fallita. Prova ancora." + +#: ../../Zotlabs/Module/Settings/Account.php:112 +msgid "Account Settings" +msgstr "Il tuo account" + +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" +msgstr "Password attuale" + +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" +msgstr "Nuova password" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" +msgstr "Conferma la nuova password" + +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" +msgstr "Lascia vuoti questi campi per non cambiare la password" + +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" +msgstr "Il tuo livello tecnico" + +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "" +"Used to provide a member experience and additional features consistent with " +"your comfort level" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" +msgstr "Elimina l'account" + +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" +msgstr "Elimina questo account e tutti i suoi canali" + +#: ../../Zotlabs/Module/Settings/Featured.php:23 +msgid "Affinity Slider settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:38 +msgid "No feature settings configured" +msgstr "Non hai componenti aggiuntivi da personalizzare" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "Default maximum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:45 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Default minimum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:54 +msgid "Affinity Slider Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:64 +msgid "Addon Settings" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Featured.php:65 +msgid "Please save/submit changes to any panel before opening another." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:139 +#, php-format +msgid "%s - (Experimental)" +msgstr "%s - (Sperimentale)" + +#: ../../Zotlabs/Module/Settings/Display.php:187 +msgid "Display Settings" +msgstr "Aspetto" + +#: ../../Zotlabs/Module/Settings/Display.php:188 +msgid "Theme Settings" +msgstr "Impostazioni del tema" + +#: ../../Zotlabs/Module/Settings/Display.php:189 +msgid "Custom Theme Settings" +msgstr "Personalizzazione del tema" + +#: ../../Zotlabs/Module/Settings/Display.php:190 +msgid "Content Settings" +msgstr "Impostazioni dei contenuti" + +#: ../../Zotlabs/Module/Settings/Display.php:196 +msgid "Display Theme:" +msgstr "Tema per schermi medio grandi:" + +#: ../../Zotlabs/Module/Settings/Display.php:197 +msgid "Select scheme" +msgstr "Scegli uno schema" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Preload images before rendering the page" +msgstr "Carica le immagini prima del rendering della pagina" + +#: ../../Zotlabs/Module/Settings/Display.php:199 +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/Settings/Display.php:200 +msgid "Enable user zoom on mobile devices" +msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Update browser every xx seconds" +msgstr "Aggiorna il browser ogni x secondi" + +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimo 10 secondi, nessun limite massimo" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum number of conversations to load at any time:" +msgstr "Massimo numero di conversazioni da mostrare ogni volta:" + +#: ../../Zotlabs/Module/Settings/Display.php:202 +msgid "Maximum of 100 items" +msgstr "Massimo 100" + +#: ../../Zotlabs/Module/Settings/Display.php:203 +msgid "Show emoticons (smilies) as images" +msgstr "Mostra le faccine (smilies) come immagini" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Provide channel menu in navigation bar" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:204 +msgid "Default: channel menu located in app menu" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Manual conversation updates" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:205 +msgid "Default is on, turning this off may increase screen jumping" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Display.php:206 +msgid "Link post titles to source" +msgstr "Il link del titolo di un post porta al sito originale" + +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "System Page Layout Editor - (advanced)" +msgstr "Modifica i layout di sistema (avanzato)" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Use blog/list mode on channel page" +msgstr "Mostra il canale nella modalità blog" + +#: ../../Zotlabs/Module/Settings/Display.php:210 +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "(comments displayed separately)" +msgstr "(i commenti sono mostrati separatamente)" + +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Use blog/list mode on grid page" +msgstr "Mostra la tua rete in modalità blog" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Channel page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti del canale (in pixel)" + +#: ../../Zotlabs/Module/Settings/Display.php:212 +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "click to expand content exceeding this height" +msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" + +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Grid page max height of content (in pixels)" +msgstr "Altezza massima dei contenuti della tua rete (in pixel)" + +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" +msgstr "Il nome è obbligatorio" + +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" +msgstr "Key e Secret sono richiesti" + +#: ../../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/Settings/Oauth.php:89 +msgid "Name of application" +msgstr "Nome dell'applicazione" + +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:781 +msgid "Consumer Key" +msgstr "Consumer Key" + +#: ../../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/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:782 +msgid "Consumer Secret" +msgstr "Consumer Secret" + +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" +msgstr "Redirect" + +#: ../../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/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" +msgstr "Url icona" + +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" +msgstr "Facoltativo" + +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." +msgstr "Applicazione non trovata." + +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" +msgstr "App connesse" + +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" +msgstr "La client key inizia con" + +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" +msgstr "Nessun nome" + +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" +msgstr "Revoca l'autorizzazione" + +#: ../../Zotlabs/Module/Embedphotos.php:140 +#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1350 +#: ../../Zotlabs/Widget/Portfolio.php:87 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" +msgstr "Guarda la foto" + +#: ../../Zotlabs/Module/Embedphotos.php:156 +#: ../../Zotlabs/Module/Photos.php:842 ../../Zotlabs/Widget/Portfolio.php:108 +#: ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" +msgstr "Modifica album" + +#: ../../Zotlabs/Module/Embedphotos.php:158 +#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Photos.php:844 +#: ../../Zotlabs/Module/Photos.php:1381 +#: ../../Zotlabs/Module/Profile_photo.php:458 +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Storage/Browser.php:277 ../../Zotlabs/Storage/Browser.php:384 +#: ../../Zotlabs/Widget/Cdav.php:133 ../../Zotlabs/Widget/Cdav.php:169 +#: ../../Zotlabs/Widget/Portfolio.php:110 ../../Zotlabs/Widget/Album.php:97 +msgid "Upload" +msgstr "Carica" + +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "Qualche suggerimento per i nuovi utenti su cosa fare" + +#: ../../Zotlabs/Module/Thing.php:115 +msgid "Thing updated" +msgstr "L'oggetto è stato aggiornato" + +#: ../../Zotlabs/Module/Thing.php:167 +msgid "Object store: failed" +msgstr "Impossibile memorizzare l'oggetto." + +#: ../../Zotlabs/Module/Thing.php:171 +msgid "Thing added" +msgstr "L'Oggetto è stato aggiunto" + +#: ../../Zotlabs/Module/Thing.php:197 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" + +#: ../../Zotlabs/Module/Thing.php:260 +msgid "Show Thing" +msgstr "Mostra l'oggetto" + +#: ../../Zotlabs/Module/Thing.php:267 +msgid "item not found." +msgstr "non trovato." + +#: ../../Zotlabs/Module/Thing.php:300 +msgid "Edit Thing" +msgstr "Modifica l'oggetto" + +#: ../../Zotlabs/Module/Thing.php:302 ../../Zotlabs/Module/Thing.php:359 +msgid "Select a profile" +msgstr "Scegli un profilo" + +#: ../../Zotlabs/Module/Thing.php:306 ../../Zotlabs/Module/Thing.php:362 +msgid "Post an activity" +msgstr "Pubblica un'attività" + +#: ../../Zotlabs/Module/Thing.php:306 ../../Zotlabs/Module/Thing.php:362 +msgid "Only sends to viewers of the applicable profile" +msgstr "Invia solo a chi può vedere il profilo scelto" + +#: ../../Zotlabs/Module/Thing.php:308 ../../Zotlabs/Module/Thing.php:364 +msgid "Name of thing e.g. something" +msgstr "Nome dell'oggetto" + +#: ../../Zotlabs/Module/Thing.php:310 ../../Zotlabs/Module/Thing.php:365 +msgid "URL of thing (optional)" +msgstr "Indirizzo web dell'oggetto (facoltativo)" + +#: ../../Zotlabs/Module/Thing.php:312 ../../Zotlabs/Module/Thing.php:366 +msgid "URL for photo of thing (optional)" +msgstr "Indirizzo di un'immagine dell'oggetto (facoltativo)" + +#: ../../Zotlabs/Module/Thing.php:314 ../../Zotlabs/Module/Thing.php:367 +#: ../../Zotlabs/Module/Photos.php:702 ../../Zotlabs/Module/Photos.php:1071 +#: ../../Zotlabs/Module/Connedit.php:676 ../../Zotlabs/Module/Chat.php:235 +#: ../../Zotlabs/Module/Filestorage.php:147 +#: ../../include/acl_selectors.php:123 +msgid "Permissions" +msgstr "Permessi" + +#: ../../Zotlabs/Module/Thing.php:357 +msgid "Add Thing to your Profile" +msgstr "Aggiungi l'oggetto al tuo profilo" + +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:57 +msgid "No more system notifications." +msgstr "Non ci sono nuove notifiche di sistema." + +#: ../../Zotlabs/Module/Notify.php:65 +#: ../../Zotlabs/Module/Notifications.php:61 +msgid "System Notifications" +msgstr "Notifiche di sistema" + +#: ../../Zotlabs/Module/Follow.php:31 +msgid "Channel added." +msgstr "Canale aggiunto." + +#: ../../Zotlabs/Module/Import.php:143 +#, 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:157 +msgid "No channel. Import failed." +msgstr "Nessun canale. Import fallito." + +#: ../../Zotlabs/Module/Import.php:481 +#: ../../addon/diaspora/import_diaspora.php:139 +msgid "Import completed." +msgstr "L'importazione è terminata con successo." + +#: ../../Zotlabs/Module/Import.php:509 +msgid "You must be logged in to use this feature." +msgstr "Per questa funzionalità devi aver effettuato l'accesso." + +#: ../../Zotlabs/Module/Import.php:514 +msgid "Import Channel" +msgstr "Importa un canale" + +#: ../../Zotlabs/Module/Import.php:515 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "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/Import.php:517 +msgid "Or provide the old server/hub details" +msgstr "Oppure fornisci i dettagli del vecchio hub" + +#: ../../Zotlabs/Module/Import.php:518 +msgid "Your old identity address (xyz@example.com)" +msgstr "Il tuo vecchio identificativo (per esempio pippo@esempio.com)" + +#: ../../Zotlabs/Module/Import.php:519 +msgid "Your old login email address" +msgstr "L'email che usavi per accedere sul vecchio hub" + +#: ../../Zotlabs/Module/Import.php:520 +msgid "Your old login password" +msgstr "La password per il vecchio hub" + +#: ../../Zotlabs/Module/Import.php:521 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" 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/Import.php:522 +msgid "Make this hub my primary location" +msgstr "Rendi questo hub il mio indirizzo primario" + +#: ../../Zotlabs/Module/Import.php:523 +msgid "Move this channel (disable all previous locations)" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:524 +msgid "Import a few months of posts if possible (limited by available memory" +msgstr "" + +#: ../../Zotlabs/Module/Import.php:525 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +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/Rmagic.php:35 +msgid "Authentication failed." +msgstr "Autenticazione fallita." + +#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1583 +#: ../../include/channel.php:2307 +msgid "Remote Authentication" +msgstr "Accedi tramite il tuo hub" + +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2308 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Inserisci l'indirizzo del tuo canale (ad esempio lucia@esempio.com)" + +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2309 +msgid "Authenticate" +msgstr "Accedi" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "Permesso negato." + +#: ../../Zotlabs/Module/Cal.php:344 ../../include/text.php:2426 +msgid "Import" +msgstr "Importa" + +#: ../../Zotlabs/Module/Api.php:74 ../../Zotlabs/Module/Api.php:95 +msgid "Authorize application connection" +msgstr "Autorizza la app" + +#: ../../Zotlabs/Module/Api.php:75 +msgid "Return to your app and insert this Security Code:" +msgstr "Ritorna alla tua app e inserisci questo Security Code:" + +#: ../../Zotlabs/Module/Api.php:85 +msgid "Please login to continue." +msgstr "Accedi al sito per continuare." + +#: ../../Zotlabs/Module/Api.php:97 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Vuoi autorizzare questa app ad accedere ai messaggi e ai contatti o creare nuovi messaggi per te?" + +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento non disponibile." + +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" +msgstr "Modifica il block" + +#: ../../Zotlabs/Module/Profile.php:93 +msgid "vcard" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:48 ../../Zotlabs/Lib/Apps.php:228 +msgid "Apps" +msgstr "App" + +#: ../../Zotlabs/Module/Apps.php:51 +msgid "Manage apps" +msgstr "" + +#: ../../Zotlabs/Module/Apps.php:52 +msgid "Create new app" +msgstr "" + +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:268 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" + +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:253 +msgid "Mood" +msgstr "Umore" + +#: ../../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/Connections.php:54 +#: ../../Zotlabs/Module/Connections.php:156 +#: ../../Zotlabs/Module/Connections.php:245 +msgid "Blocked" +msgstr "Bloccati" + +#: ../../Zotlabs/Module/Connections.php:59 +#: ../../Zotlabs/Module/Connections.php:163 +#: ../../Zotlabs/Module/Connections.php:244 +msgid "Ignored" +msgstr "Ignorati" + +#: ../../Zotlabs/Module/Connections.php:64 +#: ../../Zotlabs/Module/Connections.php:177 +#: ../../Zotlabs/Module/Connections.php:243 +msgid "Hidden" +msgstr "Nascosti" + +#: ../../Zotlabs/Module/Connections.php:69 +#: ../../Zotlabs/Module/Connections.php:170 +msgid "Archived/Unreachable" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:74 +#: ../../Zotlabs/Module/Connections.php:83 ../../Zotlabs/Module/Menu.php:116 +#: ../../Zotlabs/Module/Notifications.php:52 +#: ../../include/conversation.php:1714 +msgid "New" +msgstr "Novità" + +#: ../../Zotlabs/Module/Connections.php:88 +#: ../../Zotlabs/Module/Connections.php:102 +#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:26 +msgid "All" +msgstr "Tutti" + +#: ../../Zotlabs/Module/Connections.php:133 +#: ../../Zotlabs/Widget/Notifications.php:84 +msgid "New Connections" +msgstr "Nuovi contatti" + +#: ../../Zotlabs/Module/Connections.php:136 +msgid "Show pending (new) connections" +msgstr "Richieste di contatto in attesa" + +#: ../../Zotlabs/Module/Connections.php:143 +msgid "Show all connections" +msgstr "Mostra tutti i contatti" + +#: ../../Zotlabs/Module/Connections.php:159 +msgid "Only show blocked connections" +msgstr "Mostra solo i contatti bloccati" + +#: ../../Zotlabs/Module/Connections.php:166 +msgid "Only show ignored connections" +msgstr "Mostra solo i contatti ignorati" + +#: ../../Zotlabs/Module/Connections.php:173 +msgid "Only show archived/unreachable connections" +msgstr "" + +#: ../../Zotlabs/Module/Connections.php:180 +msgid "Only show hidden connections" +msgstr "Mostra solo i contatti nascosti" -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." -msgstr "Nessun aggiornamento fallito." +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Pending approval" +msgstr "In attesa di conferma" -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" -msgstr "Aggiornamenti falliti." +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Archived" +msgstr "Archiviati" -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" -msgstr "Marca come eseguito (se applicato manualmente)." +#: ../../Zotlabs/Module/Connections.php:246 +msgid "Not connected at this location" +msgstr "" -#: ../../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/Connections.php:263 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "Off" -msgstr "Off" +#: ../../Zotlabs/Module/Connections.php:264 +msgid "Edit connection" +msgstr "Modifica il contatto" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "On" -msgstr "On" +#: ../../Zotlabs/Module/Connections.php:266 +msgid "Delete connection" +msgstr "Elimina il contatto" -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" -msgstr "Rendi non modificabile %s" +#: ../../Zotlabs/Module/Connections.php:275 +msgid "Channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" -msgstr "Funzionalità opzionali" +#: ../../Zotlabs/Module/Connections.php:277 +msgid "Network" +msgstr "Network" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." -msgstr "Impostazioni di log aggiornate." +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Call" +msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1587 -#: ../../include/widgets.php:1597 -msgid "Logs" -msgstr "Log" +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Status" +msgstr "Stato" -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" -msgstr "Pulisci" +#: ../../Zotlabs/Module/Connections.php:284 +msgid "Connected" +msgstr "In contatto" -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" -msgstr "Debugging" +#: ../../Zotlabs/Module/Connections.php:286 +msgid "Approve connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" -msgstr "File di log" +#: ../../Zotlabs/Module/Connections.php:288 +msgid "Ignore connection" +msgstr "Ignora il contatto" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -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/Connections.php:289 +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Ignore" +msgstr "Ignora" -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" -msgstr "Livello di log" +#: ../../Zotlabs/Module/Connections.php:290 +msgid "Recent activity" +msgstr "Attività recenti" -#: ../../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 non trovato." +#: ../../Zotlabs/Module/Connections.php:315 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/text.php:973 +msgid "Connections" +msgstr "Contatti" -#: ../../Zotlabs/Module/Admin/Plugins.php:284 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s non attivo." +#: ../../Zotlabs/Module/Connections.php:320 +msgid "Search your connections" +msgstr "Cerca tra i contatti" -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s attivo." +#: ../../Zotlabs/Module/Connections.php:321 +msgid "Connections search" +msgstr "Ricerca tra i contatti" -#: ../../Zotlabs/Module/Admin/Plugins.php:305 -#: ../../Zotlabs/Module/Admin/Themes.php:93 -msgid "Disable" -msgstr "Disattiva" +#: ../../Zotlabs/Module/Connections.php:322 +#: ../../Zotlabs/Module/Directory.php:396 +#: ../../Zotlabs/Module/Directory.php:401 ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "Cerca" -#: ../../Zotlabs/Module/Admin/Plugins.php:308 -#: ../../Zotlabs/Module/Admin/Themes.php:95 -msgid "Enable" -msgstr "Attiva" +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" +msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:337 -#: ../../Zotlabs/Module/Admin/Plugins.php:428 ../../include/widgets.php:1565 -msgid "Plugins" -msgstr "Plugin" +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "Source of Item" +msgstr "Sorgente" -#: ../../Zotlabs/Module/Admin/Plugins.php:338 -#: ../../Zotlabs/Module/Admin/Themes.php:122 -msgid "Toggle" -msgstr "Attiva/disattiva" +#: ../../Zotlabs/Module/Bookmarks.php:56 +msgid "Bookmark added" +msgstr "Segnalibro aggiunto" -#: ../../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/Bookmarks.php:79 +msgid "My Bookmarks" +msgstr "I miei segnalibri" -#: ../../Zotlabs/Module/Admin/Plugins.php:346 -#: ../../Zotlabs/Module/Admin/Themes.php:132 -msgid "Author: " -msgstr "Autore:" +#: ../../Zotlabs/Module/Bookmarks.php:90 +msgid "My Connections Bookmarks" +msgstr "I segnalibri dei miei contatti" -#: ../../Zotlabs/Module/Admin/Plugins.php:347 -#: ../../Zotlabs/Module/Admin/Themes.php:133 -msgid "Maintainer: " -msgstr "Gestore:" +#: ../../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/Admin/Plugins.php:348 -msgid "Minimum project version: " -msgstr "Minima versione hubzilla" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" +msgstr "Elimina questo account" -#: ../../Zotlabs/Module/Admin/Plugins.php:349 -msgid "Maximum project version: " -msgstr "Massima versione hubzilla" +#: ../../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/Admin/Plugins.php:350 -msgid "Minimum PHP version: " -msgstr "Minima versione PHP:" +#: ../../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/Admin/Plugins.php:351 -msgid "Compatible Server Roles: " -msgstr "Ruoli previsti per questo server" +#: ../../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/Admin/Plugins.php:352 -msgid "Requires: " -msgstr "Necessita di:" +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." +msgstr "Impossibile ottenere informazioni sul proprietario della pagina." -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -#: ../../Zotlabs/Module/Admin/Plugins.php:433 -msgid "Disabled - version incompatibility" -msgstr "Disabilitato - incompatibilità di versione" +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." +msgstr "Album non trovato." -#: ../../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/Photos.php:103 +msgid "Delete Album" +msgstr "Elimina album" -#: ../../Zotlabs/Module/Admin/Plugins.php:403 -msgid "Plugin repo git URL" -msgstr "URL git del repository del plugin" +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1083 +msgid "Delete Photo" +msgstr "Elimina foto" -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "Custom repo name" -msgstr "Nome repository personalizzato" +#: ../../Zotlabs/Module/Photos.php:551 +msgid "No photos selected" +msgstr "Nessuna foto selezionata" -#: ../../Zotlabs/Module/Admin/Plugins.php:404 -msgid "(optional)" -msgstr "(facoltativo)" +#: ../../Zotlabs/Module/Photos.php:600 +msgid "Access to this item is restricted." +msgstr "Questo elemento non è visibile a tutti." -#: ../../Zotlabs/Module/Admin/Plugins.php:405 -msgid "Download Plugin Repo" -msgstr "Scarica il repository del plugin" +#: ../../Zotlabs/Module/Photos.php:646 +#, 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/Plugins.php:412 -msgid "Install new repo" -msgstr "Installa un nuovo repository" +#: ../../Zotlabs/Module/Photos.php:649 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "Hai usato %1$.2f Mb del tuo spazio disponibile." -#: ../../Zotlabs/Module/Admin/Plugins.php:413 ../../Zotlabs/Lib/Apps.php:334 -msgid "Install" -msgstr "Installa" +#: ../../Zotlabs/Module/Photos.php:691 +msgid "Upload Photos" +msgstr "Carica foto" -#: ../../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 "Annulla" +#: ../../Zotlabs/Module/Photos.php:695 +msgid "Enter an album name" +msgstr "Scegli il nome dell'album" -#: ../../Zotlabs/Module/Admin/Plugins.php:435 -msgid "Manage Repos" -msgstr "Gestisci i repository" +#: ../../Zotlabs/Module/Photos.php:696 +msgid "or select an existing album (doubleclick)" +msgstr "o seleziona un album esistente (doppio click)" -#: ../../Zotlabs/Module/Admin/Plugins.php:436 -msgid "Installed Plugin Repositories" -msgstr "Repository per i plugin installati" +#: ../../Zotlabs/Module/Photos.php:697 +msgid "Create a status post for this upload" +msgstr "Pubblica sulla bacheca" -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -msgid "Install a New Plugin Repository" -msgstr "Installa un nuovo repository per i plugin" +#: ../../Zotlabs/Module/Photos.php:698 +msgid "Caption (optional):" +msgstr "Titolo (facoltativo):" -#: ../../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/Photos.php:699 +msgid "Description (optional):" +msgstr "Descrizione (facoltativa):" -#: ../../Zotlabs/Module/Admin/Plugins.php:444 -msgid "Switch branch" -msgstr "Cambia branch" +#: ../../Zotlabs/Module/Photos.php:785 +msgid "Show Newest First" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Admin/Plugins.php:445 -#: ../../Zotlabs/Module/Photos.php:989 ../../Zotlabs/Module/Tagrm.php:137 -msgid "Remove" -msgstr "Rimuovi" +#: ../../Zotlabs/Module/Photos.php:787 +msgid "Show Oldest First" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Admin/Profs.php:69 -msgid "New Profile Field" -msgstr "Nuovo campo del profilo" +#: ../../Zotlabs/Module/Photos.php:892 +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/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "Field nickname" -msgstr "Nome breve del campo" +#: ../../Zotlabs/Module/Photos.php:894 +msgid "Photo not available" +msgstr "Foto non disponibile" -#: ../../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/Photos.php:952 +msgid "Use as profile photo" +msgstr "Usa come foto del profilo" + +#: ../../Zotlabs/Module/Photos.php:953 +msgid "Use as cover photo" +msgstr "Usa come copertina del canale" -#: ../../Zotlabs/Module/Admin/Profs.php:71 -#: ../../Zotlabs/Module/Admin/Profs.php:91 -msgid "Input type" -msgstr "Tipo di dati" +#: ../../Zotlabs/Module/Photos.php:960 +msgid "Private Photo" +msgstr "Foto privata" -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Field Name" -msgstr "Nome del campo" +#: ../../Zotlabs/Module/Photos.php:975 +msgid "View Full Size" +msgstr "Vedi nelle dimensioni originali" -#: ../../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/Photos.php:1057 +msgid "Edit photo" +msgstr "Modifica la foto" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Help text" -msgstr "Testo di aiuto" +#: ../../Zotlabs/Module/Photos.php:1059 +msgid "Rotate CW (right)" +msgstr "Ruota (senso orario)" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Additional info (optional)" -msgstr "Informazioni aggiuntive (facoltative)" +#: ../../Zotlabs/Module/Photos.php:1060 +msgid "Rotate CCW (left)" +msgstr "Ruota (senso antiorario)" -#: ../../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/Photos.php:1063 +msgid "Move photo to album" +msgstr "Sposta la foto in un album" -#: ../../Zotlabs/Module/Admin/Profs.php:83 -msgid "Field definition not found" -msgstr "Impossibile trovare la definizione del campo" +#: ../../Zotlabs/Module/Photos.php:1064 +msgid "Enter a new album name" +msgstr "Inserisci il nome del nuovo album" -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "Edit Profile Field" -msgstr "Modifica campo del profilo" +#: ../../Zotlabs/Module/Photos.php:1065 +msgid "or select an existing one (doubleclick)" +msgstr "o seleziona uno esistente (doppio click)" -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1568 -msgid "Profile Fields" -msgstr "Campi del profilo" +#: ../../Zotlabs/Module/Photos.php:1068 +msgid "Caption" +msgstr "Didascalia" -#: ../../Zotlabs/Module/Admin/Profs.php:148 -msgid "Basic Profile Fields" -msgstr "Campi base del profilo" +#: ../../Zotlabs/Module/Photos.php:1070 +msgid "Add a Tag" +msgstr "Aggiungi tag" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "Advanced Profile Fields" -msgstr "Campi avanzati del profilo" +#: ../../Zotlabs/Module/Photos.php:1078 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "(In addition to basic fields)" -msgstr "(In aggiunta ai campi di base)" +#: ../../Zotlabs/Module/Photos.php:1081 +msgid "Flag as adult in album view" +msgstr "Marca come 'per adulti'" -#: ../../Zotlabs/Module/Admin/Profs.php:151 -msgid "All available fields" -msgstr "Tutti i campi disponibili" +#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:281 +msgid "I like this (toggle)" +msgstr "Attiva/disattiva Mi piace" -#: ../../Zotlabs/Module/Admin/Profs.php:152 -msgid "Custom Fields" -msgstr "Campi personalizzati" +#: ../../Zotlabs/Module/Photos.php:1101 ../../Zotlabs/Lib/ThreadItem.php:282 +msgid "I don't like this (toggle)" +msgstr "Attiva/disattiva Non mi piace" -#: ../../Zotlabs/Module/Admin/Profs.php:156 -msgid "Create Custom Field" -msgstr "Aggiungi campo personalizzato" +#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:427 +#: ../../include/conversation.php:785 +msgid "Please wait" +msgstr "Attendere" -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Queue Statistics" -msgstr "Statistiche della coda" +#: ../../Zotlabs/Module/Photos.php:1119 ../../Zotlabs/Module/Photos.php:1237 +#: ../../Zotlabs/Lib/ThreadItem.php:747 +msgid "This is you" +msgstr "Questo sei tu" -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Total Entries" -msgstr "Totale" +#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 +#: ../../Zotlabs/Lib/ThreadItem.php:749 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Commento" -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Priority" -msgstr "Priorità" +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Destination URL" -msgstr "URL di destinazione" +#: ../../Zotlabs/Module/Photos.php:1137 ../../include/conversation.php:618 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Mark hub permanently offline" -msgstr "Questo hub è definitivamente offline" +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Empty queue for this hub" -msgstr "Svuota la coda per questo hub" +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" -#: ../../Zotlabs/Module/Admin/Queue.php:42 -msgid "Last known contact" -msgstr "Ultimo scambio dati" +#: ../../Zotlabs/Module/Photos.php:1138 ../../include/conversation.php:619 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" -#: ../../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/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" -#: ../../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/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" -#: ../../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/Photos.php:1139 ../../include/conversation.php:620 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" -#: ../../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/Photos.php:1156 ../../Zotlabs/Module/Photos.php:1168 +#: ../../Zotlabs/Lib/ThreadItem.php:201 ../../Zotlabs/Lib/ThreadItem.php:213 +msgid "View all" +msgstr "Vedi tutto" -#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1563 -msgid "Security" -msgstr "Sicurezza" +#: ../../Zotlabs/Module/Photos.php:1160 ../../Zotlabs/Lib/ThreadItem.php:205 +#: ../../include/conversation.php:1978 ../../include/channel.php:1540 +#: ../../include/taxonomy.php:597 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" -msgstr "Blocca pagine pubbliche" +#: ../../Zotlabs/Module/Photos.php:1165 ../../Zotlabs/Lib/ThreadItem.php:210 +#: ../../include/conversation.php:1981 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" -#: ../../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/Photos.php:1265 +msgid "Photo Tools" +msgstr "Gestione foto" -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" -msgstr "Imposta il \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Photos.php:1274 +msgid "In This Photo:" +msgstr "In questa foto:" -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" -msgstr "Imposta il \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Photos.php:1279 +msgid "Map" +msgstr "Mappa" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" -msgstr "Domini email consentiti" +#: ../../Zotlabs/Module/Photos.php:1287 ../../Zotlabs/Lib/ThreadItem.php:415 +msgctxt "noun" +msgid "Likes" +msgstr "Mi piace" -#: ../../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/Photos.php:1288 ../../Zotlabs/Lib/ThreadItem.php:416 +msgctxt "noun" +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" -msgstr "Domini email non consentiti" +#: ../../Zotlabs/Module/Photos.php:1293 ../../Zotlabs/Lib/ThreadItem.php:421 +#: ../../include/acl_selectors.php:125 +msgid "Close" +msgstr "Chiudi" -#: ../../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/Photos.php:1365 ../../Zotlabs/Module/Photos.php:1378 +#: ../../Zotlabs/Module/Photos.php:1379 ../../include/photos.php:656 +msgid "Recent Photos" +msgstr "Foto recenti" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" -msgstr "Permetti la comunicazione solo da questi siti" +#: ../../Zotlabs/Module/Wiki.php:30 +msgid "Profile Unavailable." +msgstr "" -#: ../../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/Wiki.php:44 ../../Zotlabs/Module/Cloud.php:108 +#: ../../addon/gitwiki/Mod_Gitwiki.php:42 +msgid "Not found" +msgstr "Non trovato" -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" -msgstr "Blocca la comunicazione da questi siti" +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/gitwiki/Mod_Gitwiki.php:62 +msgid "Invalid channel" +msgstr "Canale non valido" -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" -msgstr "Permetti la comunicazione solo da questi canali" +#: ../../Zotlabs/Module/Wiki.php:124 ../../addon/gitwiki/Mod_Gitwiki.php:107 +msgid "Error retrieving wiki" +msgstr "Errore caricamento wiki" -#: ../../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/Wiki.php:131 ../../addon/gitwiki/Mod_Gitwiki.php:114 +msgid "Error creating zip file export folder" +msgstr "Errore nella creazione della cartella per l'esportazione in zip" -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" -msgstr "Blocca la comunicazione da questi canali" +#: ../../Zotlabs/Module/Wiki.php:182 ../../addon/gitwiki/Mod_Gitwiki.php:132 +msgid "Error downloading wiki: " +msgstr "Errore scaricamento wiki:" -#: ../../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/Wiki.php:197 ../../addon/gitwiki/Mod_Gitwiki.php:146 +#: ../../include/conversation.php:1925 ../../include/nav.php:494 +msgid "Wikis" +msgstr "Pagine wiki" -#: ../../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/Wiki.php:203 ../../addon/gitwiki/Mod_Gitwiki.php:152 +msgid "Download" +msgstr "Scarica" -#: ../../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/Wiki.php:205 ../../Zotlabs/Module/Chat.php:256 +#: ../../Zotlabs/Module/Profiles.php:834 ../../Zotlabs/Module/Manage.php:145 +#: ../../addon/gitwiki/Mod_Gitwiki.php:154 +msgid "Create New" +msgstr "Crea nuova" -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" -msgstr "Blocca i contenuti incorporati HTML da questi domini" +#: ../../Zotlabs/Module/Wiki.php:207 ../../addon/gitwiki/Mod_Gitwiki.php:156 +msgid "Wiki name" +msgstr "Nome wiki" -#: ../../Zotlabs/Module/Admin/Site.php:135 -msgid "Site settings updated." -msgstr "Impostazioni del sito salvate correttamente." +#: ../../Zotlabs/Module/Wiki.php:208 ../../addon/gitwiki/Mod_Gitwiki.php:157 +msgid "Content type" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:162 ../../include/text.php:2942 -msgid "Default" -msgstr "Predefinito" +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../addon/mdpost/mdpost.php:40 +#: ../../include/text.php:1868 +msgid "Markdown" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:172 -#: ../../Zotlabs/Module/Settings/Display.php:141 -msgid "mobile" -msgstr "mobile" +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Module/Wiki.php:348 +#: ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1866 +msgid "BBcode" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:174 -msgid "experimental" -msgstr "sperimentale" +#: ../../Zotlabs/Module/Wiki.php:208 ../../Zotlabs/Widget/Wiki_pages.php:36 +#: ../../Zotlabs/Widget/Wiki_pages.php:93 ../../include/text.php:1869 +msgid "Text" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:176 -msgid "unsupported" -msgstr "non supportato" +#: ../../Zotlabs/Module/Wiki.php:210 ../../Zotlabs/Storage/Browser.php:284 +#: ../../addon/gitwiki/Mod_Gitwiki.php:159 +msgid "Type" +msgstr "Tipo" -#: ../../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/Wiki.php:211 +msgid "Any type" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:222 -msgid "Yes - with approval" -msgstr "Sì - con approvazione" +#: ../../Zotlabs/Module/Wiki.php:218 +msgid "Lock content type" +msgstr "" -#: ../../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/Wiki.php:219 ../../addon/gitwiki/Mod_Gitwiki.php:166 +msgid "Create a status post for this wiki" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:228 -msgid "My site is not a public server" -msgstr "Non è un server pubblico" +#: ../../Zotlabs/Module/Wiki.php:220 +msgid "Edit Wiki Name" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:229 -msgid "My site has paid access only" -msgstr "È un servizio a pagamento" +#: ../../Zotlabs/Module/Wiki.php:262 ../../addon/gitwiki/Mod_Gitwiki.php:185 +msgid "Wiki not found" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:230 -msgid "My site has free access only" -msgstr "È un servizio gratuito" +#: ../../Zotlabs/Module/Wiki.php:286 ../../addon/gitwiki/Mod_Gitwiki.php:210 +msgid "Rename page" +msgstr "" -#: ../../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/Wiki.php:305 ../../addon/gitwiki/Mod_Gitwiki.php:214 +msgid "Error retrieving page content" +msgstr "Errore nel caricamento del contenuto della pagina" -#: ../../Zotlabs/Module/Admin/Site.php:242 ../../Zotlabs/Module/Setup.php:336 -msgid "Basic/Minimal Social Networking" -msgstr "Social network minimale" +#: ../../Zotlabs/Module/Wiki.php:313 ../../Zotlabs/Module/Wiki.php:315 +msgid "New page" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:243 ../../Zotlabs/Module/Setup.php:337 -msgid "Standard Configuration (default)" -msgstr "Configurazione standard (predefinita)" +#: ../../Zotlabs/Module/Wiki.php:343 ../../addon/gitwiki/Mod_Gitwiki.php:242 +msgid "Revision Comparison" +msgstr "Confronto tra revisioni" -#: ../../Zotlabs/Module/Admin/Site.php:244 ../../Zotlabs/Module/Setup.php:338 -msgid "Professional" -msgstr "Professionale" +#: ../../Zotlabs/Module/Wiki.php:344 ../../addon/gitwiki/Mod_Gitwiki.php:243 +msgid "Revert" +msgstr "Ripristina" -#: ../../Zotlabs/Module/Admin/Site.php:249 -#: ../../Zotlabs/Module/Settings/Account.php:105 -msgid "Beginner/Basic" -msgstr "Principiante" +#: ../../Zotlabs/Module/Wiki.php:351 +msgid "Short description of your changes (optional)" +msgstr "" -#: ../../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/Wiki.php:358 ../../addon/gitwiki/Mod_Gitwiki.php:252 +msgid "Source" +msgstr "Sorgente" -#: ../../Zotlabs/Module/Admin/Site.php:251 -#: ../../Zotlabs/Module/Settings/Account.php:107 -msgid "Intermediate - somewhat comfortable" -msgstr "Intermedio - con alcune conoscenze tecniche" +#: ../../Zotlabs/Module/Wiki.php:368 ../../addon/gitwiki/Mod_Gitwiki.php:260 +msgid "New page name" +msgstr "" -#: ../../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/Wiki.php:373 ../../addon/gitwiki/Mod_Gitwiki.php:265 +#: ../../include/conversation.php:1282 +msgid "Embed image from photo albums" +msgstr "Inserisci un'immagine dall'album foto" -#: ../../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/Wiki.php:374 ../../addon/gitwiki/Mod_Gitwiki.php:266 +#: ../../include/conversation.php:1385 +msgid "Embed an image from your albums" +msgstr "Inserisci un'immagine dai tuoi album" -#: ../../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/Wiki.php:376 +#: ../../Zotlabs/Module/Profile_photo.php:465 +#: ../../Zotlabs/Module/Cover_photo.php:366 +#: ../../addon/gitwiki/Mod_Gitwiki.php:268 ../../include/conversation.php:1387 +#: ../../include/conversation.php:1434 +msgid "OK" +msgstr "OK" -#: ../../Zotlabs/Module/Admin/Site.php:266 ../../include/widgets.php:1560 -msgid "Site" -msgstr "Sito" +#: ../../Zotlabs/Module/Wiki.php:377 ../../addon/gitwiki/Mod_Gitwiki.php:269 +#: ../../include/conversation.php:1318 +msgid "Choose images to embed" +msgstr "Scegli le immagini da inserire" -#: ../../Zotlabs/Module/Admin/Site.php:268 -#: ../../Zotlabs/Module/Register.php:253 -msgid "Registration" -msgstr "Registrazione" +#: ../../Zotlabs/Module/Wiki.php:378 ../../addon/gitwiki/Mod_Gitwiki.php:270 +#: ../../include/conversation.php:1319 +msgid "Choose an album" +msgstr "Scegli un album" -#: ../../Zotlabs/Module/Admin/Site.php:269 -msgid "File upload" -msgstr "Caricamento file" +#: ../../Zotlabs/Module/Wiki.php:379 ../../addon/gitwiki/Mod_Gitwiki.php:271 +msgid "Choose a different album" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:270 -msgid "Policies" -msgstr "Politiche" +#: ../../Zotlabs/Module/Wiki.php:380 ../../addon/gitwiki/Mod_Gitwiki.php:272 +#: ../../include/conversation.php:1321 +msgid "Error getting album list" +msgstr "Errore nell'ottenere l'elenco degli album" -#: ../../Zotlabs/Module/Admin/Site.php:271 -#: ../../include/contact_widgets.php:16 -msgid "Advanced" -msgstr "Avanzate" +#: ../../Zotlabs/Module/Wiki.php:381 ../../addon/gitwiki/Mod_Gitwiki.php:273 +#: ../../include/conversation.php:1322 +msgid "Error getting photo link" +msgstr "Errore nell'ottenere il link alla foto" -#: ../../Zotlabs/Module/Admin/Site.php:275 -msgid "Site name" -msgstr "Nome del sito" +#: ../../Zotlabs/Module/Wiki.php:382 ../../addon/gitwiki/Mod_Gitwiki.php:274 +#: ../../include/conversation.php:1323 +msgid "Error getting album" +msgstr "Errore nell'ottenere l'album" -#: ../../Zotlabs/Module/Admin/Site.php:277 ../../Zotlabs/Module/Setup.php:359 -msgid "Server Configuration/Role" -msgstr "Configurazione del server" +#: ../../Zotlabs/Module/Wiki.php:458 ../../addon/gitwiki/Mod_Gitwiki.php:337 +msgid "Error creating wiki. Invalid name." +msgstr "Errore nella creazione. Nome non valido." -#: ../../Zotlabs/Module/Admin/Site.php:279 -msgid "Site default technical skill level" -msgstr "Livello tecnico predefinito per gli utenti del sito" +#: ../../Zotlabs/Module/Wiki.php:465 +msgid "A wiki with this name already exists." +msgstr "" -#: ../../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/Wiki.php:478 ../../addon/gitwiki/Mod_Gitwiki.php:348 +msgid "Wiki created, but error creating Home page." +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 -msgid "Lock the technical skill level setting" -msgstr "Il livello tecnico non potrà essere modificato" +#: ../../Zotlabs/Module/Wiki.php:485 ../../addon/gitwiki/Mod_Gitwiki.php:353 +msgid "Error creating wiki" +msgstr "" -#: ../../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/Wiki.php:508 +msgid "Error updating wiki. Invalid name." +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:284 -msgid "Banner/Logo" -msgstr "Banner o logo" +#: ../../Zotlabs/Module/Wiki.php:528 +msgid "Error updating wiki" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 -msgid "Administrator Information" -msgstr "Informazioni sull'amministratore" +#: ../../Zotlabs/Module/Wiki.php:543 +msgid "Wiki delete permission denied." +msgstr "" -#: ../../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/Wiki.php:553 +msgid "Error deleting wiki" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:286 -msgid "System language" -msgstr "Lingua di sistema" +#: ../../Zotlabs/Module/Wiki.php:586 ../../addon/gitwiki/Mod_Gitwiki.php:400 +msgid "New page created" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 -msgid "System theme" -msgstr "Tema di sistema" +#: ../../Zotlabs/Module/Wiki.php:707 +msgid "Cannot delete Home" +msgstr "" -#: ../../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/Wiki.php:771 +msgid "Current Revision" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Mobile system theme" -msgstr "Tema di sistema per dispositivi mobili" +#: ../../Zotlabs/Module/Wiki.php:771 +msgid "Selected Revision" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 -msgid "Theme for mobile devices" -msgstr "Tema per i dispositivi mobili" +#: ../../Zotlabs/Module/Wiki.php:821 +msgid "You must be authenticated." +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "Allow Feeds as Connections" -msgstr "Permetti di aggiungere i feed come contatti" +#: ../../Zotlabs/Module/Chanview.php:139 +msgid "toggle full screen mode" +msgstr "attiva/disattiva schermo intero" -#: ../../Zotlabs/Module/Admin/Site.php:290 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso delle risorse di sistema!)" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." +msgstr "Layout aggiornato." -#: ../../Zotlabs/Module/Admin/Site.php:291 -msgid "Maximum image size" -msgstr "Dimensione massima immagini" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:219 +msgid "Feature disabled." +msgstr "Funzionalità disattivata." -#: ../../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/Pdledit.php:47 ../../Zotlabs/Module/Pdledit.php:90 +msgid "Edit System Page Description" +msgstr "Modifica i layout di sistema" -#: ../../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/Pdledit.php:68 +msgid "(modified)" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 -msgid "Invitation only" -msgstr "Solo con invito" +#: ../../Zotlabs/Module/Pdledit.php:68 ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" +msgstr "Reimposta" -#: ../../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/Pdledit.php:85 +msgid "Layout not found." +msgstr "Layout non trovato." -#: ../../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/Pdledit.php:91 +msgid "Module Name:" +msgstr "Nome del modulo:" -#: ../../Zotlabs/Module/Admin/Site.php:295 -msgid "Register text" -msgstr "Testo di registrazione" +#: ../../Zotlabs/Module/Pdledit.php:92 +msgid "Layout Help" +msgstr "Guida al layout" -#: ../../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/Pdledit.php:93 +msgid "Edit another layout" +msgstr "" -#: ../../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/Pdledit.php:94 +msgid "System layout" +msgstr "" -#: ../../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/Poke.php:182 ../../Zotlabs/Lib/Apps.php:254 +#: ../../include/conversation.php:1092 +msgid "Poke" +msgstr "Poke" -#: ../../Zotlabs/Module/Admin/Site.php:297 -msgid "Preserve site homepage URL" -msgstr "Conserva l'URL della homepage" +#: ../../Zotlabs/Module/Poke.php:183 +msgid "Poke somebody" +msgstr "Manda un poke" -#: ../../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/Poke.php:186 +msgid "Poke/Prod" +msgstr "Poke/Prod" -#: ../../Zotlabs/Module/Admin/Site.php:298 -msgid "Accounts abandoned after x days" -msgstr "Account abbandonati dopo X giorni" +#: ../../Zotlabs/Module/Poke.php:187 +msgid "Poke, prod or do other things to somebody" +msgstr "Manda un poke o altro a qualcuno" -#: ../../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/Poke.php:194 +msgid "Recipient" +msgstr "Destinatario" -#: ../../Zotlabs/Module/Admin/Site.php:299 -msgid "Allowed friend domains" -msgstr "Domini fidati e consentiti" +#: ../../Zotlabs/Module/Poke.php:195 +msgid "Choose what you wish to do to recipient" +msgstr "Scegli cosa vuoi inviare al destinatario" -#: ../../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/Poke.php:198 ../../Zotlabs/Module/Poke.php:199 +msgid "Make this post private" +msgstr "Rendi privato questo post" -#: ../../Zotlabs/Module/Admin/Site.php:300 -msgid "Verify Email Addresses" -msgstr "Verifica l'indirizzo email" +#: ../../Zotlabs/Module/Profile_photo.php:66 +#: ../../Zotlabs/Module/Cover_photo.php:56 +msgid "Image uploaded but image cropping failed." +msgstr "L'immagine è stata caricata, ma il non è stato possibile ritagliarla." -#: ../../Zotlabs/Module/Admin/Site.php:300 -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/Profile_photo.php:120 +#: ../../Zotlabs/Module/Profile_photo.php:248 +#: ../../include/photo/photo_driver.php:740 +msgid "Profile Photos" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Admin/Site.php:301 -msgid "Force publish" -msgstr "Forza la publicazione del profilo" +#: ../../Zotlabs/Module/Profile_photo.php:142 +#: ../../Zotlabs/Module/Cover_photo.php:159 +msgid "Image resize failed." +msgstr "Il ridimensionamento dell'immagine è fallito." -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Profile_photo.php:218 +#: ../../addon/openclipatar/openclipatar.php:298 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." +"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/Site.php:302 -msgid "Import Public Streams" -msgstr "Suggerisci contenuti pubblici della rete Hubzilla" +#: ../../Zotlabs/Module/Profile_photo.php:225 +#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:195 +msgid "Unable to process image" +msgstr "Impossibile elaborare l'immagine" -#: ../../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/Profile_photo.php:260 +#: ../../Zotlabs/Module/Cover_photo.php:197 +msgid "Image upload failed." +msgstr "Il caricamento dell'immagine è fallito." + +#: ../../Zotlabs/Module/Profile_photo.php:279 +#: ../../Zotlabs/Module/Cover_photo.php:214 +msgid "Unable to process image." +msgstr "Impossibile elaborare l'immagine." -#: ../../Zotlabs/Module/Admin/Site.php:303 -msgid "Login on Homepage" -msgstr "Login sulla homepage" +#: ../../Zotlabs/Module/Profile_photo.php:343 +#: ../../Zotlabs/Module/Profile_photo.php:390 +#: ../../Zotlabs/Module/Cover_photo.php:307 +#: ../../Zotlabs/Module/Cover_photo.php:322 +msgid "Photo not available." +msgstr "Foto non disponibile." -#: ../../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 "Presenta il modulo di login ai visitatori sulla homepage in mancanza di altri contenuti." +#: ../../Zotlabs/Module/Profile_photo.php:455 +#: ../../Zotlabs/Module/Cover_photo.php:358 +msgid "Upload File:" +msgstr "Carica un file:" -#: ../../Zotlabs/Module/Admin/Site.php:304 -msgid "Enable context help" -msgstr "Abilita la guida contestuale" +#: ../../Zotlabs/Module/Profile_photo.php:456 +#: ../../Zotlabs/Module/Cover_photo.php:359 +msgid "Select a profile:" +msgstr "Seleziona un profilo:" -#: ../../Zotlabs/Module/Admin/Site.php:304 -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/Profile_photo.php:457 +msgid "Use Photo for Profile" +msgstr "Usa la foto per il profilo" -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Directory Server URL" -msgstr "URL del directory server" +#: ../../Zotlabs/Module/Profile_photo.php:457 +msgid "Change Profile Photo" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 -msgid "Default directory server" -msgstr "Directory server predefinito" +#: ../../Zotlabs/Module/Profile_photo.php:458 +msgid "Use" +msgstr "Usa" -#: ../../Zotlabs/Module/Admin/Site.php:308 -msgid "Proxy user" -msgstr "Utente proxy" +#: ../../Zotlabs/Module/Profile_photo.php:462 +#: ../../Zotlabs/Module/Profile_photo.php:463 +#: ../../Zotlabs/Module/Cover_photo.php:363 +#: ../../Zotlabs/Module/Cover_photo.php:364 +msgid "Use a photo from your albums" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:309 -msgid "Proxy URL" -msgstr "URL proxy" +#: ../../Zotlabs/Module/Profile_photo.php:467 +#: ../../Zotlabs/Module/Cover_photo.php:369 +msgid "Select existing photo" +msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 -msgid "Network timeout" -msgstr "Timeout rete" +#: ../../Zotlabs/Module/Profile_photo.php:486 +#: ../../Zotlabs/Module/Cover_photo.php:386 +msgid "Crop Image" +msgstr "Ritaglia immagine" -#: ../../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/Profile_photo.php:487 +#: ../../Zotlabs/Module/Cover_photo.php:387 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Ritaglia l'immagine per migliorarne la visualizzazione." -#: ../../Zotlabs/Module/Admin/Site.php:311 -msgid "Delivery interval" -msgstr "Recapito ritardato" +#: ../../Zotlabs/Module/Profile_photo.php:489 +#: ../../Zotlabs/Module/Cover_photo.php:389 +msgid "Done Editing" +msgstr "Modifica terminata" -#: ../../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/Chatsvc.php:131 +msgid "Away" +msgstr "Assente" -#: ../../Zotlabs/Module/Admin/Site.php:312 -msgid "Deliveries per process" -msgstr "Tentativi di recapito per processo" +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" +msgstr "Online" -#: ../../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/Item.php:194 +msgid "Unable to locate original post." +msgstr "Impossibile trovare il messaggio originale." -#: ../../Zotlabs/Module/Admin/Site.php:313 -msgid "Poll interval" -msgstr "Intervallo di polling" +#: ../../Zotlabs/Module/Item.php:476 +msgid "Empty post discarded." +msgstr "Il post vuoto è stato ignorato." -#: ../../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/Item.php:867 +msgid "Duplicate post suppressed." +msgstr "I post duplicati sono scartati." -#: ../../Zotlabs/Module/Admin/Site.php:314 -msgid "Maximum Load Average" -msgstr "Carico massimo medio" +#: ../../Zotlabs/Module/Item.php:1012 +msgid "System error. Post not saved." +msgstr "Errore di sistema. Post non salvato." -#: ../../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/Item.php:1048 +msgid "Your comment is awaiting approval." +msgstr "" -#: ../../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/Item.php:1153 +msgid "Unable to obtain post information from database." +msgstr "Impossibile caricare il post dal database." -#: ../../Zotlabs/Module/Admin/Site.php:315 -msgid "0 for no expiration of imported content" -msgstr "0 per non avere scadenza" +#: ../../Zotlabs/Module/Item.php:1182 +#, 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/Themes.php:18 -msgid "Theme settings updated." -msgstr "Le impostazioni del tema sono state aggiornate." +#: ../../Zotlabs/Module/Item.php:1189 +#, 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/Admin/Themes.php:58 -msgid "No themes found." -msgstr "Nessun tema trovato." +#: ../../Zotlabs/Module/Ping.php:320 +msgid "sent you a private message" +msgstr "ti ha inviato un messaggio privato" -#: ../../Zotlabs/Module/Admin/Themes.php:114 -msgid "Screenshot" -msgstr "Istantanea dello schermo" +#: ../../Zotlabs/Module/Ping.php:372 +msgid "added your channel" +msgstr "ha aggiunto il tuo canale" -#: ../../Zotlabs/Module/Admin/Themes.php:121 -#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1566 -msgid "Themes" -msgstr "Temi" +#: ../../Zotlabs/Module/Ping.php:396 +msgid "requires approval" +msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:160 -msgid "[Experimental]" -msgstr "[Sperimentale]" +#: ../../Zotlabs/Module/Ping.php:406 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../Zotlabs/Module/Admin/Themes.php:161 -msgid "[Unsupported]" -msgstr "[Non supportato]" +#: ../../Zotlabs/Module/Ping.php:424 +msgid "[today]" +msgstr "[oggi]" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:222 -#: ../../include/nav.php:95 ../../include/conversation.php:1672 -msgid "Photos" -msgstr "Foto" +#: ../../Zotlabs/Module/Ping.php:433 +msgid "posted an event" +msgstr "ha creato un evento" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +#: ../../Zotlabs/Module/Ping.php:466 +msgid "shared a file with you" +msgstr "" + +#: ../../Zotlabs/Module/Page.php:39 ../../Zotlabs/Module/Block.php:29 msgid "Invalid item." msgstr "Elemento non valido." -#: ../../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/Page.php:136 ../../Zotlabs/Module/Block.php:77 +#: ../../Zotlabs/Module/Display.php:133 +#: ../../Zotlabs/Lib/NativeWikiPage.php:519 ../../Zotlabs/Web/Router.php:167 +#: ../../include/help.php:81 +msgid "Page not found." +msgstr "Pagina non trovata." -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Page.php:173 msgid "" "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " "tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," @@ -1773,2380 +5367,2154 @@ msgid "" "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/Filer.php:52 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" +#: ../../Zotlabs/Module/Connedit.php:79 ../../Zotlabs/Module/Defperms.php:59 +msgid "Could not access contact record." +msgstr "Non è possibile accedere alle informazioni sul contatto." -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" -msgstr "- scegli -" +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." +msgstr "Non riesco a trovare il profilo selezionato." -#: ../../Zotlabs/Module/Mail.php:38 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." +msgstr "Contatto aggiornato." -#: ../../Zotlabs/Module/Mail.php:45 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." +msgstr "Impossibile aggiornare le informazioni del contatto." -#: ../../Zotlabs/Module/Mail.php:52 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." +#: ../../Zotlabs/Module/Connedit.php:302 +msgid "is now connected to" +msgstr "ha come nuovo contatto" -#: ../../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:427 +msgid "Could not access address book record." +msgstr "Impossibile accedere alle informazioni della rubrica." -#: ../../Zotlabs/Module/Mail.php:135 -msgid "Messages" -msgstr "Messaggi" +#: ../../Zotlabs/Module/Connedit.php:475 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Il canale non è disponibile - impossibile aggiornare." -#: ../../Zotlabs/Module/Mail.php:170 -msgid "Message recalled." -msgstr "Messaggio revocato." +#: ../../Zotlabs/Module/Connedit.php:490 ../../Zotlabs/Module/Connedit.php:499 +#: ../../Zotlabs/Module/Connedit.php:508 ../../Zotlabs/Module/Connedit.php:517 +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Unable to set address book parameters." +msgstr "Impossibile impostare i parametri della rubrica." -#: ../../Zotlabs/Module/Mail.php:183 -msgid "Conversation removed." -msgstr "Conversazione rimossa." +#: ../../Zotlabs/Module/Connedit.php:554 +msgid "Connection has been removed." +msgstr "Il contatto è stato rimosso." -#: ../../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/Connedit.php:594 ../../Zotlabs/Lib/Apps.php:247 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:1032 ../../include/nav.php:114 +msgid "View Profile" +msgstr "Profilo" -#: ../../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:597 +#, php-format +msgid "View %s's profile" +msgstr "Guarda il profilo di %s" -#: ../../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:601 +msgid "Refresh Permissions" +msgstr "Modifica i permessi" -#: ../../Zotlabs/Module/Mail.php:234 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Fetch updated permissions" +msgstr "Guarda e modifica i permessi assegnati" -#: ../../Zotlabs/Module/Mail.php:235 ../../Zotlabs/Module/Mail.php:360 -msgid "To:" -msgstr "A:" +#: ../../Zotlabs/Module/Connedit.php:608 +msgid "Refresh Photo" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:238 ../../Zotlabs/Module/Mail.php:362 -msgid "Subject:" -msgstr "Oggetto:" +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Fetch updated photo" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Invite.php:135 -msgid "Your message:" -msgstr "Il tuo messaggio:" +#: ../../Zotlabs/Module/Connedit.php:615 +msgid "Recent Activity" +msgstr "Attività recenti" -#: ../../Zotlabs/Module/Mail.php:243 ../../Zotlabs/Module/Mail.php:368 -#: ../../include/conversation.php:1244 -msgid "Attach file" -msgstr "Allega file" +#: ../../Zotlabs/Module/Connedit.php:618 +msgid "View recent posts and comments" +msgstr "Leggi i post recenti e i commenti" -#: ../../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/Connedit.php:625 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blocca ogni interazione con questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Mail.php:245 -msgid "Send" -msgstr "Invia" +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "This connection is blocked!" +msgstr "Questa connessione è tra quelle bloccate!" -#: ../../Zotlabs/Module/Mail.php:248 ../../Zotlabs/Module/Mail.php:373 -#: ../../include/conversation.php:1289 -msgid "Set expiration date" -msgstr "Data di scadenza" +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "Unignore" +msgstr "Non ignorare" -#: ../../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/Connedit.php:633 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignora tutte le comunicazioni in arrivo da questo contatto (abilita/disabilita)" -#: ../../Zotlabs/Module/Mail.php:332 -msgid "Delete message" -msgstr "Elimina il messaggio" +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "This connection is ignored!" +msgstr "Questa connessione è tra quelle ignorate!" -#: ../../Zotlabs/Module/Mail.php:333 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Unarchive" +msgstr "Non archiviare" -#: ../../Zotlabs/Module/Mail.php:334 -msgid "Recall message" -msgstr "Revoca il messaggio" +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "Archive" +msgstr "Archivia" -#: ../../Zotlabs/Module/Mail.php:336 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." +#: ../../Zotlabs/Module/Connedit.php:641 +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/Mail.php:353 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" +#: ../../Zotlabs/Module/Connedit.php:642 +msgid "This connection is archived!" +msgstr "Questa connessione è tra quelle archiviate!" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Unhide" +msgstr "Non nascondere" + +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "Hide" +msgstr "Nascondi" + +#: ../../Zotlabs/Module/Connedit.php:649 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Nascondi questo contatto a tutti gli altri (abilita/disabilita)" + +#: ../../Zotlabs/Module/Connedit.php:650 +msgid "This connection is hidden!" +msgstr "Questa connessione è tra quelle nascoste!" -#: ../../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/Connedit.php:657 +msgid "Delete this connection" +msgstr "Elimina questo contatto" -#: ../../Zotlabs/Module/Mail.php:359 -msgid "Send Reply" -msgstr "Invia la risposta" +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Fetch Vcard" +msgstr "" -#: ../../Zotlabs/Module/Mail.php:364 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Fetch electronic calling card for this connection" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:242 -msgid "Blocked" -msgstr "Bloccati" +#: ../../Zotlabs/Module/Connedit.php:679 +msgid "Open Individual Permissions section by default" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:241 -msgid "Ignored" -msgstr "Ignorati" +#: ../../Zotlabs/Module/Connedit.php:702 +msgid "Affinity" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:240 -msgid "Hidden" -msgstr "Nascosti" +#: ../../Zotlabs/Module/Connedit.php:705 +msgid "Open Set Affinity section by default" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:239 -msgid "Archived" -msgstr "Archiviati" +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:22 +msgid "Me" +msgstr "Me" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1573 -msgid "New" -msgstr "Novità" +#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:23 +msgid "Family" +msgstr "Famiglia" -#: ../../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/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:25 +msgid "Acquaintances" +msgstr "Conoscenti" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" -msgstr "Nuovi contatti" +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Filter" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" -msgstr "Richieste di contatto in attesa" +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Open Custom Filter section by default" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:144 -msgid "All Connections" -msgstr "Tutti i contatti" +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Approve this connection" +msgstr "Approva questo contatto" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" -msgstr "Mostra tutti i contatti" +#: ../../Zotlabs/Module/Connedit.php:779 +msgid "Accept connection to allow communication" +msgstr "Entra in contatto per poter comunicare" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" -msgstr "Mostra solo i contatti bloccati" +#: ../../Zotlabs/Module/Connedit.php:784 +msgid "Set Affinity" +msgstr "Scegli l'affinità" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" -msgstr "Mostra solo i contatti ignorati" +#: ../../Zotlabs/Module/Connedit.php:787 +msgid "Set Profile" +msgstr "Scegli il profilo da mostrare" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" -msgstr "Mostra solo i contatti archiviati" +#: ../../Zotlabs/Module/Connedit.php:790 +msgid "Set Affinity & Profile" +msgstr "Affinità e profilo" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" -msgstr "Mostra solo i contatti nascosti" +#: ../../Zotlabs/Module/Connedit.php:838 +msgid "This connection is unreachable from this location." +msgstr "" -#: ../../Zotlabs/Module/Connections.php:238 -msgid "Pending approval" -msgstr "In attesa di conferma" +#: ../../Zotlabs/Module/Connedit.php:839 +msgid "This connection may be unreachable from other channel locations." +msgstr "" -#: ../../Zotlabs/Module/Connections.php:254 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Connedit.php:841 +msgid "Location independence is not supported by their network." +msgstr "" -#: ../../Zotlabs/Module/Connections.php:255 -msgid "Edit connection" -msgstr "Modifica il contatto" +#: ../../Zotlabs/Module/Connedit.php:847 +msgid "" +"This connection is unreachable from this location. Location independence is " +"not supported by their network." +msgstr "" -#: ../../Zotlabs/Module/Connections.php:256 -msgid "Delete connection" -msgstr "Elimina il contatto" +#: ../../Zotlabs/Module/Connedit.php:850 ../../Zotlabs/Module/Defperms.php:238 +#: ../../Zotlabs/Widget/Settings_menu.php:109 +msgid "Connection Default Permissions" +msgstr "Permessi predefiniti dei nuovi contatti" -#: ../../Zotlabs/Module/Connections.php:265 -msgid "Channel address" -msgstr "Indirizzo del canale" +#: ../../Zotlabs/Module/Connedit.php:850 ../../include/items.php:4164 +#, php-format +msgid "Connection: %s" +msgstr "Contatto: %s" -#: ../../Zotlabs/Module/Connections.php:267 -msgid "Network" -msgstr "Network" +#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:239 +msgid "Apply these permissions automatically" +msgstr "Applica automaticamente questi permessi" -#: ../../Zotlabs/Module/Connections.php:270 -msgid "Status" -msgstr "Stato" +#: ../../Zotlabs/Module/Connedit.php:851 +msgid "Connection requests will be approved without your interaction" +msgstr "Le richieste di entrare in contatto saranno approvate in automatico" -#: ../../Zotlabs/Module/Connections.php:272 -msgid "Connected" -msgstr "In contatto" +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +msgid "Permission role" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:274 -msgid "Approve connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:240 +#: ../../Zotlabs/Widget/Notifications.php:151 ../../include/nav.php:284 +msgid "Loading" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:276 -msgid "Ignore connection" -msgstr "Ignora il contatto" +#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:241 +msgid "Add permission role" +msgstr "" -#: ../../Zotlabs/Module/Connections.php:277 -#: ../../Zotlabs/Module/Connedit.php:583 -#: ../../Zotlabs/Module/Notifications.php:55 -msgid "Ignore" -msgstr "Ignora" +#: ../../Zotlabs/Module/Connedit.php:860 +msgid "This connection's primary address is" +msgstr "Indirizzo primario di questo canale" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Recent activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Connedit.php:861 +msgid "Available locations:" +msgstr "Indirizzi disponibili" -#: ../../Zotlabs/Module/Connections.php:302 ../../Zotlabs/Lib/Apps.php:209 -#: ../../include/text.php:901 ../../include/nav.php:191 -msgid "Connections" -msgstr "Contatti" +#: ../../Zotlabs/Module/Connedit.php:866 ../../Zotlabs/Module/Defperms.php:245 +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/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 "Cerca" +#: ../../Zotlabs/Module/Connedit.php:867 +msgid "Connection Tools" +msgstr "Gestione dei contatti" -#: ../../Zotlabs/Module/Connections.php:307 -msgid "Search your connections" -msgstr "Cerca tra i contatti" +#: ../../Zotlabs/Module/Connedit.php:869 +msgid "Slide to adjust your degree of friendship" +msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../Zotlabs/Module/Connections.php:308 -msgid "Connections search" -msgstr "Ricerca tra i contatti" +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valutazioni" -#: ../../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/Connedit.php:871 +msgid "Slide to adjust your rating" +msgstr "Trascina per cambiare la tua valutazione" -#: ../../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/Connedit.php:872 ../../Zotlabs/Module/Connedit.php:877 +msgid "Optionally explain your rating" +msgstr "Commento facoltativo" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" -msgstr "Copertine del canale" +#: ../../Zotlabs/Module/Connedit.php:874 +msgid "Custom Filter" +msgstr "Filtro personalizzato" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." -msgstr "Il ridimensionamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Connedit.php:875 +msgid "Only import posts with this text" +msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../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/Connedit.php:875 ../../Zotlabs/Module/Connedit.php:876 +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/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:223 -msgid "Image upload failed." -msgstr "Il caricamento dell'immagine è fallito." +#: ../../Zotlabs/Module/Connedit.php:876 +msgid "Do not import posts with this text" +msgstr "Non importare i post con queste parole chiave" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:242 -msgid "Unable to process image." -msgstr "Impossibile elaborare l'immagine." +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "This information is public!" +msgstr "Questa informazione è pubblica!" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4341 -msgid "female" -msgstr "femmina" +#: ../../Zotlabs/Module/Connedit.php:883 +msgid "Connection Pending Approval" +msgstr "Contatti in attesa di approvazione" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4342 +#: ../../Zotlabs/Module/Connedit.php:888 #, php-format -msgid "%1$s updated her %2$s" -msgstr "Aggiornamento: %2$s di %1$s" +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/Cover_photo.php:235 ../../include/items.php:4343 -msgid "male" -msgstr "maschio" +#: ../../Zotlabs/Module/Connedit.php:895 +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/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/Connedit.php:896 +msgid "Last update:" +msgstr "Ultimo aggiornamento:" -#: ../../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" +#: ../../Zotlabs/Module/Connedit.php:904 +msgid "Details" +msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1731 -msgid "cover photo" -msgstr "Copertina del canale" +#: ../../Zotlabs/Module/Chat.php:181 +msgid "Room not found" +msgstr "Chat non trovata" -#: ../../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/Chat.php:197 +msgid "Leave Room" +msgstr "Lascia la chat" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:387 -msgid "Upload File:" -msgstr "Carica un file:" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "Delete Room" +msgstr "Elimina questa chat" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:388 -msgid "Select a profile:" -msgstr "Seleziona un profilo:" +#: ../../Zotlabs/Module/Chat.php:199 +msgid "I am away right now" +msgstr "Non sono presente" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" -msgstr "Carica una copertina" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "I am online" +msgstr "Sono online" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -#: ../../Zotlabs/Module/Settings/Channel.php:399 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Chat.php:202 +msgid "Bookmark this room" +msgstr "Aggiungi questa chat ai segnalibri" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:396 -msgid "skip this step" -msgstr "salta questo passaggio" +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Mail.php:241 +#: ../../Zotlabs/Module/Mail.php:362 ../../include/conversation.php:1313 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" -#: ../../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/Chat.php:206 ../../Zotlabs/Module/Mail.php:294 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:764 +#: ../../include/conversation.php:1432 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:415 -msgid "Crop Image" -msgstr "Ritaglia immagine" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "New Chatroom" +msgstr "Nuova chat" -#: ../../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/Chat.php:233 +msgid "Chatroom name" +msgstr "Nome chat" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "Done Editing" -msgstr "Modifica terminata" +#: ../../Zotlabs/Module/Chat.php:234 +msgid "Expiration of chats (minutes)" +msgstr "Scadenza dei messaggi della chat (minuti)" -#: ../../Zotlabs/Module/Rpost.php:138 ../../Zotlabs/Module/Editpost.php:106 -msgid "Edit post" -msgstr "Modifica post" +#: ../../Zotlabs/Module/Chat.php:250 +#, php-format +msgid "%1$s's Chatrooms" +msgstr "Le chat di %1$s" -#: ../../Zotlabs/Module/Connedit.php:80 -msgid "Could not access contact record." -msgstr "Non è possibile accedere alle informazioni sul contatto." +#: ../../Zotlabs/Module/Chat.php:255 +msgid "No chatrooms available" +msgstr "Nessuna chat disponibile" -#: ../../Zotlabs/Module/Connedit.php:104 -msgid "Could not locate selected profile." -msgstr "Non riesco a trovare il profilo selezionato." +#: ../../Zotlabs/Module/Chat.php:259 +msgid "Expiration" +msgstr "Scadenza" + +#: ../../Zotlabs/Module/Chat.php:260 +msgid "min" +msgstr "min" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:248 +#: ../../include/conversation.php:1831 ../../include/nav.php:401 +msgid "Photos" +msgstr "Foto" -#: ../../Zotlabs/Module/Connedit.php:256 -msgid "Connection updated." -msgstr "Contatto aggiornato." +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:243 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/conversation.php:1839 +#: ../../include/nav.php:409 +msgid "Files" +msgstr "Archivio file" -#: ../../Zotlabs/Module/Connedit.php:258 -msgid "Failed to update connection record." -msgstr "Impossibile aggiornare le informazioni del contatto." +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Impossibile aggiornare il menù." -#: ../../Zotlabs/Module/Connedit.php:308 -msgid "is now connected to" -msgstr "ha come nuovo contatto" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Impossibile creare il menù." -#: ../../Zotlabs/Module/Connedit.php:440 -msgid "Could not access address book record." -msgstr "Impossibile accedere alle informazioni della rubrica." +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nome del menu" -#: ../../Zotlabs/Module/Connedit.php:460 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Il canale non è disponibile - impossibile aggiornare." +#: ../../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: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/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Titolo del menu" -#: ../../Zotlabs/Module/Connedit.php:538 -msgid "Connection has been removed." -msgstr "Il contatto è stato rimosso." +#: ../../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:554 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:89 ../../include/conversation.php:953 -msgid "View Profile" -msgstr "Profilo" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permetti i segnalibri" -#: ../../Zotlabs/Module/Connedit.php:557 -#, php-format -msgid "View %s's profile" -msgstr "Guarda il profilo di %s" +#: ../../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:561 -msgid "Refresh Permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Salva e procedi" -#: ../../Zotlabs/Module/Connedit.php:564 -msgid "Fetch updated permissions" -msgstr "Guarda e modifica i permessi assegnati" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2403 +msgid "Menus" +msgstr "Menù" -#: ../../Zotlabs/Module/Connedit.php:568 -msgid "Recent Activity" -msgstr "Attività recenti" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Permetti segnalibri" -#: ../../Zotlabs/Module/Connedit.php:571 -msgid "View recent posts and comments" -msgstr "Leggi i post recenti e i commenti" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Elimina questo menù" -#: ../../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:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Modifica i contenuti del menù" -#: ../../Zotlabs/Module/Connedit.php:579 -msgid "This connection is blocked!" -msgstr "Questa connessione è tra quelle bloccate!" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modifica questo menù" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Unignore" -msgstr "Non ignorare" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Il menù non può essere eliminato." -#: ../../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:149 +msgid "Edit Menu" +msgstr "Modifica menù" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "This connection is ignored!" -msgstr "Questa connessione è tra quelle ignorate!" +#: ../../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:591 -msgid "Unarchive" -msgstr "Non archiviare" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nome del menù" -#: ../../Zotlabs/Module/Connedit.php:591 -msgid "Archive" -msgstr "Archivia" +#: ../../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: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:156 +msgid "Menu title" +msgstr "Titolo del menù" -#: ../../Zotlabs/Module/Connedit.php:595 -msgid "This connection is archived!" -msgstr "Questa connessione è tra quelle archiviate!" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titolo del menù come comparirà a tutti" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Unhide" -msgstr "Non nascondere" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permetti l'invio di segnalibri" -#: ../../Zotlabs/Module/Connedit.php:599 -msgid "Hide" -msgstr "Nascondi" +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2404 +msgid "Layouts" +msgstr "Layout" -#: ../../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/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:251 +#: ../../include/nav.php:176 ../../include/nav.php:280 +#: ../../include/help.php:68 ../../include/help.php:74 +msgid "Help" +msgstr "Guida" -#: ../../Zotlabs/Module/Connedit.php:603 -msgid "This connection is hidden!" -msgstr "Questa connessione è tra quelle nascoste!" +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" +msgstr "Guida di Comanche Page Description Language" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Delete this connection" -msgstr "Elimina questo contatto" +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" +msgstr "Descrizione del layout" -#: ../../Zotlabs/Module/Connedit.php:625 ../../include/widgets.php:529 -msgid "Me" -msgstr "Me" +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" +msgstr "Scarica il file PDL" -#: ../../Zotlabs/Module/Connedit.php:626 ../../include/widgets.php:530 -msgid "Family" -msgstr "Famiglia" +#: ../../Zotlabs/Module/Cloud.php:114 +msgid "Please refresh page" +msgstr "" -#: ../../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/Cloud.php:117 +msgid "Unknown error" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:628 ../../include/widgets.php:532 -msgid "Acquaintances" -msgstr "Conoscenti" +#: ../../Zotlabs/Module/Email_validation.php:24 +#: ../../Zotlabs/Module/Email_resend.php:12 +msgid "Token verification failed." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Approve this connection" -msgstr "Approva questo contatto" +#: ../../Zotlabs/Module/Email_validation.php:36 +msgid "Email Verification Required" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:686 -msgid "Accept connection to allow communication" -msgstr "Entra in contatto per poter comunicare" +#: ../../Zotlabs/Module/Email_validation.php:37 +#, php-format +msgid "" +"A verification token was sent to your email address [%s]. Enter that token " +"here to complete the account verification step. Please allow a few minutes " +"for delivery, and check your spam folder if you do not see the message." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:691 -msgid "Set Affinity" -msgstr "Scegli l'affinità" +#: ../../Zotlabs/Module/Email_validation.php:38 +msgid "Resend Email" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:694 -msgid "Set Profile" -msgstr "Scegli il profilo da mostrare" +#: ../../Zotlabs/Module/Email_validation.php:41 +msgid "Validation token" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:697 -msgid "Set Affinity & Profile" -msgstr "Affinità e profilo" +#: ../../Zotlabs/Module/Tagger.php:48 +msgid "Post not found." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:746 -msgid "none" -msgstr "--" +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:160 +#: ../../include/bbcode.php:339 +msgid "post" +msgstr "il post" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/widgets.php:656 -msgid "Connection Default Permissions" -msgstr "Permessi predefiniti dei nuovi contatti" +#: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 +#: ../../include/text.php:2012 +msgid "comment" +msgstr "il commento" -#: ../../Zotlabs/Module/Connedit.php:750 ../../include/items.php:3993 +#: ../../Zotlabs/Module/Tagger.php:117 #, php-format -msgid "Connection: %s" -msgstr "Contatto: %s" +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/Connedit.php:751 -msgid "Apply these permissions automatically" -msgstr "Applica automaticamente questi permessi" +#: ../../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:751 -msgid "Connection requests will be approved without your interaction" -msgstr "Le richieste di entrare in contatto saranno approvate in automatico" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor di configurazione" -#: ../../Zotlabs/Module/Connedit.php:753 -msgid "This connection's primary address is" -msgstr "Indirizzo primario di questo canale" +#: ../../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:754 -msgid "Available locations:" -msgstr "Indirizzi disponibili" +#: ../../Zotlabs/Module/Defperms.php:239 +msgid "" +"If enabled, connection requests will be approved without your interaction" +msgstr "" + +#: ../../Zotlabs/Module/Defperms.php:246 +msgid "Automatic approval settings" +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:758 +#: ../../Zotlabs/Module/Defperms.php:254 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." +"Some individual permissions may have been preset or locked based on your " +"channel type and privacy settings." +msgstr "" -#: ../../Zotlabs/Module/Connedit.php:759 -msgid "Connection Tools" -msgstr "Gestione dei contatti" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Gruppo di canali creato." -#: ../../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/Group.php:30 +msgid "Could not create privacy group." +msgstr "Impossibile creare il gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:762 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:143 +#: ../../include/items.php:4131 +msgid "Privacy group not found." +msgstr "Gruppo di canali non trovato." -#: ../../Zotlabs/Module/Connedit.php:763 -msgid "Slide to adjust your rating" -msgstr "Trascina per cambiare la tua valutazione" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Gruppo di canali aggiornato." -#: ../../Zotlabs/Module/Connedit.php:764 ../../Zotlabs/Module/Connedit.php:769 -msgid "Optionally explain your rating" -msgstr "Commento facoltativo" +#: ../../Zotlabs/Module/Group.php:92 +msgid "Create a group of channels." +msgstr "Crea un gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:766 -msgid "Custom Filter" -msgstr "Filtro personalizzato" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:186 +msgid "Privacy group name: " +msgstr "Nome del gruppo di canali:" -#: ../../Zotlabs/Module/Connedit.php:767 -msgid "Only import posts with this text" -msgstr "Importa solo i post che contengono queste parole chiave" +#: ../../Zotlabs/Module/Group.php:95 ../../Zotlabs/Module/Group.php:189 +msgid "Members are visible to other channels" +msgstr "I membri potranno vedere gli altri canali del gruppo" -#: ../../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/Group.php:113 +msgid "Privacy group removed." +msgstr "Gruppo di canali rimosso." -#: ../../Zotlabs/Module/Connedit.php:768 -msgid "Do not import posts with this text" -msgstr "Non importare i post con queste parole chiave" +#: ../../Zotlabs/Module/Group.php:115 +msgid "Unable to remove privacy group." +msgstr "Impossibile rimuovere il gruppo di canali." -#: ../../Zotlabs/Module/Connedit.php:770 -msgid "This information is public!" -msgstr "Questa informazione è pubblica!" +#: ../../Zotlabs/Module/Group.php:185 +msgid "Privacy group editor" +msgstr "Editor dei gruppi di canali" + +#: ../../Zotlabs/Module/Group.php:199 ../../Zotlabs/Module/Help.php:81 +msgid "Members" +msgstr "Membri" + +#: ../../Zotlabs/Module/Group.php:201 +msgid "All Connected Channels" +msgstr "Tutti i canali connessi" + +#: ../../Zotlabs/Module/Group.php:233 +msgid "Click on a channel to add or remove." +msgstr "Clicca su un canale per aggiungerlo o rimuoverlo." -#: ../../Zotlabs/Module/Connedit.php:775 -msgid "Connection Pending Approval" -msgstr "Contatti in attesa di approvazione" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." +msgstr "Profilo non trovato." -#: ../../Zotlabs/Module/Connedit.php:778 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -msgid "inherited" -msgstr "derivato" +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." +msgstr "Profilo eliminato." -#: ../../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/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" +msgstr "Profilo-" -#: ../../Zotlabs/Module/Connedit.php:782 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" -msgstr "Permessi concessi a te" +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." +msgstr "Il nuovo profilo è stato creato." -#: ../../Zotlabs/Module/Connedit.php:783 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -msgid "My Settings" -msgstr "Permessi che concedo" +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." +msgstr "Impossibile duplicare il profilo." -#: ../../Zotlabs/Module/Connedit.php:785 -#: ../../Zotlabs/Module/Settings/Tokens.php:165 -msgid "Individual Permissions" -msgstr "Permessi individuali" +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." +msgstr "Il profilo non è disponibile per l'export." -#: ../../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/Profiles.php:252 +msgid "Profile Name is required." +msgstr "Il nome del profilo è obbligatorio." -#: ../../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/Profiles.php:459 +msgid "Marital Status" +msgstr "Stato sentimentale" -#: ../../Zotlabs/Module/Connedit.php:788 -msgid "Last update:" -msgstr "Ultimo aggiornamento:" +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" +msgstr "Partner affettivo" -#: ../../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/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:775 +msgid "Likes" +msgstr "Mi piace" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" -msgstr "Nome del block" +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:776 +msgid "Dislikes" +msgstr "Non mi piace" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1260 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:783 +msgid "Work/Employment" +msgstr "Lavoro/impiego" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" -msgstr "Modifica il block" +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" +msgstr "Religione" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" -msgstr "Nome layout" +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" -msgstr "Descrizione del layout (facoltativa)" +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" -msgstr "Modifica il layout" +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" +msgstr "Preferenze sessuali" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" +msgstr "Home page" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" -msgstr "Modifica la pagina web" +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" +msgstr "Interessi" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." -msgstr "Impossibile aggiornare il menù." +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." +msgstr "Profilo aggiornato." -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." -msgstr "Impossibile creare il menù." +#: ../../Zotlabs/Module/Profiles.php:678 +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:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" -msgstr "Nome del menu" +#: ../../Zotlabs/Module/Profiles.php:725 +msgid "Edit Profile Details" +msgstr "Modifica i dettagli del profilo" -#: ../../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:727 +msgid "View this profile" +msgstr "Guarda questo profilo" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" -msgstr "Titolo del menu" +#: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 +#: ../../include/channel.php:1320 +msgid "Edit visibility" +msgstr "Cambia la visibilità" -#: ../../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:729 +msgid "Profile Tools" +msgstr "Gestione del profilo" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" -msgstr "Permetti i segnalibri" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Change cover photo" +msgstr "Cambia la copertina del canale" -#: ../../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:731 ../../include/channel.php:1290 +msgid "Change profile photo" +msgstr "Cambia la foto del profilo" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" -msgstr "Salva e procedi" +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Create a new profile using these settings" +msgstr "Crea un nuovo profilo usando queste impostazioni" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2309 -msgid "Menus" -msgstr "Menù" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Clone this profile" +msgstr "Clona questo profilo" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" -msgstr "Elimina" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Delete this profile" +msgstr "Elimina questo profilo" -#: ../../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/Profiles.php:735 +msgid "Add profile things" +msgstr "Aggiungi oggetti al profilo" -#: ../../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/Profiles.php:736 ../../include/conversation.php:1705 +msgid "Personal" +msgstr "Personali" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" -msgstr "Permetti segnalibri" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Relation" +msgstr "Relazione" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" -msgstr "Elimina questo menù" +#: ../../Zotlabs/Module/Profiles.php:739 ../../Zotlabs/Widget/Newmember.php:53 +#: ../../include/datetime.php:58 +msgid "Miscellaneous" +msgstr "Altro" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" -msgstr "Modifica i contenuti del menù" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Import profile from file" +msgstr "Importa il profilo da un file" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" -msgstr "Modifica questo menù" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Export profile to file" +msgstr "Esporta il profilo in un file" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." -msgstr "Il menù non può essere eliminato." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Your gender" +msgstr "Sesso" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." -msgstr "Menù non trovato." +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Marital status" +msgstr "Stato civile" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" -msgstr "Modifica menù" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Sexual preference" +msgstr "Preferenze sessuali" -#: ../../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:748 +msgid "Profile name" +msgstr "Nome del profilo" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" -msgstr "Nome del menù" +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "This is your default profile." +msgstr "Questo è il tuo profilo predefinito." -#: ../../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:752 +msgid "Your full name" +msgstr "Il tuo nome completo" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" -msgstr "Titolo del menù" +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Title/Description" +msgstr "Titolo/descrizione" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" -msgstr "Titolo del menù come comparirà a tutti" +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Street address" +msgstr "Indirizzo (via/piazza)" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" -msgstr "Permetti l'invio di segnalibri" +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Locality/City" +msgstr "Località" -#: ../../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:758 +msgid "Region/State" +msgstr "Regione/stato" -#: ../../Zotlabs/Module/Appman.php:37 ../../Zotlabs/Module/Appman.php:53 -msgid "App installed." -msgstr "App installata" +#: ../../Zotlabs/Module/Profiles.php:759 +msgid "Postal/Zip code" +msgstr "CAP" -#: ../../Zotlabs/Module/Appman.php:46 -msgid "Malformed app." -msgstr "L'app contiene errori" +#: ../../Zotlabs/Module/Profiles.php:765 +msgid "Who (if applicable)" +msgstr "Con chi (se possibile)" -#: ../../Zotlabs/Module/Appman.php:104 -msgid "Embed code" -msgstr "Inserisci il codice" +#: ../../Zotlabs/Module/Profiles.php:765 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" -#: ../../Zotlabs/Module/Appman.php:110 ../../include/widgets.php:107 -msgid "Edit App" -msgstr "Modifica app" +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Since (date)" +msgstr "dal (data)" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Create App" -msgstr "Crea una app" +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Tell us about yourself" +msgstr "Raccontaci di te..." -#: ../../Zotlabs/Module/Appman.php:115 -msgid "Name of app" -msgstr "Nome app" +#: ../../Zotlabs/Module/Profiles.php:770 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" +msgstr "Indirizzo home page" -#: ../../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/Profiles.php:771 +msgid "Hometown" +msgstr "Città dove vivo" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Location (URL) of app" -msgstr "Indirizzo (URL) della app" +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Political views" +msgstr "Orientamento politico" -#: ../../Zotlabs/Module/Appman.php:117 ../../Zotlabs/Module/Rbmark.php:101 -#: ../../Zotlabs/Module/Events.php:465 -msgid "Description" -msgstr "Descrizione" +#: ../../Zotlabs/Module/Profiles.php:773 +msgid "Religious views" +msgstr "Orientamento religioso" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "Photo icon URL" -msgstr "URL icona" +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Keywords used in directory listings" +msgstr "Parole chiavi mostrate nell'elenco dei canali" -#: ../../Zotlabs/Module/Appman.php:118 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixel - facoltativa" +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Example: fishing photography software" +msgstr "Per esempio: pesca fotografia programmazione" -#: ../../Zotlabs/Module/Appman.php:119 -msgid "Categories (optional, comma separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Musical interests" +msgstr "Interessi musicali" -#: ../../Zotlabs/Module/Appman.php:120 -msgid "Version ID" -msgstr "ID versione" +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Books, literature" +msgstr "Libri, letteratura" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Price of app" -msgstr "Prezzo app" +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Television" +msgstr "Televisione" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) to purchase app" -msgstr "Indirizzo (URL) per acquistare la app" +#: ../../Zotlabs/Module/Profiles.php:780 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film, danza, cultura, intrattenimento" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1392 -msgid "Public Hubs" -msgstr "Hub pubblici" +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "Hobbies/Interests" +msgstr "Hobby/interessi" -#: ../../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:782 +msgid "Love/Romance" +msgstr "Amore" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" -msgstr "URL del hub" +#: ../../Zotlabs/Module/Profiles.php:784 +msgid "School/Education" +msgstr "Scuola/educazione" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" -msgstr "Tipo di accesso" +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Contact information and social networks" +msgstr "Contatti e social network" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" -msgstr "Politica di registrazione" +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "My other channels" +msgstr "I miei altri canali" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" -msgstr "Statistiche" +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Communications" +msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" -msgstr "Software" +#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1316 +msgid "Profile Image" +msgstr "Immagine del profilo" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:958 -msgid "Ratings" -msgstr "Valutazioni" +#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1297 +#: ../../include/nav.php:117 +msgid "Edit Profiles" +msgstr "Modifica i tuoi profili" -#: ../../Zotlabs/Module/Pubsites.php:48 -msgid "Rate" -msgstr "Valuta" +#: ../../Zotlabs/Module/Go.php:21 +msgid "This page is available only to site members" +msgstr "" -#: ../../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/Go.php:27 +msgid "Welcome" +msgstr "" -#: ../../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/Go.php:29 +msgid "What would you like to do?" +msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "Elemento non disponibile." +#: ../../Zotlabs/Module/Go.php:31 +msgid "" +"Please bookmark this page if you would like to return to it in the future" +msgstr "" -#: ../../Zotlabs/Module/Api.php:60 ../../Zotlabs/Module/Api.php:81 -msgid "Authorize application connection" -msgstr "Autorizza la app" +#: ../../Zotlabs/Module/Go.php:35 +msgid "Upload a profile photo" +msgstr "" -#: ../../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/Go.php:36 +msgid "Upload a cover photo" +msgstr "" -#: ../../Zotlabs/Module/Api.php:71 -msgid "Please login to continue." -msgstr "Accedi al sito per continuare." +#: ../../Zotlabs/Module/Go.php:37 +msgid "Edit your default profile" +msgstr "" -#: ../../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/Go.php:38 ../../Zotlabs/Widget/Newmember.php:43 +msgid "View friend suggestions" +msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:12 -msgid "Share content from Firefox to $Projectname" -msgstr "Condividi i contenuti su $Projectname da Firefox" +#: ../../Zotlabs/Module/Go.php:39 ../../Zotlabs/Widget/Newmember.php:42 +msgid "View the channel directory" +msgstr "" -#: ../../Zotlabs/Module/Ffsapi.php:15 -msgid "Activate the Firefox $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../Zotlabs/Module/Go.php:40 +msgid "View/edit your channel settings" +msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." -msgstr "Layout aggiornato." +#: ../../Zotlabs/Module/Go.php:41 +msgid "View the site or project documentation" +msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." -msgstr "Funzionalità disattivata." +#: ../../Zotlabs/Module/Go.php:42 +msgid "Visit your channel homepage" +msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" -msgstr "Modifica i layout di sistema" +#: ../../Zotlabs/Module/Go.php:43 +msgid "" +"View your connections and/or add somebody whose address you already know" +msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." -msgstr "Layout non trovato." +#: ../../Zotlabs/Module/Go.php:44 +msgid "" +"View your personal stream (this may be empty until you add some connections)" +msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" -msgstr "Nome del modulo:" +#: ../../Zotlabs/Module/Go.php:52 +msgid "View the public stream. Warning: this content is not moderated" +msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" -msgstr "Guida al layout" +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../Zotlabs/Module/Siteinfo.php:48 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" +msgstr "Modifica la pagina web" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" -msgstr "%s ti dà il benvenuto" +#: ../../Zotlabs/Module/Manage.php:145 +msgid "Create a new channel" +msgstr "Crea un nuovo canale" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." -msgstr "Le informazioni remote sulla privacy non sono disponibili." +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:240 +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Channel Manager" +msgstr "Gestione canali" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" -msgstr "Visibile a:" +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Current Channel" +msgstr "Canale attuale" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Switch to one of your channels by selecting it." +msgstr "Seleziona l'altro canale a cui vuoi passare." -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." -msgstr "File non trovato." +#: ../../Zotlabs/Module/Manage.php:174 +msgid "Default Channel" +msgstr "Canale predefinito" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" -msgstr "Modifica i permessi del file" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Make Default" +msgstr "Rendi predefinito" -#: ../../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" +#: ../../Zotlabs/Module/Manage.php:178 +#, php-format +msgid "%d new messages" +msgstr "%d nuovi messaggi" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" -msgstr "Modifica i permessi" +#: ../../Zotlabs/Module/Manage.php:179 +#, php-format +msgid "%d new introductions" +msgstr "%d nuove richieste di entrare in contatto" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" -msgstr "Includi tutti i file e le sottocartelle" +#: ../../Zotlabs/Module/Manage.php:181 +msgid "Delegated Channel" +msgstr "Canale delegato" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" -msgstr "Torna all'elenco dei file" +#: ../../Zotlabs/Module/Cards.php:42 ../../Zotlabs/Module/Cards.php:181 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1890 +#: ../../include/features.php:114 ../../include/nav.php:458 +msgid "Cards" +msgstr "Card" -#: ../../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/Cards.php:99 +msgid "Add Card" +msgstr "" -#: ../../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/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Questo directory server necessita di un token di autenticazione" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" -msgstr "Condividi questo file" +#: ../../Zotlabs/Module/Siteinfo.php:18 +msgid "About this site" +msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" -msgstr "Mostra l'URL del file" +#: ../../Zotlabs/Module/Siteinfo.php:19 +msgid "Site Name" +msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" -msgstr "Notifica ai contatti che hai caricato questo file" +#: ../../Zotlabs/Module/Siteinfo.php:23 +msgid "Administrator" +msgstr "Amministratore" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" -msgstr "Continua" +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../Zotlabs/Module/Register.php:232 +msgid "Terms of Service" +msgstr "Condizioni d'Uso" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" -msgstr "Canale premium - configurazione" +#: ../../Zotlabs/Module/Siteinfo.php:26 +msgid "Software and Project information" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" -msgstr "Abilita le restrizioni del canale premium" +#: ../../Zotlabs/Module/Siteinfo.php:27 +msgid "This site is powered by $Projectname" +msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 +#: ../../Zotlabs/Module/Siteinfo.php:28 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." +"Federated and decentralised networking and identity services provided by Zot" +msgstr "" -#: ../../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/Siteinfo.php:30 +#, php-format +msgid "Version %s" +msgstr "Versione %s" -#: ../../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/Siteinfo.php:31 +msgid "Project homepage" +msgstr "" -#: ../../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:32 +msgid "Developer homepage" +msgstr "" -#: ../../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/Ratings.php:70 +msgid "No ratings" +msgstr "Nessuna valutazione" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" -msgstr "Canale premium - con restrizioni" +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1082 +msgid "Ratings" +msgstr "Valutazioni" + +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " +msgstr "Valutazione:" -#: ../../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/Ratings.php:99 +msgid "Website: " +msgstr "Sito web:" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" -msgstr "Crea un nuovo canale" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:778 -#: ../../Zotlabs/Module/Chat.php:255 -msgid "Create New" -msgstr "Crea nuova" +#: ../../Zotlabs/Module/Webpages.php:54 +msgid "Import Webpage Elements" +msgstr "Importa gli elementi della pagina web" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:214 -#: ../../include/nav.php:211 -msgid "Channel Manager" -msgstr "Gestione canali" +#: ../../Zotlabs/Module/Webpages.php:55 +msgid "Import selected" +msgstr "Importa i selezionati" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" -msgstr "Canale attuale" +#: ../../Zotlabs/Module/Webpages.php:78 +msgid "Export Webpage Elements" +msgstr "Esporta gli elementi della pagina web" -#: ../../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/Webpages.php:79 +msgid "Export selected" +msgstr "Esporta i selezionati" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" -msgstr "Canale predefinito" +#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:244 +#: ../../include/conversation.php:1912 ../../include/nav.php:481 +msgid "Webpages" +msgstr "Pagine web" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" -msgstr "Rendi predefinito" +#: ../../Zotlabs/Module/Webpages.php:248 +msgid "Actions" +msgstr "Azioni" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" -msgstr "%d nuovi messaggi" +#: ../../Zotlabs/Module/Webpages.php:249 +msgid "Page Link" +msgstr "Link alla pagina" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" -msgstr "%d nuove richieste di entrare in contatto" +#: ../../Zotlabs/Module/Webpages.php:250 +msgid "Page Title" +msgstr "Titolo della pagina" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "Canale delegato" +#: ../../Zotlabs/Module/Webpages.php:280 +msgid "Invalid file type." +msgstr "Tipo di file non valido." -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." -msgstr "Gruppo di canali creato." +#: ../../Zotlabs/Module/Webpages.php:292 +msgid "Error opening zip file" +msgstr "Errore nell'apertura del file zip" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." -msgstr "Impossibile creare il gruppo di canali." +#: ../../Zotlabs/Module/Webpages.php:303 +msgid "Invalid folder path." +msgstr "La cartella indicata non è valida." -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3960 -msgid "Privacy group not found." -msgstr "Gruppo di canali non trovato." +#: ../../Zotlabs/Module/Webpages.php:330 +msgid "No webpage elements detected." +msgstr "Nella pagina web non sono presenti elementi." -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." -msgstr "Gruppo di canali aggiornato." +#: ../../Zotlabs/Module/Webpages.php:405 +msgid "Import complete." +msgstr "Importazione completata." -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." -msgstr "Crea un gruppo di canali." +#: ../../Zotlabs/Module/Changeaddr.php:35 +msgid "" +"Channel name changes are not allowed within 48 hours of changing the account" +" password." +msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " -msgstr "Nome del gruppo di canali:" +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:214 +#: ../../include/channel.php:599 +msgid "Reserved nickname. Please choose another." +msgstr "Nome utente riservato. Per favore scegline un altro." -#: ../../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/Changeaddr.php:51 ../../include/channel.php:219 +#: ../../include/channel.php:604 +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." -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." -msgstr "Gruppo di canali rimosso." +#: ../../Zotlabs/Module/Changeaddr.php:77 +msgid "Change channel nickname/address" +msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." -msgstr "Impossibile rimuovere il gruppo di canali." +#: ../../Zotlabs/Module/Changeaddr.php:78 +msgid "Any/all connections on other networks will be lost!" +msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" -msgstr "Editor dei gruppi di canali" +#: ../../Zotlabs/Module/Changeaddr.php:80 +msgid "New channel address" +msgstr "" -#: ../../Zotlabs/Module/Group.php:197 -msgid "Members" -msgstr "Membri" +#: ../../Zotlabs/Module/Changeaddr.php:81 +msgid "Rename Channel" +msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" -msgstr "Tutti i canali connessi" +#: ../../Zotlabs/Module/Editpost.php:38 ../../Zotlabs/Module/Editpost.php:43 +msgid "Item is not editable" +msgstr "L'elemento non è modificabile" -#: ../../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/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:178 +msgid "Edit post" +msgstr "Modifica post" -#: ../../Zotlabs/Module/Dreport.php:44 +#: ../../Zotlabs/Module/Dreport.php:45 msgid "Invalid message" msgstr "Messaggio non valido" -#: ../../Zotlabs/Module/Dreport.php:76 +#: ../../Zotlabs/Module/Dreport.php:78 msgid "no results" msgstr "nessun risultato" -#: ../../Zotlabs/Module/Dreport.php:91 +#: ../../Zotlabs/Module/Dreport.php:93 msgid "channel sync processed" msgstr "sincronizzazione del canale effettuata" -#: ../../Zotlabs/Module/Dreport.php:95 +#: ../../Zotlabs/Module/Dreport.php:97 msgid "queued" msgstr "in coda" -#: ../../Zotlabs/Module/Dreport.php:99 +#: ../../Zotlabs/Module/Dreport.php:101 msgid "posted" msgstr "inviato" -#: ../../Zotlabs/Module/Dreport.php:103 +#: ../../Zotlabs/Module/Dreport.php:105 msgid "accepted for delivery" msgstr "accettato per la spedizione" -#: ../../Zotlabs/Module/Dreport.php:107 +#: ../../Zotlabs/Module/Dreport.php:109 msgid "updated" msgstr "aggiornato" -#: ../../Zotlabs/Module/Dreport.php:110 +#: ../../Zotlabs/Module/Dreport.php:112 msgid "update ignored" msgstr "aggiornamento ignorato" -#: ../../Zotlabs/Module/Dreport.php:113 +#: ../../Zotlabs/Module/Dreport.php:115 msgid "permission denied" msgstr "permessi non sufficienti" -#: ../../Zotlabs/Module/Dreport.php:117 +#: ../../Zotlabs/Module/Dreport.php:119 msgid "recipient not found" msgstr "Destinatario non trovato" -#: ../../Zotlabs/Module/Dreport.php:120 +#: ../../Zotlabs/Module/Dreport.php:122 msgid "mail recalled" msgstr "messaggio richiamato dal mittente" -#: ../../Zotlabs/Module/Dreport.php:123 +#: ../../Zotlabs/Module/Dreport.php:125 msgid "duplicate mail received" msgstr "ricevuto messaggio duplicato" -#: ../../Zotlabs/Module/Dreport.php:126 +#: ../../Zotlabs/Module/Dreport.php:128 msgid "mail delivered" msgstr "messaggio recapitato" -#: ../../Zotlabs/Module/Dreport.php:146 +#: ../../Zotlabs/Module/Dreport.php:148 #, php-format msgid "Delivery report for %1$s" msgstr "Rapporto di consegna - %1$s" -#: ../../Zotlabs/Module/Dreport.php:149 +#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:39 +#: ../../Zotlabs/Widget/Wiki_pages.php:96 msgid "Options" msgstr "Opzioni" -#: ../../Zotlabs/Module/Dreport.php:150 +#: ../../Zotlabs/Module/Dreport.php:152 msgid "Redeliver" msgstr "Reinvia" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:192 -msgid "webpage" -msgstr "pagina web" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:198 -msgid "block" -msgstr "block" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:195 -msgid "layout" -msgstr "layout" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:201 -msgid "menu" -msgstr "menu" - -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" -msgstr "%s elemento installato" - -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" -msgstr "Elementi con installazione fallita: %s" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "Importazione completata" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "Importa i contenuti" - -#: ../../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/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "Hai superato il numero massimo di inviti." - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "%s: non è un indirizzo email valido." - -#: ../../Zotlabs/Module/Invite.php:63 -msgid "Please join us on $Projectname" -msgstr "Unisciti a noi su $Projectname" - -#: ../../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/Invite.php:79 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: la consegna del messaggio è fallita." - -#: ../../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/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/Invite.php:134 -msgid "Enter email addresses, one per line:" -msgstr "Inserisci gli indirizzi email, uno per riga:" - -#: ../../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/Sources.php:37 +msgid "Failed to create source. No channel selected." +msgstr "Impossibile creare la sorgente. Nessun canale selezionato." -#: ../../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/Sources.php:51 +msgid "Source created." +msgstr "Sorgente creata." -#: ../../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/Sources.php:64 +msgid "Source updated." +msgstr "Sorgente aggiornata." -#: ../../Zotlabs/Module/Invite.php:142 -msgid "or visit" -msgstr "oppure visita" +#: ../../Zotlabs/Module/Sources.php:90 +msgid "*" +msgstr "*" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "3. Click [Connect]" -msgstr "3. Clicca su [Aggiungi]" +#: ../../Zotlabs/Module/Sources.php:96 +#: ../../Zotlabs/Widget/Settings_menu.php:125 ../../include/features.php:274 +msgid "Channel Sources" +msgstr "Sorgenti del canale" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." -msgstr "Indirizzo non trovato." +#: ../../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/Locs.php:62 -msgid "Location lookup failed." -msgstr "La ricerca dell'indirizzo è fallita." +#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 +msgid "New Source" +msgstr "Nuova sorgente" -#: ../../Zotlabs/Module/Locs.php:66 +#: ../../Zotlabs/Module/Sources.php:109 ../../Zotlabs/Module/Sources.php:143 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" - -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." -msgstr "Nessun indirizzo trovato." - -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" -msgstr "Modifica gli indirizzi del canale" +"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/Locs.php:119 -msgid "Primary" -msgstr "Primario" +#: ../../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/Locs.php:122 -msgid "Sync Now" -msgstr "Sincronizza ora" +#: ../../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/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/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 +msgid "Channel Name" +msgstr "Nome del canale" -#: ../../Zotlabs/Module/Locs.php:124 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 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." +"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/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/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 +msgid "Source not found." +msgstr "Sorgente non trovata." -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" -msgstr "Sito web:" +#: ../../Zotlabs/Module/Sources.php:140 +msgid "Edit Source" +msgstr "Modifica la sorgente" -#: ../../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/Sources.php:141 +msgid "Delete Source" +msgstr "Elimina la sorgente" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" -msgstr "Valutazione (visibile a tutti)" +#: ../../Zotlabs/Module/Sources.php:169 +msgid "Source removed" +msgstr "Sorgente eliminata" -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" -msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" +#: ../../Zotlabs/Module/Sources.php:171 +msgid "Unable to remove source." +msgstr "Impossibile rimuovere la sorgente." -#: ../../Zotlabs/Module/Like.php:19 +#: ../../Zotlabs/Module/Like.php:54 msgid "Like/Dislike" msgstr "Mi piace/Non mi piace" -#: ../../Zotlabs/Module/Like.php:24 +#: ../../Zotlabs/Module/Like.php:59 msgid "This action is restricted to members." msgstr "Questa funzionalità è riservata agli iscritti." -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Like.php:60 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/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 +#: ../../Zotlabs/Module/Like.php:109 ../../Zotlabs/Module/Like.php:135 +#: ../../Zotlabs/Module/Like.php:173 msgid "Invalid request." msgstr "Richiesta non valida." -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 msgid "channel" msgstr "il canale" -#: ../../Zotlabs/Module/Like.php:146 +#: ../../Zotlabs/Module/Like.php:150 msgid "thing" msgstr "Oggetto" -#: ../../Zotlabs/Module/Like.php:192 +#: ../../Zotlabs/Module/Like.php:196 msgid "Channel unavailable." msgstr "Canale non trovato." -#: ../../Zotlabs/Module/Like.php:240 +#: ../../Zotlabs/Module/Like.php:244 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/text.php:1991 -#: ../../include/conversation.php:120 -msgid "photo" -msgstr "la foto" - -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../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/text.php:1994 -#: ../../include/conversation.php:123 ../../include/event.php:961 -msgid "event" -msgstr "l'evento" - -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:436 ../../addon/diaspora/Receiver.php:1547 +#: ../../addon/pubcrawl/as.php:1394 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "A %1$s piace %3$s di %2$s" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:438 ../../addon/pubcrawl/as.php:1396 +#: ../../include/conversation.php:163 #, 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/Like.php:423 +#: ../../Zotlabs/Module/Like.php:440 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "%3$s di %2$s: %1$s è d'accordo" -#: ../../Zotlabs/Module/Like.php:425 +#: ../../Zotlabs/Module/Like.php:442 #, 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/Like.php:427 +#: ../../Zotlabs/Module/Like.php:444 #, 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/Like.php:429 +#: ../../Zotlabs/Module/Like.php:446 ../../addon/diaspora/Receiver.php:2031 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "%3$s di %2$s: %1$s partecipa" -#: ../../Zotlabs/Module/Like.php:431 +#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2033 #, 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/Like.php:433 +#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2035 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "%3$s di %2$s: %1$s forse partecipa" -#: ../../Zotlabs/Module/Like.php:538 +#: ../../Zotlabs/Module/Like.php:562 msgid "Action completed." msgstr "Comando completato." -#: ../../Zotlabs/Module/Like.php:539 +#: ../../Zotlabs/Module/Like.php:563 msgid "Thank you." msgstr "Grazie." -#: ../../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/Profiles.php:44 -msgid "Profile deleted." -msgstr "Profilo eliminato." - -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:104 -msgid "Profile-" -msgstr "Profilo-" - -#: ../../Zotlabs/Module/Profiles.php:89 ../../Zotlabs/Module/Profiles.php:132 -msgid "New profile created." -msgstr "Il nuovo profilo è stato creato." - -#: ../../Zotlabs/Module/Profiles.php:110 -msgid "Profile unavailable to clone." -msgstr "Impossibile duplicare il profilo." - -#: ../../Zotlabs/Module/Profiles.php:151 -msgid "Profile unavailable to export." -msgstr "Il profilo non è disponibile per l'export." - -#: ../../Zotlabs/Module/Profiles.php:256 -msgid "Profile Name is required." -msgstr "Il nome del profilo è obbligatorio." - -#: ../../Zotlabs/Module/Profiles.php:427 -msgid "Marital Status" -msgstr "Stato sentimentale" - -#: ../../Zotlabs/Module/Profiles.php:431 -msgid "Romantic Partner" -msgstr "Partner affettivo" - -#: ../../Zotlabs/Module/Profiles.php:435 ../../Zotlabs/Module/Profiles.php:736 -msgid "Likes" -msgstr "Mi piace" - -#: ../../Zotlabs/Module/Profiles.php:439 ../../Zotlabs/Module/Profiles.php:737 -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../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/Directory.php:250 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valutazione" +msgstr[1] "%d valutazioni" -#: ../../Zotlabs/Module/Profiles.php:458 -msgid "Sexual Preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Directory.php:261 +msgid "Gender: " +msgstr "Sesso:" -#: ../../Zotlabs/Module/Profiles.php:462 -msgid "Homepage" -msgstr "Home page" +#: ../../Zotlabs/Module/Directory.php:263 +msgid "Status: " +msgstr "Stato:" -#: ../../Zotlabs/Module/Profiles.php:466 -msgid "Interests" -msgstr "Interessi" +#: ../../Zotlabs/Module/Directory.php:265 +msgid "Homepage: " +msgstr "Homepage:" -#: ../../Zotlabs/Module/Profiles.php:560 -msgid "Profile updated." -msgstr "Profilo aggiornato." +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1565 +msgid "Age:" +msgstr "Età:" -#: ../../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/Directory.php:319 ../../include/channel.php:1392 +#: ../../include/event.php:54 ../../include/event.php:86 +msgid "Location:" +msgstr "Luogo:" -#: ../../Zotlabs/Module/Profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modifica i dettagli del profilo" +#: ../../Zotlabs/Module/Directory.php:325 +msgid "Description:" +msgstr "Descrizione:" -#: ../../Zotlabs/Module/Profiles.php:688 -msgid "View this profile" -msgstr "Guarda questo profilo" +#: ../../Zotlabs/Module/Directory.php:330 ../../include/channel.php:1581 +msgid "Hometown:" +msgstr "Città dove vivo:" -#: ../../Zotlabs/Module/Profiles.php:689 ../../Zotlabs/Module/Profiles.php:771 -#: ../../include/channel.php:981 -msgid "Edit visibility" -msgstr "Cambia la visibilità" +#: ../../Zotlabs/Module/Directory.php:332 ../../include/channel.php:1589 +msgid "About:" +msgstr "Informazioni:" -#: ../../Zotlabs/Module/Profiles.php:690 -msgid "Profile Tools" -msgstr "Gestione del profilo" +#: ../../Zotlabs/Module/Directory.php:333 ../../Zotlabs/Module/Suggest.php:56 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:1052 ../../include/channel.php:1377 +#: ../../include/connections.php:111 +msgid "Connect" +msgstr "Aggiungi" -#: ../../Zotlabs/Module/Profiles.php:691 -msgid "Change cover photo" -msgstr "Cambia la copertina del canale" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Public Forum:" +msgstr "Forum pubblico:" -#: ../../Zotlabs/Module/Profiles.php:692 ../../include/channel.php:952 -msgid "Change profile photo" -msgstr "Cambia la foto del profilo" +#: ../../Zotlabs/Module/Directory.php:337 +msgid "Keywords: " +msgstr "Parole chiave:" -#: ../../Zotlabs/Module/Profiles.php:693 -msgid "Create a new profile using these settings" -msgstr "Crea un nuovo profilo usando queste impostazioni" +#: ../../Zotlabs/Module/Directory.php:340 +msgid "Don't suggest" +msgstr "Non fornire suggerimenti" -#: ../../Zotlabs/Module/Profiles.php:694 -msgid "Clone this profile" -msgstr "Clona questo profilo" +#: ../../Zotlabs/Module/Directory.php:342 +msgid "Common connections (estimated):" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:695 -msgid "Delete this profile" -msgstr "Elimina questo profilo" +#: ../../Zotlabs/Module/Directory.php:391 +msgid "Global Directory" +msgstr "Elenchi pubblici globali" -#: ../../Zotlabs/Module/Profiles.php:696 -msgid "Add profile things" -msgstr "Aggiungi oggetti al profilo" +#: ../../Zotlabs/Module/Directory.php:391 +msgid "Local Directory" +msgstr "Elenco canali su questo hub" -#: ../../Zotlabs/Module/Profiles.php:697 ../../include/conversation.php:1564 -#: ../../include/widgets.php:105 -msgid "Personal" -msgstr "Personali" +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Finding:" +msgstr "Ricerca:" -#: ../../Zotlabs/Module/Profiles.php:699 -msgid "Relation" -msgstr "Relazione" +#: ../../Zotlabs/Module/Directory.php:400 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "Canali suggeriti" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/datetime.php:55 -msgid "Miscellaneous" -msgstr "Altro" +#: ../../Zotlabs/Module/Directory.php:402 +msgid "next page" +msgstr "pagina successiva" -#: ../../Zotlabs/Module/Profiles.php:702 -msgid "Import profile from file" -msgstr "Importa il profilo da un file" +#: ../../Zotlabs/Module/Directory.php:402 +msgid "previous page" +msgstr "pagina precedente" -#: ../../Zotlabs/Module/Profiles.php:703 -msgid "Export profile to file" -msgstr "Esporta il profilo in un file" +#: ../../Zotlabs/Module/Directory.php:403 +msgid "Sort options" +msgstr "Opzioni di ordinamento" -#: ../../Zotlabs/Module/Profiles.php:704 -msgid "Your gender" -msgstr "Sesso" +#: ../../Zotlabs/Module/Directory.php:404 +msgid "Alphabetic" +msgstr "Alfabetico" -#: ../../Zotlabs/Module/Profiles.php:705 -msgid "Marital status" -msgstr "Stato civile" +#: ../../Zotlabs/Module/Directory.php:405 +msgid "Reverse Alphabetic" +msgstr "Alfabetico inverso" -#: ../../Zotlabs/Module/Profiles.php:706 -msgid "Sexual preference" -msgstr "Preferenze sessuali" +#: ../../Zotlabs/Module/Directory.php:406 +msgid "Newest to Oldest" +msgstr "Prima i più recenti" -#: ../../Zotlabs/Module/Profiles.php:709 -msgid "Profile name" -msgstr "Nome del profilo" +#: ../../Zotlabs/Module/Directory.php:407 +msgid "Oldest to Newest" +msgstr "Prima i più vecchi" -#: ../../Zotlabs/Module/Profiles.php:711 -msgid "This is your default profile." -msgstr "Questo è il tuo profilo predefinito." +#: ../../Zotlabs/Module/Directory.php:424 +msgid "No entries (some entries may be hidden)." +msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." -#: ../../Zotlabs/Module/Profiles.php:713 -msgid "Your full name" -msgstr "Il tuo nome completo" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Ricerca canale" -#: ../../Zotlabs/Module/Profiles.php:714 -msgid "Title/Description" -msgstr "Titolo/descrizione" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Cerca un canale (o un webbie) che inizia per:" -#: ../../Zotlabs/Module/Profiles.php:717 -msgid "Street address" -msgstr "Indirizzo (via/piazza)" +#: ../../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/Profiles.php:718 -msgid "Locality/City" -msgstr "Località" +#: ../../Zotlabs/Module/Suggest.php:58 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" +msgstr "Ignora/nascondi" -#: ../../Zotlabs/Module/Profiles.php:719 -msgid "Region/State" -msgstr "Regione/stato" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Impossibile raggiungere il tuo hub." -#: ../../Zotlabs/Module/Profiles.php:720 -msgid "Postal/Zip code" -msgstr "CAP" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Inviato!" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Country" -msgstr "Nazione" +#: ../../Zotlabs/Module/Mail.php:73 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Who (if applicable)" -msgstr "Con chi (se possibile)" +#: ../../Zotlabs/Module/Mail.php:80 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Per esempio: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Mail.php:87 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." -#: ../../Zotlabs/Module/Profiles.php:727 -msgid "Since (date)" -msgstr "dal (data)" +#: ../../Zotlabs/Module/Mail.php:105 +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/Profiles.php:730 -msgid "Tell us about yourself" -msgstr "Raccontaci di te..." +#: ../../Zotlabs/Module/Mail.php:160 +msgid "Messages" +msgstr "Messaggi" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Homepage URL" -msgstr "Indirizzo home page" +#: ../../Zotlabs/Module/Mail.php:173 +msgid "message" +msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 -msgid "Hometown" -msgstr "Città dove vivo" +#: ../../Zotlabs/Module/Mail.php:214 +msgid "Message recalled." +msgstr "Messaggio revocato." -#: ../../Zotlabs/Module/Profiles.php:733 -msgid "Political views" -msgstr "Orientamento politico" +#: ../../Zotlabs/Module/Mail.php:227 +msgid "Conversation removed." +msgstr "Conversazione rimossa." -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Religious views" -msgstr "Orientamento religioso" +#: ../../Zotlabs/Module/Mail.php:242 ../../Zotlabs/Module/Mail.php:363 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Keywords used in directory listings" -msgstr "Parole chiavi mostrate nell'elenco dei canali" +#: ../../Zotlabs/Module/Mail.php:270 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" -#: ../../Zotlabs/Module/Profiles.php:735 -msgid "Example: fishing photography software" -msgstr "Per esempio: pesca fotografia programmazione" +#: ../../Zotlabs/Module/Mail.php:278 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Musical interests" -msgstr "Interessi musicali" +#: ../../Zotlabs/Module/Mail.php:279 ../../Zotlabs/Module/Mail.php:421 +msgid "To:" +msgstr "A:" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Books, literature" -msgstr "Libri, letteratura" +#: ../../Zotlabs/Module/Mail.php:282 ../../Zotlabs/Module/Mail.php:423 +msgid "Subject:" +msgstr "Oggetto:" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Television" -msgstr "Televisione" +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:429 +#: ../../include/conversation.php:1382 +msgid "Attach file" +msgstr "Allega file" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film, danza, cultura, intrattenimento" +#: ../../Zotlabs/Module/Mail.php:289 +msgid "Send" +msgstr "Invia" -#: ../../Zotlabs/Module/Profiles.php:742 -msgid "Hobbies/Interests" -msgstr "Hobby/interessi" +#: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 +#: ../../include/conversation.php:1427 +msgid "Set expiration date" +msgstr "Data di scadenza" -#: ../../Zotlabs/Module/Profiles.php:743 -msgid "Love/Romance" -msgstr "Amore" +#: ../../Zotlabs/Module/Mail.php:393 +msgid "Delete message" +msgstr "Elimina il messaggio" -#: ../../Zotlabs/Module/Profiles.php:745 -msgid "School/Education" -msgstr "Scuola/educazione" +#: ../../Zotlabs/Module/Mail.php:394 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "Contact information and social networks" -msgstr "Contatti e social network" +#: ../../Zotlabs/Module/Mail.php:395 +msgid "Recall message" +msgstr "Revoca il messaggio" -#: ../../Zotlabs/Module/Profiles.php:747 -msgid "My other channels" -msgstr "I miei altri canali" +#: ../../Zotlabs/Module/Mail.php:397 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." -#: ../../Zotlabs/Module/Profiles.php:767 ../../include/channel.php:977 -msgid "Profile Image" -msgstr "Immagine del profilo" +#: ../../Zotlabs/Module/Mail.php:414 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" -#: ../../Zotlabs/Module/Profiles.php:777 ../../include/channel.php:959 -#: ../../include/nav.php:91 -msgid "Edit Profiles" -msgstr "Modifica i tuoi profili" +#: ../../Zotlabs/Module/Mail.php:416 +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:52 -msgid "Unable to create element." -msgstr "Impossibile creare l'elemento." +#: ../../Zotlabs/Module/Mail.php:420 +msgid "Send Reply" +msgstr "Invia la risposta" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "Non è possibile aggiornare l'elemento del menù." +#: ../../Zotlabs/Module/Mail.php:425 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "Impossibile aggiungere l'elemento al menù." +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" +msgstr "Hub pubblici" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "Permessi del menu" +#: ../../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/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/Pubsites.php:33 +msgid "Hub URL" +msgstr "URL del hub" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "Nome link" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" +msgstr "Tipo di accesso" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "Azione del link o del sottomenu" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" +msgstr "Politica di registrazione" -#: ../../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/Pubsites.php:33 +msgid "Stats" +msgstr "Statistiche" -#: ../../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/Pubsites.php:33 +msgid "Software" +msgstr "Software" -#: ../../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/Pubsites.php:49 +msgid "Rate" +msgstr "Valuta" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "Ordine dell'elenco" +#: ../../Zotlabs/Module/Impel.php:43 ../../include/bbcode.php:267 +msgid "webpage" +msgstr "pagina web" -#: ../../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/Impel.php:48 ../../include/bbcode.php:273 +msgid "block" +msgstr "block" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "Salva e termina" +#: ../../Zotlabs/Module/Impel.php:53 ../../include/bbcode.php:270 +msgid "layout" +msgstr "layout" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "Salva e continua" +#: ../../Zotlabs/Module/Impel.php:60 ../../include/bbcode.php:276 +msgid "menu" +msgstr "menu" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Impel.php:183 +#, php-format +msgid "%s element installed" +msgstr "%s elemento installato" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "Destinazione link" +#: ../../Zotlabs/Module/Impel.php:186 +#, php-format +msgid "%s element installation failed" +msgstr "Elementi con installazione fallita: %s" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "Modifica il menù" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Scegli una cartella di segnalibri" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "Modifica l'elemento" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "Elimina l'elemento" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL del segnalibro" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "Nuovo elemento" +#: ../../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/Mitem.php:186 -msgid "Edit this menu container" -msgstr "Modifica il contenitore del menù" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "Aggiungi un elemento al menù" +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "Elimina questo elemento del menù" +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:151 +msgid "Save to Folder" +msgstr "Salva nella cartella" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "Modifica questo elemento del menù" +#: ../../Zotlabs/Module/Probe.php:30 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "La chiamata all'URL restituisce questo errore: %1$s" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "L'elemento del menù non è stato trovato." +#: ../../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/Mitem.php:219 -msgid "Menu item deleted." -msgstr "L'elemento del menù è stato eliminato." +#: ../../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/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "L'elemento del menù non può essere eliminato." +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Le password non corrispondono." -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "Modifica l'elemento del menù" +#: ../../Zotlabs/Module/Register.php:132 +msgid "Registration successful. Continue to create your first channel..." +msgstr "" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "Testo del link" +#: ../../Zotlabs/Module/Register.php:135 +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:184 -msgid "$Projectname Server - Setup" -msgstr "Server $Projectname - Installazione" +#: ../../Zotlabs/Module/Register.php:142 +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:188 -msgid "Could not connect to database." -msgstr " Impossibile connettersi al database." +#: ../../Zotlabs/Module/Register.php:145 +msgid "Your registration can not be processed." +msgstr "La tua registrazione non puo' essere processata." -#: ../../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/Register.php:192 +msgid "Registration on this hub is disabled." +msgstr "Su questo hub la registrazione non è permessa." -#: ../../Zotlabs/Module/Setup.php:199 -msgid "Could not create table." -msgstr "Impossibile creare le tabelle." +#: ../../Zotlabs/Module/Register.php:201 +msgid "Registration on this hub is by approval only." +msgstr "La registrazione su questo hub è soggetta ad approvazione." -#: ../../Zotlabs/Module/Setup.php:204 -msgid "Your site database has been installed." -msgstr "Il database del sito è stato installato." +#: ../../Zotlabs/Module/Register.php:202 +msgid "Register at another affiliated hub." +msgstr "Registrati su un altro server hubzilla." -#: ../../Zotlabs/Module/Setup.php:208 +#: ../../Zotlabs/Module/Register.php:212 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/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'." +"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:268 -msgid "System check" -msgstr "Verifica del sistema" +#: ../../Zotlabs/Module/Register.php:238 +#, php-format +msgid "I accept the %s for this website" +msgstr "Accetto le %s di questo sito" -#: ../../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/Register.php:245 +#, php-format +msgid "I am over %s years of age and accept the %s for this website" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:273 -msgid "Check again" -msgstr "Verifica di nuovo" +#: ../../Zotlabs/Module/Register.php:250 +msgid "Your email address" +msgstr "Il tuo indirizzo email" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database connection" -msgstr "Connessione al database" +#: ../../Zotlabs/Module/Register.php:251 +msgid "Choose a password" +msgstr "Scegli una password" -#: ../../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/Register.php:252 +msgid "Please re-enter your password" +msgstr "Ripeti la password per verifica" -#: ../../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/Register.php:253 +msgid "Please enter your invitation code" +msgstr "Inserisci il codice dell'invito" -#: ../../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/Register.php:258 +msgid "no" +msgstr "no" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Database Server Name" -msgstr "Server del database" +#: ../../Zotlabs/Module/Register.php:258 +msgid "yes" +msgstr "sì" -#: ../../Zotlabs/Module/Setup.php:302 -msgid "Default is 127.0.0.1" -msgstr "Il valore predefinito è 127.0.0.1" +#: ../../Zotlabs/Module/Register.php:274 +msgid "Membership on this site is by invitation only." +msgstr "Per registrarsi su questo hub è necessario un invito." -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Database Port" -msgstr "Port del database" +#: ../../Zotlabs/Module/Register.php:286 ../../boot.php:1563 +#: ../../include/nav.php:164 +msgid "Register" +msgstr "Registrati" -#: ../../Zotlabs/Module/Setup.php:303 -msgid "Communication port number - use 0 for default" -msgstr "Scrivi 0 per usare il valore standard" +#: ../../Zotlabs/Module/Register.php:287 +msgid "" +"This site requires email verification. After completing this form, please " +"check your email for further instructions." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:304 -msgid "Database Login Name" -msgstr "Utente database" +#: ../../Zotlabs/Module/Cover_photo.php:136 +#: ../../Zotlabs/Module/Cover_photo.php:186 +msgid "Cover Photos" +msgstr "Copertine del canale" -#: ../../Zotlabs/Module/Setup.php:305 -msgid "Database Login Password" -msgstr "Password database" +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4508 +msgid "female" +msgstr "femmina" -#: ../../Zotlabs/Module/Setup.php:306 -msgid "Database Name" -msgstr "Nome database" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4509 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Setup.php:307 -msgid "Database Type" -msgstr "Tipo database" +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4510 +msgid "male" +msgstr "maschio" -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:355 -msgid "Site administrator email address" -msgstr "Indirizzo email dell'amministratore del hub" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4511 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../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/Cover_photo.php:242 ../../include/items.php:4513 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "Aggiornamento: %2$s di %1$s" -#: ../../Zotlabs/Module/Setup.php:310 ../../Zotlabs/Module/Setup.php:357 -msgid "Website URL" -msgstr "URL completo del sito" +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:2059 +msgid "cover photo" +msgstr "Copertina del canale" -#: ../../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/Cover_photo.php:360 +msgid "Change Cover Photo" +msgstr "" -#: ../../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/Help.php:23 +msgid "Documentation Search" +msgstr "Ricerca nella guida" -#: ../../Zotlabs/Module/Setup.php:344 -msgid "Site settings" -msgstr "Impostazioni del hub" +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1821 +#: ../../include/nav.php:391 +msgid "About" +msgstr "Informazioni" -#: ../../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/Help.php:82 +msgid "Administrators" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:401 -msgid "PHP version" -msgstr "Versione PHP" +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" +msgstr "" -#: ../../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/Help.php:84 +msgid "Tutorials" +msgstr "" -#: ../../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/Help.php:95 +msgid "$Projectname Documentation" +msgstr "Guida di $Projectname" -#: ../../Zotlabs/Module/Setup.php:421 -msgid "PHP executable path" -msgstr "Path del comando PHP" +#: ../../Zotlabs/Module/Help.php:96 +msgid "Contents" +msgstr "" -#: ../../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/Display.php:351 +msgid "Article" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "Command line PHP" -msgstr "PHP da riga di comando" +#: ../../Zotlabs/Module/Display.php:403 +msgid "Item has been removed." +msgstr "" -#: ../../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/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag rimosso" -#: ../../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/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Rimuovi il tag" -#: ../../Zotlabs/Module/Setup.php:439 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleziona un tag da rimuovere: " -#: ../../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/Network.php:100 +msgid "No such group" +msgstr "Impossibile trovare il gruppo di canali" -#: ../../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/Network.php:142 +msgid "No such channel" +msgstr "Canale sconosciuto" -#: ../../Zotlabs/Module/Setup.php:464 -msgid "PHP upload limits" -msgstr "Limiti PHP in upload" +#: ../../Zotlabs/Module/Network.php:147 +msgid "forum" +msgstr "forum" -#: ../../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/Network.php:159 +msgid "Search Results For:" +msgstr "Cerca risultati con:" -#: ../../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/Network.php:230 +msgid "Privacy group is empty" +msgstr "Il gruppo di canali è vuoto" -#: ../../Zotlabs/Module/Setup.php:491 -msgid "Generate encryption keys" -msgstr "Genera chiavi di cifratura" +#: ../../Zotlabs/Module/Network.php:240 +msgid "Privacy group: " +msgstr "Gruppo di canali:" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "libCurl PHP module" -msgstr "modulo PHP libCurl" +#: ../../Zotlabs/Module/Network.php:268 +msgid "Invalid connection." +msgstr "Contatto non valido." -#: ../../Zotlabs/Module/Setup.php:504 -msgid "GD graphics PHP module" -msgstr "modulo PHP GD graphics" +#: ../../Zotlabs/Module/Network.php:289 ../../addon/redred/redred.php:65 +msgid "Invalid channel." +msgstr "" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "OpenSSL PHP module" -msgstr "modulo PHP OpenSSL" +#: ../../Zotlabs/Module/Acl.php:361 +msgid "network" +msgstr "rete" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "mysqli or postgres PHP module" -msgstr "modulo PHP per mysqli oppure prostgres" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../Zotlabs/Lib/Enotify.php:66 ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "mb_string PHP module" -msgstr "modulo PHP mb_string" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "%s ti dà il benvenuto" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "xml PHP module" -msgstr "modulo xml PHP" +#: ../../Zotlabs/Module/Filestorage.php:79 +msgid "Permission Denied." +msgstr "Permesso negato." -#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 -msgid "Apache mod_rewrite module" -msgstr "modulo Apache mod_rewrite" +#: ../../Zotlabs/Module/Filestorage.php:95 +msgid "File not found." +msgstr "File non trovato." -#: ../../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/Filestorage.php:142 +msgid "Edit file permissions" +msgstr "Modifica i permessi del file" -#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 -msgid "proc_open" -msgstr "proc_open" +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Set/edit permissions" +msgstr "Modifica i permessi" -#: ../../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/Filestorage.php:155 +msgid "Include all files and sub folders" +msgstr "Includi tutti i file e le sottocartelle" -#: ../../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/Filestorage.php:156 +msgid "Return to file list" +msgstr "Torna all'elenco dei file" -#: ../../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/Filestorage.php:158 +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/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/Filestorage.php:159 +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/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/Filestorage.php:161 +msgid "Share this file" +msgstr "Condividi questo file" -#: ../../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/Filestorage.php:162 +msgid "Show URL to this file" +msgstr "Mostra l'URL del file" -#: ../../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/Filestorage.php:163 +#: ../../Zotlabs/Storage/Browser.php:397 +msgid "Show in your contacts shared folder" +msgstr "" -#: ../../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/Common.php:14 +msgid "No channel." +msgstr "Nessun 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/Common.php:45 +msgid "No connections in common." +msgstr "Nessun contatto in comune." -#: ../../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/Common.php:65 +msgid "View Common Connections" +msgstr "" -#: ../../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/Email_resend.php:30 +msgid "Email verification resent" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:570 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php è scrivibile" +#: ../../Zotlabs/Module/Email_resend.php:33 +msgid "Unable to resend email verification message." +msgstr "" -#: ../../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/Viewconnections.php:65 +msgid "No connections." +msgstr "Nessun contatto." -#: ../../Zotlabs/Module/Setup.php:585 +#: ../../Zotlabs/Module/Viewconnections.php:83 #, 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" +msgid "Visit %s's profile [%s]" +msgstr "Visita il profilo di %s [%s]" -#: ../../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/Viewconnections.php:113 +msgid "View Connections" +msgstr "Elenco contatti" -#: ../../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/Admin.php:97 +msgid "Blocked accounts" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:590 -#, php-format -msgid "%s is writable" -msgstr "%s è scrivibile" +#: ../../Zotlabs/Module/Admin.php:98 +msgid "Expired accounts" +msgstr "" -#: ../../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.php:99 +msgid "Expiring accounts" +msgstr "" -#: ../../Zotlabs/Module/Setup.php:610 -msgid "store is writable" -msgstr "l'archivio è scrivibile" +#: ../../Zotlabs/Module/Admin.php:112 +msgid "Clones" +msgstr "" -#: ../../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.php:118 +msgid "Message queues" +msgstr "Coda messaggi in uscita" -#: ../../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.php:132 +msgid "Your software should be updated" +msgstr "Il tuo software necessita di un aggiornamento" -#: ../../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.php:137 +msgid "Summary" +msgstr "Riepilogo" -#: ../../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.php:140 +msgid "Registered accounts" +msgstr "Account creati" -#: ../../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.php:141 +msgid "Pending registrations" +msgstr "Registrazioni da approvare" -#: ../../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.php:142 +msgid "Registered channels" +msgstr "Canali creati" -#: ../../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.php:143 +msgid "Active plugins" +msgstr "Plugin attivi" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" -msgstr "Validazione del certificato SSL" +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Version" +msgstr "Versione" -#: ../../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.php:145 +msgid "Repository version (master)" +msgstr "Versione del repository (master)" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" -msgstr "Url rewrite funziona correttamente" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Repository version (dev)" +msgstr "Versione del repository (dev)" -#: ../../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/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Non esistono restrizioni su questa classe di account." -#: ../../Zotlabs/Module/Setup.php:695 -msgid "Errors encountered creating database tables." -msgstr "La creazione delle tabelle del database ha generato errori." +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" +msgstr "Sito web:" + +#: ../../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:732 -msgid "

What next

" -msgstr "

I prossimi passi

" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" +msgstr "Valutazione (visibile a tutti)" -#: ../../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/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" +msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" + +#: ../../Zotlabs/Module/Card_edit.php:128 +msgid "Edit Card" +msgstr "" #: ../../Zotlabs/Module/Lostpass.php:19 msgid "No valid account found." @@ -4156,3887 +7524,4052 @@ msgstr "Nessun account valido trovato." 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 +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 #, php-format msgid "Site Member (%s)" msgstr "Utente del sito (%s)" -#: ../../Zotlabs/Module/Lostpass.php:44 +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 #, php-format msgid "Password reset requested at %s" msgstr "È stato richiesto di reimpostare password su %s" -#: ../../Zotlabs/Module/Lostpass.php:67 +#: ../../Zotlabs/Module/Lostpass.php:68 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/Lostpass.php:90 ../../boot.php:1747 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1591 msgid "Password Reset" msgstr "Reimposta la password" -#: ../../Zotlabs/Module/Lostpass.php:91 +#: ../../Zotlabs/Module/Lostpass.php:92 msgid "Your password has been reset as requested." msgstr "La password è stata reimpostata come richiesto." -#: ../../Zotlabs/Module/Lostpass.php:92 +#: ../../Zotlabs/Module/Lostpass.php:93 msgid "Your new password is" msgstr "La tua nuova password è" -#: ../../Zotlabs/Module/Lostpass.php:93 +#: ../../Zotlabs/Module/Lostpass.php:94 msgid "Save or copy your new password - and then" msgstr "Salva o copia la tua nuova password, quindi" -#: ../../Zotlabs/Module/Lostpass.php:94 +#: ../../Zotlabs/Module/Lostpass.php:95 msgid "click here to login" msgstr "clicca qui per accedere" -#: ../../Zotlabs/Module/Lostpass.php:95 +#: ../../Zotlabs/Module/Lostpass.php:96 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 +#: ../../Zotlabs/Module/Lostpass.php:117 #, php-format msgid "Your password has changed at %s" msgstr "La tua password su %s è cambiata" -#: ../../Zotlabs/Module/Lostpass.php:127 +#: ../../Zotlabs/Module/Lostpass.php:130 msgid "Forgot your Password?" msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Lostpass.php:128 +#: ../../Zotlabs/Module/Lostpass.php:131 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/Lostpass.php:129 +#: ../../Zotlabs/Module/Lostpass.php:132 msgid "Email Address" msgstr "Indirizzo email" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Reset" -msgstr "Reimposta" +#: ../../Zotlabs/Module/Notifications.php:62 +#: ../../Zotlabs/Lib/ThreadItem.php:408 +msgid "Mark all seen" +msgstr "Marca tutto come letto" -#: ../../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/Lib/Techlevels.php:10 +msgid "0. Beginner/Basic" +msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:227 -msgid "Mood" -msgstr "Umore" +#: ../../Zotlabs/Lib/Techlevels.php:11 +msgid "1. Novice - not skilled but willing to learn" +msgstr "" -#: ../../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/Lib/Techlevels.php:12 +msgid "2. Intermediate - somewhat comfortable" +msgstr "" -#: ../../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/Lib/Techlevels.php:13 +msgid "3. Advanced - very comfortable" +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Lib/Techlevels.php:14 +msgid "4. Expert - I can write computer code" +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "WARNING: " -msgstr "ATTENZIONE:" +#: ../../Zotlabs/Lib/Techlevels.php:15 +msgid "5. Wizard - I probably know more than you do" +msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " -msgstr "Questo canale sarà completamente eliminato dalla rete." +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Site Admin" +msgstr "Amministrazione sito" + +#: ../../Zotlabs/Lib/Apps.php:232 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" +msgstr "Segnala il bug" + +#: ../../Zotlabs/Lib/Apps.php:233 +msgid "View Bookmarks" +msgstr "Vedi i segnalibri" + +#: ../../Zotlabs/Lib/Apps.php:234 +msgid "My Chatrooms" +msgstr "Le mie aree chat" + +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Firefox Share" +msgstr "Firefox Share" + +#: ../../Zotlabs/Lib/Apps.php:237 +msgid "Remote Diagnostics" +msgstr "Diagnostica remota" + +#: ../../Zotlabs/Lib/Apps.php:238 ../../include/features.php:390 +msgid "Suggest Channels" +msgstr "Suggerisci canali" + +#: ../../Zotlabs/Lib/Apps.php:239 ../../boot.php:1582 +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Login" +msgstr "Accedi" + +#: ../../Zotlabs/Lib/Apps.php:241 +msgid "Activity" +msgstr "Attività" + +#: ../../Zotlabs/Lib/Apps.php:245 ../../include/conversation.php:1928 +#: ../../include/features.php:87 ../../include/nav.php:497 +msgid "Wiki" +msgstr "Wiki" + +#: ../../Zotlabs/Lib/Apps.php:246 +msgid "Channel Home" +msgstr "Bacheca del canale" + +#: ../../Zotlabs/Lib/Apps.php:249 ../../include/conversation.php:1850 +#: ../../include/conversation.php:1853 +msgid "Events" +msgstr "Eventi" -#: ../../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/Lib/Apps.php:250 +msgid "Directory" +msgstr "Elenchi pubblici dei canali" -#: ../../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/Lib/Apps.php:252 +msgid "Mail" +msgstr "Messaggi" -#: ../../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/Lib/Apps.php:255 +msgid "Chat" +msgstr "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/Lib/Apps.php:257 +msgid "Probe" +msgstr "Diagnostica" -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:544 -msgid "Remove Channel" -msgstr "Elimina questo canale" +#: ../../Zotlabs/Lib/Apps.php:258 +msgid "Suggest" +msgstr "Suggerisci" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:98 -msgid "No more system notifications." -msgstr "Non ci sono nuove notifiche di sistema." +#: ../../Zotlabs/Lib/Apps.php:259 +msgid "Random Channel" +msgstr "Canale casuale" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:102 -msgid "System Notifications" -msgstr "Notifiche di sistema" +#: ../../Zotlabs/Lib/Apps.php:260 +msgid "Invite" +msgstr "Invita" -#: ../../Zotlabs/Module/Match.php:26 -msgid "Profile Match" -msgstr "Profili corrispondenti" +#: ../../Zotlabs/Lib/Apps.php:261 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" +msgstr "Funzionalità" -#: ../../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/Lib/Apps.php:262 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" +msgstr "Lingua" -#: ../../Zotlabs/Module/Match.php:67 -msgid "is interested in:" -msgstr "interessi personali:" +#: ../../Zotlabs/Lib/Apps.php:263 +msgid "Post" +msgstr "Post" -#: ../../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/Lib/Apps.php:264 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" +msgstr "Foto del profilo" -#: ../../Zotlabs/Module/Match.php:74 -msgid "No matches" -msgstr "Nessun risultato" +#: ../../Zotlabs/Lib/Apps.php:407 +msgid "Purchase" +msgstr "Acquista" -#: ../../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/Lib/Apps.php:411 +msgid "Undelete" +msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" -msgstr "Questo directory server necessita di un token di autenticazione" +#: ../../Zotlabs/Lib/Apps.php:419 +msgid "Add to app-tray" +msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "Hub non trovato." +#: ../../Zotlabs/Lib/Apps.php:420 +msgid "Remove from app-tray" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "Impossibile ottenere informazioni sul proprietario della pagina." +#: ../../Zotlabs/Lib/Apps.php:421 +msgid "Pin to navbar" +msgstr "" -#: ../../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/Lib/Apps.php:422 +msgid "Unpin from navbar" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 -msgid "Album not found." -msgstr "Album non trovato." +#: ../../Zotlabs/Lib/Permcat.php:82 +msgctxt "permcat" +msgid "default" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:112 -msgid "Delete Album" -msgstr "Elimina album" +#: ../../Zotlabs/Lib/Permcat.php:133 +msgctxt "permcat" +msgid "follower" +msgstr "" -#: ../../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/Lib/Permcat.php:137 +msgctxt "permcat" +msgid "contributor" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1059 -msgid "Delete Photo" -msgstr "Elimina foto" +#: ../../Zotlabs/Lib/Permcat.php:141 +msgctxt "permcat" +msgid "publisher" +msgstr "" -#: ../../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/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:93 +msgid "(No Title)" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:520 -msgid "No photos selected" -msgstr "Nessuna foto selezionata" +#: ../../Zotlabs/Lib/NativeWikiPage.php:107 +msgid "Wiki page create failed." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:569 -msgid "Access to this item is restricted." -msgstr "Questo elemento non è visibile a tutti." +#: ../../Zotlabs/Lib/NativeWikiPage.php:120 +msgid "Wiki not found." +msgstr "" -#: ../../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/Lib/NativeWikiPage.php:131 +msgid "Destination name already exists" +msgstr "" -#: ../../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/Lib/NativeWikiPage.php:163 +#: ../../Zotlabs/Lib/NativeWikiPage.php:359 +msgid "Page not found" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:647 -msgid "Upload Photos" -msgstr "Carica foto" +#: ../../Zotlabs/Lib/NativeWikiPage.php:194 +msgid "Error reading page content" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:651 -msgid "Enter an album name" -msgstr "Scegli il nome dell'album" +#: ../../Zotlabs/Lib/NativeWikiPage.php:350 +#: ../../Zotlabs/Lib/NativeWikiPage.php:400 +#: ../../Zotlabs/Lib/NativeWikiPage.php:467 +#: ../../Zotlabs/Lib/NativeWikiPage.php:508 +msgid "Error reading wiki" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:652 -msgid "or select an existing album (doubleclick)" -msgstr "o seleziona un album esistente (doppio click)" +#: ../../Zotlabs/Lib/NativeWikiPage.php:388 +msgid "Page update failed." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:653 -msgid "Create a status post for this upload" -msgstr "Pubblica sulla bacheca" +#: ../../Zotlabs/Lib/NativeWikiPage.php:422 +msgid "Nothing deleted" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:654 -msgid "Caption (optional):" -msgstr "Titolo (facoltativo):" +#: ../../Zotlabs/Lib/NativeWikiPage.php:488 +msgid "Compare: object not found." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:655 -msgid "Description (optional):" -msgstr "Descrizione (facoltativa):" +#: ../../Zotlabs/Lib/NativeWikiPage.php:494 +msgid "Page updated" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:686 -msgid "Album name could not be decoded" -msgstr "Non è stato possibile leggere il nome dell'album" +#: ../../Zotlabs/Lib/NativeWikiPage.php:497 +msgid "Untitled" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:734 -msgid "Contact Photos" -msgstr "Foto dei contatti" +#: ../../Zotlabs/Lib/NativeWikiPage.php:503 +msgid "Wiki resource_id required for git commit" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:757 -msgid "Show Newest First" -msgstr "Prima i più recenti" +#: ../../Zotlabs/Lib/NativeWikiPage.php:559 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:759 -msgid "Show Oldest First" -msgstr "Prima i più vecchi" +#: ../../Zotlabs/Lib/NativeWikiPage.php:597 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:706 +#: ../../include/bbcode.php:865 +msgid "Different viewers will see this text differently" +msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../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/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:33 +msgid "Visible to your default audience" +msgstr "Visibile secondo le impostazioni predefinite" -#: ../../Zotlabs/Module/Photos.php:814 -#: ../../Zotlabs/Module/Embedphotos.php:157 ../../include/widgets.php:1694 -msgid "Edit Album" -msgstr "Modifica album" +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:106 +msgid "Only me" +msgstr "Solo io" -#: ../../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/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "Pubblico" -#: ../../Zotlabs/Module/Photos.php:863 -msgid "Photo not available" -msgstr "Foto non disponibile" +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "Tutti sulla rete $Projectname" -#: ../../Zotlabs/Module/Photos.php:921 -msgid "Use as profile photo" -msgstr "Usa come foto del profilo" +#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#, php-format +msgid "Any account on %s" +msgstr "Tutti gli account su %s" -#: ../../Zotlabs/Module/Photos.php:922 -msgid "Use as cover photo" -msgstr "Usa come copertina del canale" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" +msgstr "Chiunque tra i miei contatti" -#: ../../Zotlabs/Module/Photos.php:929 -msgid "Private Photo" -msgstr "Foto privata" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" +msgstr "Solo chi riceve il mio permesso" -#: ../../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/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" +msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" -#: ../../Zotlabs/Module/Photos.php:944 -msgid "View Full Size" -msgstr "Vedi nelle dimensioni originali" +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" +msgstr "Tutti i contatti inclusi quelli non ancora approvati" -#: ../../Zotlabs/Module/Photos.php:1033 -msgid "Edit photo" -msgstr "Modifica la foto" +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +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" -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Rotate CW (right)" -msgstr "Ruota (senso orario)" +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +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" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "Rotate CCW (left)" -msgstr "Ruota (senso antiorario)" +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +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/Photos.php:1039 -msgid "Move photo to album" -msgstr "Sposta la foto in un album" +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +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/Photos.php:1040 -msgid "Enter a new album name" -msgstr "Inserisci il nome del nuovo album" +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +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/Photos.php:1041 -msgid "or select an existing one (doubleclick)" -msgstr "o seleziona uno esistente (doppio click)" +#: ../../Zotlabs/Lib/Chatroom.php:23 +msgid "Missing room name" +msgstr "Chat senza nome" -#: ../../Zotlabs/Module/Photos.php:1044 -msgid "Caption" -msgstr "Didascalia" +#: ../../Zotlabs/Lib/Chatroom.php:32 +msgid "Duplicate room name" +msgstr "Il nome della chat è duplicato" -#: ../../Zotlabs/Module/Photos.php:1046 -msgid "Add a Tag" -msgstr "Aggiungi tag" +#: ../../Zotlabs/Lib/Chatroom.php:82 ../../Zotlabs/Lib/Chatroom.php:90 +msgid "Invalid room specifier." +msgstr "Il nome della chat non è valido." -#: ../../Zotlabs/Module/Photos.php:1054 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Esempio: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Lib/Chatroom.php:122 +msgid "Room not found." +msgstr "Chat non trovata." -#: ../../Zotlabs/Module/Photos.php:1057 -msgid "Flag as adult in album view" -msgstr "Marca come 'per adulti'" +#: ../../Zotlabs/Lib/Chatroom.php:143 +msgid "Room is full" +msgstr "La chat è al completo" -#: ../../Zotlabs/Module/Photos.php:1076 ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "I like this (toggle)" -msgstr "Attiva/disattiva Mi piace" +#: ../../Zotlabs/Lib/Enotify.php:60 +msgid "$Projectname Notification" +msgstr "Notifica $Projectname" -#: ../../Zotlabs/Module/Photos.php:1077 ../../Zotlabs/Lib/ThreadItem.php:269 -msgid "I don't like this (toggle)" -msgstr "Attiva/disattiva Non mi piace" +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 +#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 +msgid "$projectname" +msgstr "$projectname" -#: ../../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/Lib/Enotify.php:63 +msgid "Thank You," +msgstr "Grazie," -#: ../../Zotlabs/Module/Photos.php:1079 ../../Zotlabs/Lib/ThreadItem.php:405 -#: ../../include/conversation.php:741 -msgid "Please wait" -msgstr "Attendere" +#: ../../Zotlabs/Lib/Enotify.php:65 ../../addon/hubwall/hubwall.php:33 +#, php-format +msgid "%s Administrator" +msgstr "L'amministratore di %s" -#: ../../Zotlabs/Module/Photos.php:1095 ../../Zotlabs/Module/Photos.php:1213 -#: ../../Zotlabs/Lib/ThreadItem.php:722 -msgid "This is you" -msgstr "Questo sei tu" +#: ../../Zotlabs/Lib/Enotify.php:66 +#, php-format +msgid "This email was sent by %1$s at %2$s." +msgstr "" -#: ../../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/Lib/Enotify.php:67 +#, php-format +msgid "" +"To stop receiving these messages, please adjust your Notification Settings " +"at %s" +msgstr "" -#: ../../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/Lib/Enotify.php:68 +#, php-format +msgid "To stop receiving these messages, please adjust your %s." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Lib/Enotify.php:120 +#, php-format +msgid "%s " +msgstr "%s " + +#: ../../Zotlabs/Lib/Enotify.php:124 +#, php-format +msgid "[$Projectname:Notify] New mail received at %s" +msgstr "[$Projectname:Notifica] Nuovo messaggio su %s" -#: ../../Zotlabs/Module/Photos.php:1113 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Lib/Enotify.php:126 +#, 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/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" +#: ../../Zotlabs/Lib/Enotify.php:127 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s ti ha mandato %2$s." -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" +#: ../../Zotlabs/Lib/Enotify.php:127 +msgid "a private message" +msgstr "un messaggio privato" -#: ../../Zotlabs/Module/Photos.php:1114 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" +#: ../../Zotlabs/Lib/Enotify.php:128 +#, 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/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" +#: ../../Zotlabs/Lib/Enotify.php:141 +msgid "commented on" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" +#: ../../Zotlabs/Lib/Enotify.php:152 +msgid "liked" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1115 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" +#: ../../Zotlabs/Lib/Enotify.php:155 +msgid "disliked" +msgstr "" -#: ../../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/Lib/Enotify.php:198 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]a %5$s[/zrl]" +msgstr "" -#: ../../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/Lib/Enotify.php:207 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]%5$s's %6$s[/zrl]" +msgstr "" -#: ../../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/Lib/Enotify.php:217 +#, php-format +msgid "%1$s, %2$s %3$s [zrl=%4$s]your %5$s[/zrl]" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1241 -msgid "Photo Tools" -msgstr "Gestione foto" +#: ../../Zotlabs/Lib/Enotify.php:230 +#, php-format +msgid "[$Projectname:Notify] Moderated Comment to conversation #%1$d by %2$s" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "In This Photo:" -msgstr "In questa foto:" +#: ../../Zotlabs/Lib/Enotify.php:232 +#, 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/Module/Photos.php:1255 -msgid "Map" -msgstr "Mappa" +#: ../../Zotlabs/Lib/Enotify.php:233 +#, 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/Module/Photos.php:1263 ../../Zotlabs/Lib/ThreadItem.php:394 -msgctxt "noun" -msgid "Likes" -msgstr "Mi piace" +#: ../../Zotlabs/Lib/Enotify.php:236 ../../Zotlabs/Lib/Enotify.php:318 +#: ../../Zotlabs/Lib/Enotify.php:335 ../../Zotlabs/Lib/Enotify.php:361 +#: ../../Zotlabs/Lib/Enotify.php:379 ../../Zotlabs/Lib/Enotify.php:393 +#, 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/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:395 -msgctxt "noun" -msgid "Dislikes" -msgstr "Non mi piace" +#: ../../Zotlabs/Lib/Enotify.php:240 ../../Zotlabs/Lib/Enotify.php:241 +#, php-format +msgid "Please visit %s to approve or reject this comment." +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1269 ../../Zotlabs/Lib/ThreadItem.php:400 -#: ../../include/acl_selectors.php:181 -msgid "Close" -msgstr "Chiudi" +#: ../../Zotlabs/Lib/Enotify.php:299 +#, php-format +msgid "%1$s, %2$s liked [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ma messo un mi piace al [zrl=%3$s]tuo %4$s[/zrl]" -#: ../../Zotlabs/Module/Photos.php:1343 -msgid "View Album" -msgstr "Guarda l'album" +#: ../../Zotlabs/Lib/Enotify.php:314 +#, php-format +msgid "[$Projectname:Notify] Like received to conversation #%1$d by %2$s" +msgstr "[$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1$d di %2$s" -#: ../../Zotlabs/Module/Photos.php:1354 ../../Zotlabs/Module/Photos.php:1367 -#: ../../Zotlabs/Module/Photos.php:1368 -msgid "Recent Photos" -msgstr "Foto recenti" +#: ../../Zotlabs/Lib/Enotify.php:315 +#, php-format +msgid "%1$s, %2$s liked an item/conversation you created." +msgstr "%1$s, %2$s ha messo un mi piace all'elemento/conversazione che hai creato" -#: ../../Zotlabs/Module/New_channel.php:134 -#: ../../Zotlabs/Module/Register.php:237 -msgid "Name or caption" -msgstr "Nome o titolo" +#: ../../Zotlabs/Lib/Enotify.php:326 +#, php-format +msgid "[$Projectname:Notify] %s posted to your profile wall" +msgstr "[$Projectname:Notifica] %s ha scritto sulla tua bacheca" -#: ../../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/Lib/Enotify.php:328 +#, 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/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:239 -msgid "Choose a short nickname" -msgstr "Scegli un nome breve" +#: ../../Zotlabs/Lib/Enotify.php:330 +#, 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/New_channel.php:136 -#: ../../Zotlabs/Module/Register.php:239 +#: ../../Zotlabs/Lib/Enotify.php:354 #, 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" +msgid "[$Projectname:Notify] %s tagged you" +msgstr "[$Projectname:Notifica] %s ti ha taggato" -#: ../../Zotlabs/Module/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Channel role and privacy" -msgstr "Tipo di canale e privacy" +#: ../../Zotlabs/Lib/Enotify.php:355 +#, 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/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/Lib/Enotify.php:356 +#, 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/New_channel.php:137 -#: ../../Zotlabs/Module/Register.php:240 -msgid "Read more about roles" -msgstr "Maggiori informazioni sui ruoli" +#: ../../Zotlabs/Lib/Enotify.php:368 +#, php-format +msgid "[$Projectname:Notify] %1$s poked you" +msgstr "[$Projectname:Notifica] %1$s ti ha mandato un poke" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" -msgstr "Crea un canale" +#: ../../Zotlabs/Lib/Enotify.php:369 +#, 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/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/Lib/Enotify.php:370 +#, 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/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/Lib/Enotify.php:386 +#, php-format +msgid "[$Projectname:Notify] %s tagged your post" +msgstr "[$Projectname:Notifica] %s ha taggato il tuo post" -#: ../../Zotlabs/Module/Ping.php:265 -msgid "sent you a private message" -msgstr "ti ha inviato un messaggio privato" +#: ../../Zotlabs/Lib/Enotify.php:387 +#, 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/Ping.php:313 -msgid "added your channel" -msgstr "ha aggiunto il tuo canale" +#: ../../Zotlabs/Lib/Enotify.php:388 +#, 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/Ping.php:323 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Lib/Enotify.php:400 +msgid "[$Projectname:Notify] Introduction received" +msgstr "[$Projectname:Notifica] Hai una richiesta di amicizia" -#: ../../Zotlabs/Module/Ping.php:346 -msgid "[today]" -msgstr "[oggi]" +#: ../../Zotlabs/Lib/Enotify.php:401 +#, 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/Ping.php:355 -msgid "posted an event" -msgstr "ha creato un evento" +#: ../../Zotlabs/Lib/Enotify.php:402 +#, 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/Notifications.php:30 -msgid "Invalid request identifier." -msgstr "L'identificativo della richiesta non è valido." +#: ../../Zotlabs/Lib/Enotify.php:406 ../../Zotlabs/Lib/Enotify.php:425 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puoi visitare il suo profilo su %s" -#: ../../Zotlabs/Module/Notifications.php:39 -msgid "Discard" -msgstr "Rifiuta" +#: ../../Zotlabs/Lib/Enotify.php:408 +#, 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/Notifications.php:103 ../../include/nav.php:196 -msgid "Mark all system notifications seen" -msgstr "Segna come lette le notifiche di sistema" +#: ../../Zotlabs/Lib/Enotify.php:415 +msgid "[$Projectname:Notify] Friend suggestion received" +msgstr "[$Projectname:Notifica] Ti è stato suggerito un amico" -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:228 -#: ../../include/conversation.php:959 -msgid "Poke" -msgstr "Poke" +#: ../../Zotlabs/Lib/Enotify.php:416 +#, 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/Poke.php:169 -msgid "Poke somebody" -msgstr "Manda un poke" +#: ../../Zotlabs/Lib/Enotify.php:417 +#, 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/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "Poke/Prod" +#: ../../Zotlabs/Lib/Enotify.php:423 +msgid "Name:" +msgstr "Nome:" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "Manda un poke o altro a qualcuno" +#: ../../Zotlabs/Lib/Enotify.php:424 +msgid "Photo:" +msgstr "Foto:" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Lib/Enotify.php:427 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Visita %s per approvare o rifiutare il suggerimento." -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "Scegli cosa vuoi inviare al destinatario" +#: ../../Zotlabs/Lib/Enotify.php:647 +msgid "[$Projectname:Notify]" +msgstr "[$Projectname:Notifica]" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "Rendi privato questo post" +#: ../../Zotlabs/Lib/Enotify.php:815 +msgid "created a new post" +msgstr "Ha creato un nuovo post" -#: ../../Zotlabs/Module/Apps.php:46 ../../include/nav.php:168 -#: ../../include/widgets.php:102 -msgid "Apps" -msgstr "App" +#: ../../Zotlabs/Lib/Enotify.php:816 +#, php-format +msgid "commented on %s's post" +msgstr "ha commentato il post di %s" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "Impossibile raggiungere il tuo hub." +#: ../../Zotlabs/Lib/Enotify.php:823 +#, php-format +msgid "edited a post dated %s" +msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." -msgstr "Inviato!" +#: ../../Zotlabs/Lib/Enotify.php:827 +#, php-format +msgid "edited a comment dated %s" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." -msgstr "Indentificativo del profilo non valido." +#: ../../Zotlabs/Lib/NativeWiki.php:151 +msgid "Wiki updated successfully" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Profile Visibility Editor" -msgstr "Modifica la visibilità del profilo" +#: ../../Zotlabs/Lib/NativeWiki.php:198 +msgid "Wiki files deleted successfully" +msgstr "" -#: ../../Zotlabs/Module/Profperm.php:117 ../../include/channel.php:1274 -msgid "Profile" -msgstr "Profilo" +#: ../../Zotlabs/Lib/DB_Upgrade.php:83 +#, php-format +msgid "Update Error at %s" +msgstr "Errore di aggiornamento su %s" -#: ../../Zotlabs/Module/Profperm.php:119 -msgid "Click on a contact to add or remove." -msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." +#: ../../Zotlabs/Lib/DB_Upgrade.php:89 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "%s: aggiornamento fallito. Controlla i log di errore." -#: ../../Zotlabs/Module/Profperm.php:128 -msgid "Visible To" -msgstr "Visibile a" +#: ../../Zotlabs/Lib/ThreadItem.php:97 ../../include/conversation.php:697 +msgid "Private Message" +msgstr "Messaggio privato" -#: ../../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/Lib/ThreadItem.php:147 ../../include/conversation.php:689 +msgid "Select" +msgstr "Scegli" + +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will attend" +msgstr "Parteciperò" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" -msgstr "Editor di configurazione" +#: ../../Zotlabs/Lib/ThreadItem.php:172 +msgid "I will not attend" +msgstr "Non parteciperò" -#: ../../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/Lib/ThreadItem.php:172 +msgid "I might attend" +msgstr "Forse parteciperò" -#: ../../Zotlabs/Module/Siteinfo.php:19 -#, php-format -msgid "Version %s" -msgstr "Versione %s" +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I agree" +msgstr "Sono d'accordo" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Installed plugins/addons/apps:" -msgstr "App e componenti installati:" +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I disagree" +msgstr "Non sono d'accordo" -#: ../../Zotlabs/Module/Siteinfo.php:36 -msgid "No installed plugins/addons/apps" -msgstr "Nessuna app o componente installato" +#: ../../Zotlabs/Lib/ThreadItem.php:182 +msgid "I abstain" +msgstr "Mi astengo" -#: ../../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/Lib/ThreadItem.php:238 +msgid "Add Star" +msgstr "Aggiungi ai preferiti" -#: ../../Zotlabs/Module/Siteinfo.php:51 -msgid "Tag: " -msgstr "Tag: " +#: ../../Zotlabs/Lib/ThreadItem.php:239 +msgid "Remove Star" +msgstr "Rimuovi dai preferiti" -#: ../../Zotlabs/Module/Siteinfo.php:53 -msgid "Last background fetch: " -msgstr "Ultima acquisizione:" +#: ../../Zotlabs/Lib/ThreadItem.php:240 +msgid "Toggle Star Status" +msgstr "Attiva/disattiva preferito" -#: ../../Zotlabs/Module/Siteinfo.php:55 -msgid "Current load average: " -msgstr "Carico medio attuale:" +#: ../../Zotlabs/Lib/ThreadItem.php:244 +msgid "starred" +msgstr "preferito" -#: ../../Zotlabs/Module/Siteinfo.php:58 -msgid "Running at web location" -msgstr "In esecuzione sull'indirizzo web" +#: ../../Zotlabs/Lib/ThreadItem.php:254 ../../include/conversation.php:704 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" -#: ../../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/Lib/ThreadItem.php:255 ../../include/conversation.php:705 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" -#: ../../Zotlabs/Module/Siteinfo.php:60 -msgid "Bug reports and issues: please visit" -msgstr "Per segnalare bug e problemi: visita" +#: ../../Zotlabs/Lib/ThreadItem.php:263 +msgid "Add Tag" +msgstr "Aggiungi un tag" -#: ../../Zotlabs/Module/Siteinfo.php:62 -msgid "$projectname issues" -msgstr "Problematiche note su $projectname" +#: ../../Zotlabs/Lib/ThreadItem.php:281 ../../include/taxonomy.php:510 +msgid "like" +msgstr "mi piace" -#: ../../Zotlabs/Module/Siteinfo.php:63 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com" +#: ../../Zotlabs/Lib/ThreadItem.php:282 ../../include/taxonomy.php:511 +msgid "dislike" +msgstr "non mi piace" -#: ../../Zotlabs/Module/Siteinfo.php:65 -msgid "Site Administrators" -msgstr "Amministratori del sito" +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "Share This" +msgstr "Condividi" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2308 -msgid "Blocks" -msgstr "Block" +#: ../../Zotlabs/Lib/ThreadItem.php:286 +msgid "share" +msgstr "condividi" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" -msgstr "Titolo del block" +#: ../../Zotlabs/Lib/ThreadItem.php:295 +msgid "Delivery Report" +msgstr "Rapporto di trasmissione" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2310 -msgid "Layouts" -msgstr "Layout" +#: ../../Zotlabs/Lib/ThreadItem.php:313 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d commento" +msgstr[1] "%d commenti" -#: ../../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 "Guida" +#: ../../Zotlabs/Lib/ThreadItem.php:343 ../../Zotlabs/Lib/ThreadItem.php:344 +#, php-format +msgid "View %s's profile - %s" +msgstr "Guarda il profilo di %s - %s" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" -msgstr "Guida di Comanche Page Description Language" +#: ../../Zotlabs/Lib/ThreadItem.php:347 +msgid "to" +msgstr "a" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" -msgstr "Descrizione del layout" +#: ../../Zotlabs/Lib/ThreadItem.php:348 +msgid "via" +msgstr "via" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" -msgstr "Scarica il file PDL" +#: ../../Zotlabs/Lib/ThreadItem.php:349 +msgid "Wall-to-Wall" +msgstr "Da bacheca a bacheca" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "# Accounts" -msgstr "# account" +#: ../../Zotlabs/Lib/ThreadItem.php:350 +msgid "via Wall-To-Wall:" +msgstr "da bacheca a bacheca:" -#: ../../Zotlabs/Module/Admin.php:98 -msgid "# blocked accounts" -msgstr "# account bloccati" +#: ../../Zotlabs/Lib/ThreadItem.php:363 ../../include/conversation.php:763 +#, php-format +msgid "from %s" +msgstr "da %s" -#: ../../Zotlabs/Module/Admin.php:99 -msgid "# expired accounts" -msgstr "# account scaduti" +#: ../../Zotlabs/Lib/ThreadItem.php:366 ../../include/conversation.php:766 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" -#: ../../Zotlabs/Module/Admin.php:100 -msgid "# expiring accounts" -msgstr "# account in scadenza" +#: ../../Zotlabs/Lib/ThreadItem.php:367 ../../include/conversation.php:767 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" -#: ../../Zotlabs/Module/Admin.php:111 -msgid "# Channels" -msgstr "# canali" +#: ../../Zotlabs/Lib/ThreadItem.php:374 +msgid "Attend" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:112 -msgid "# primary" -msgstr "# primari" +#: ../../Zotlabs/Lib/ThreadItem.php:375 +msgid "Attendance Options" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:113 -msgid "# clones" -msgstr "# cloni" +#: ../../Zotlabs/Lib/ThreadItem.php:376 +msgid "Vote" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:119 -msgid "Message queues" -msgstr "Coda messaggi in uscita" +#: ../../Zotlabs/Lib/ThreadItem.php:377 +msgid "Voting Options" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:136 -msgid "Your software should be updated" -msgstr "Il tuo software necessita di un aggiornamento" +#: ../../Zotlabs/Lib/ThreadItem.php:398 +#: ../../addon/bookmarker/bookmarker.php:38 +msgid "Save Bookmarks" +msgstr "Salva segnalibro" -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Summary" -msgstr "Riepilogo" +#: ../../Zotlabs/Lib/ThreadItem.php:399 +msgid "Add to Calendar" +msgstr "Aggiungi al calendario" -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Registered accounts" -msgstr "Account creati" +#: ../../Zotlabs/Lib/ThreadItem.php:426 ../../include/conversation.php:483 +msgid "This is an unsaved preview" +msgstr "" -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Pending registrations" -msgstr "Registrazioni da approvare" +#: ../../Zotlabs/Lib/ThreadItem.php:458 ../../include/js_strings.php:7 +#, php-format +msgid "%s show all" +msgstr "%s mostra tutto" -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Registered channels" -msgstr "Canali creati" +#: ../../Zotlabs/Lib/ThreadItem.php:751 ../../include/conversation.php:1377 +msgid "Bold" +msgstr "Grassetto" -#: ../../Zotlabs/Module/Admin.php:148 -msgid "Active plugins" -msgstr "Plugin attivi" +#: ../../Zotlabs/Lib/ThreadItem.php:752 ../../include/conversation.php:1378 +msgid "Italic" +msgstr "Corsivo" -#: ../../Zotlabs/Module/Admin.php:149 -msgid "Version" -msgstr "Versione" +#: ../../Zotlabs/Lib/ThreadItem.php:753 ../../include/conversation.php:1379 +msgid "Underline" +msgstr "Sottolineato" -#: ../../Zotlabs/Module/Admin.php:150 -msgid "Repository version (master)" -msgstr "Versione del repository (master)" +#: ../../Zotlabs/Lib/ThreadItem.php:754 ../../include/conversation.php:1380 +msgid "Quote" +msgstr "Citazione" -#: ../../Zotlabs/Module/Admin.php:151 -msgid "Repository version (dev)" -msgstr "Versione del repository (dev)" +#: ../../Zotlabs/Lib/ThreadItem.php:755 ../../include/conversation.php:1381 +msgid "Code" +msgstr "Codice" -#: ../../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/Lib/ThreadItem.php:756 +msgid "Image" +msgstr "Immagine" -#: ../../Zotlabs/Module/Profile_photo.php:389 -msgid "Upload Profile Photo" -msgstr "Carica la foto del profilo" +#: ../../Zotlabs/Lib/ThreadItem.php:757 +msgid "Attach File" +msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." -msgstr "Permesso negato." +#: ../../Zotlabs/Lib/ThreadItem.php:758 +msgid "Insert Link" +msgstr "Collegamento" -#: ../../Zotlabs/Module/Cal.php:259 ../../Zotlabs/Module/Events.php:597 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Lib/ThreadItem.php:759 +msgid "Video" +msgstr "Video" -#: ../../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/Lib/ThreadItem.php:769 +msgid "Your full name (required)" +msgstr "" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 -msgid "Edit Event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Lib/ThreadItem.php:770 +msgid "Your email address (required)" +msgstr "" -#: ../../Zotlabs/Module/Cal.php:331 ../../Zotlabs/Module/Events.php:674 -msgid "Create Event" -msgstr "Crea un evento" +#: ../../Zotlabs/Lib/ThreadItem.php:771 +msgid "Your website URL (optional)" +msgstr "" -#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:677 -msgid "Export" -msgstr "Esporta" +#: ../../Zotlabs/Zot/Auth.php:152 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please" +" logout and retry." +msgstr "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo." -#: ../../Zotlabs/Module/Cal.php:337 ../../include/text.php:2332 -msgid "Import" -msgstr "Importa" +#: ../../Zotlabs/Zot/Auth.php:264 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." +msgstr "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo." -#: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Events.php:686 -msgid "Today" -msgstr "Oggi" +#: ../../Zotlabs/Storage/Browser.php:107 ../../Zotlabs/Storage/Browser.php:287 +msgid "parent" +msgstr "cartella superiore" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." -msgstr "Nessun canale." +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2821 +msgid "Collection" +msgstr "Cartella" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" -msgstr "Contatti in comune" +#: ../../Zotlabs/Storage/Browser.php:134 +msgid "Principal" +msgstr "Principale" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." -msgstr "Nessun contatto in comune." +#: ../../Zotlabs/Storage/Browser.php:137 +msgid "Addressbook" +msgstr "Rubrica" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "Nessuna valutazione" +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:420 +#: ../../include/nav.php:423 +msgid "Calendar" +msgstr "Calendario" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "Valutazione:" +#: ../../Zotlabs/Storage/Browser.php:143 +msgid "Schedule Inbox" +msgstr "Appuntamenti ricevuti" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "Sito web:" +#: ../../Zotlabs/Storage/Browser.php:146 +msgid "Schedule Outbox" +msgstr "Appuntamenti inviati" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "Descrizione:" +#: ../../Zotlabs/Storage/Browser.php:273 +msgid "Total" +msgstr "Totale" -#: ../../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/Storage/Browser.php:275 +msgid "Shared" +msgstr "Condiviso" -#: ../../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/Storage/Browser.php:353 +#, 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/Module/Register.php:89 -msgid "Passwords do not match." -msgstr "Le password non corrispondono." +#: ../../Zotlabs/Storage/Browser.php:358 +#, 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/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/Storage/Browser.php:369 +msgid "WARNING:" +msgstr "ATTENZIONE:" -#: ../../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/Storage/Browser.php:381 +msgid "Create new folder" +msgstr "Nuova cartella" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." -msgstr "La tua registrazione non puo' essere processata." +#: ../../Zotlabs/Storage/Browser.php:383 +msgid "Upload file" +msgstr "Carica un file" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." -msgstr "Su questo hub la registrazione non è permessa." +#: ../../Zotlabs/Storage/Browser.php:396 +msgid "Drop files here to immediately upload" +msgstr "Trascina i file qui per caricarli al volo" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." -msgstr "La registrazione su questo hub è soggetta ad approvazione." +#: ../../Zotlabs/Widget/Forums.php:100 +msgid "Forums" +msgstr "Forum" -#: ../../Zotlabs/Module/Register.php:194 -msgid "Register at another affiliated hub." -msgstr "Registrati su un altro server hubzilla." +#: ../../Zotlabs/Widget/Cdav.php:37 +msgid "Select Channel" +msgstr "" -#: ../../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/Widget/Cdav.php:42 +msgid "Read-write" +msgstr "" -#: ../../Zotlabs/Module/Register.php:221 -msgid "Terms of Service" -msgstr "Condizioni d'Uso" +#: ../../Zotlabs/Widget/Cdav.php:43 +msgid "Read-only" +msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -#, php-format -msgid "I accept the %s for this website" -msgstr "Accetto le %s di questo sito" +#: ../../Zotlabs/Widget/Cdav.php:117 +msgid "My Calendars" +msgstr "" -#: ../../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/Widget/Cdav.php:119 +msgid "Shared Calendars" +msgstr "" -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" -msgstr "Il tuo indirizzo email" +#: ../../Zotlabs/Widget/Cdav.php:123 +msgid "Share this calendar" +msgstr "" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" -msgstr "Scegli una password" +#: ../../Zotlabs/Widget/Cdav.php:125 +msgid "Calendar name and color" +msgstr "" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" -msgstr "Ripeti la password per verifica" +#: ../../Zotlabs/Widget/Cdav.php:127 +msgid "Create new calendar" +msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" -msgstr "Inserisci il codice dell'invito" +#: ../../Zotlabs/Widget/Cdav.php:129 +msgid "Calendar Name" +msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" -msgstr "no" +#: ../../Zotlabs/Widget/Cdav.php:130 +msgid "Calendar Tools" +msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" -msgstr "sì" +#: ../../Zotlabs/Widget/Cdav.php:131 +msgid "Import calendar" +msgstr "" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." -msgstr "Per registrarsi su questo hub è necessario un invito." +#: ../../Zotlabs/Widget/Cdav.php:132 +msgid "Select a calendar to import to" +msgstr "" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:152 -#: ../../boot.php:1721 -msgid "Register" -msgstr "Registrati" +#: ../../Zotlabs/Widget/Cdav.php:159 +msgid "Addressbooks" +msgstr "" -#: ../../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/Widget/Cdav.php:161 +msgid "Addressbook name" +msgstr "" -#: ../../Zotlabs/Module/Help.php:27 -msgid "Documentation Search" -msgstr "Ricerca nella guida" +#: ../../Zotlabs/Widget/Cdav.php:163 +msgid "Create new addressbook" +msgstr "" -#: ../../Zotlabs/Module/Help.php:57 -msgid "$Projectname Documentation" -msgstr "Guida di $Projectname" +#: ../../Zotlabs/Widget/Cdav.php:164 +msgid "Addressbook Name" +msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" -msgstr "Scegli una cartella di segnalibri" +#: ../../Zotlabs/Widget/Cdav.php:166 +msgid "Addressbook Tools" +msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" -msgstr "Salva segnalibro" +#: ../../Zotlabs/Widget/Cdav.php:167 +msgid "Import addressbook" +msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" -msgstr "URL del segnalibro" +#: ../../Zotlabs/Widget/Cdav.php:168 +msgid "Select an addressbook to import to" +msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" -msgstr "O inserisci il nome di una nuova cartella di segnalibri" +#: ../../Zotlabs/Widget/Appcategories.php:40 +#: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:97 +#: ../../include/contact_widgets.php:141 ../../include/contact_widgets.php:186 +#: ../../include/taxonomy.php:344 ../../include/taxonomy.php:426 +#: ../../include/taxonomy.php:446 ../../include/taxonomy.php:467 +msgid "Categories" +msgstr "Categorie" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." -msgstr "Autenticazione fallita." +#: ../../Zotlabs/Widget/Appcategories.php:43 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:100 +#: ../../include/contact_widgets.php:144 ../../include/contact_widgets.php:189 +msgid "Everything" +msgstr "Tutto" -#: ../../Zotlabs/Module/Rmagic.php:75 -msgid "Remote Authentication" -msgstr "Accedi tramite il tuo hub" +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" +msgstr "Gestione eventi" -#: ../../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/Widget/Eventstools.php:14 +msgid "Export Calendar" +msgstr "Esporta calendario" -#: ../../Zotlabs/Module/Rmagic.php:77 -msgid "Authenticate" -msgstr "Accedi" +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" +msgstr "Importa calendario" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." -msgstr "Effettua l'accesso." +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" +msgstr "Chat suggerite" -#: ../../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/Widget/Hq_controls.php:14 +msgid "HQ Control Panel" +msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" -msgstr "Elimina questo account" +#: ../../Zotlabs/Widget/Hq_controls.php:17 +msgid "Create a new post" +msgstr "" -#: ../../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/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" +msgstr "Menu messaggi privati" -#: ../../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/Widget/Mailmenu.php:15 +msgid "Combined View" +msgstr "Vista combinata" -#: ../../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/Widget/Mailmenu.php:20 +msgid "Inbox" +msgstr "In arrivo" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:128 -msgid "Remove Account" -msgstr "Elimina l'account" +#: ../../Zotlabs/Widget/Mailmenu.php:25 +msgid "Outbox" +msgstr "Inviati" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" -msgstr "Importa gli elementi della pagina web" +#: ../../Zotlabs/Widget/Mailmenu.php:30 +msgid "New Message" +msgstr "Nuovo messaggio" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" -msgstr "Importa i selezionati" +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1864 ../../include/conversation.php:1867 +#: ../../include/nav.php:434 ../../include/nav.php:437 +msgid "Chatrooms" +msgstr "Chat" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" -msgstr "Esporta gli elementi della pagina web" +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" +msgstr "Riepilogo" -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" -msgstr "Esporta i selezionati" +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" +msgstr "Valutazione" -#: ../../Zotlabs/Module/Webpages.php:237 ../../Zotlabs/Lib/Apps.php:218 -#: ../../include/nav.php:109 ../../include/conversation.php:1725 -msgid "Webpages" -msgstr "Pagine web" +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" +msgstr "Valutami" -#: ../../Zotlabs/Module/Webpages.php:248 ../../include/page_widgets.php:44 -msgid "Actions" -msgstr "Azioni" +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" +msgstr "Vedi le valutazioni ricevute" -#: ../../Zotlabs/Module/Webpages.php:249 ../../include/page_widgets.php:45 -msgid "Page Link" -msgstr "Link alla pagina" +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" +msgstr "Attività" -#: ../../Zotlabs/Module/Webpages.php:250 -msgid "Page Title" -msgstr "Titolo della pagina" +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Hai attivato %1$.0f delle %2$.0f connessioni permesse." -#: ../../Zotlabs/Module/Webpages.php:280 -msgid "Invalid file type." -msgstr "Tipo di file non valido." +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" +msgstr "Aggiungi un contatto" -#: ../../Zotlabs/Module/Webpages.php:292 -msgid "Error opening zip file" -msgstr "Errore nell'apertura del file zip" +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" +msgstr "Indirizzo del canale" -#: ../../Zotlabs/Module/Webpages.php:303 -msgid "Invalid folder path." -msgstr "La cartella indicata non è valida." +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Per esempio: bob@example.com, https://example.com/barbara" -#: ../../Zotlabs/Module/Webpages.php:330 -msgid "No webpage elements detected." -msgstr "Nella pagina web non sono presenti elementi." +#: ../../Zotlabs/Widget/Wiki_list.php:15 ../../addon/gitwiki/gitwiki.php:95 +msgid "Wiki List" +msgstr "Elenco wiki" -#: ../../Zotlabs/Module/Webpages.php:405 -msgid "Import complete." -msgstr "Importazione completata." +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" +msgstr "Archivi" -#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 -msgid "Export Channel" -msgstr "Esporta il canale" +#: ../../Zotlabs/Widget/Conversations.php:17 +msgid "Received Messages" +msgstr "Ricevuti" -#: ../../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/Widget/Conversations.php:21 +msgid "Sent Messages" +msgstr "Inviati" -#: ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Content" -msgstr "Esporta i contenuti" +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Conversations" +msgstr "Conversazioni" -#: ../../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/Widget/Conversations.php:37 +msgid "No messages." +msgstr "Nessun messaggio." -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export your posts from a given year." -msgstr "Esporta i tuoi post a partire dall'anno scelto." +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" +msgstr "Elimina la conversazione" -#: ../../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/Widget/Chatroom_members.php:11 +msgid "Chat Members" +msgstr "Partecipanti" -#: ../../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/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" +msgstr "foto/immagine" -#: ../../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/Widget/Savedsearch.php:75 +msgid "Remove term" +msgstr "Rimuovi termine" -#: ../../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/Widget/Savedsearch.php:83 ../../include/features.php:354 +msgid "Saved Searches" +msgstr "Ricerche salvate" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" -msgstr "L'elemento non è modificabile" +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:333 +msgid "add" +msgstr "aggiungi" -#: ../../Zotlabs/Module/Search.php:216 -#, php-format -msgid "Items tagged with: %s" -msgstr "Elementi taggati con: %s" +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "Note" -#: ../../Zotlabs/Module/Search.php:218 -#, php-format -msgid "Search results for: %s" -msgstr "Risultati ricerca: %s" +#: ../../Zotlabs/Widget/Wiki_pages.php:32 +#: ../../Zotlabs/Widget/Wiki_pages.php:89 ../../addon/gitwiki/gitwiki.php:81 +msgid "Add new page" +msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." -msgstr "Le voci del calendario sono state importate." +#: ../../Zotlabs/Widget/Wiki_pages.php:83 ../../addon/gitwiki/gitwiki.php:76 +msgid "Wiki Pages" +msgstr "Pagine wiki" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." -msgstr "Non sono state trovate voci del calendario." +#: ../../Zotlabs/Widget/Wiki_pages.php:94 ../../addon/gitwiki/gitwiki.php:82 +msgid "Page name" +msgstr "" -#: ../../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/Widget/Affinity.php:45 +msgid "Refresh" +msgstr "Aggiorna" -#: ../../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/Widget/Tasklist.php:23 +msgid "Tasks" +msgstr "Attività" -#: ../../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/Widget/Suggestions.php:51 +msgid "Suggestions" +msgstr "Suggerimenti" -#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 -msgid "Event not found." -msgstr "Evento non trovato." +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." +msgstr "Altro..." -#: ../../Zotlabs/Module/Events.php:452 -msgid "Edit event title" -msgstr "Modifica il titolo dell'evento" +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:443 +msgid "Saved Folders" +msgstr "Cartelle salvate" -#: ../../Zotlabs/Module/Events.php:452 -msgid "Event title" -msgstr "Titolo dell'evento" +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" +msgstr "Clicca per mostrare tutto" -#: ../../Zotlabs/Module/Events.php:454 -msgid "Categories (comma-separated list)" -msgstr "Categorie (separate da virgola)" +#: ../../Zotlabs/Widget/Newmember.php:33 +msgid "Profile Creation" +msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Edit Category" -msgstr "Modifica la categoria" +#: ../../Zotlabs/Widget/Newmember.php:35 +msgid "Upload profile photo" +msgstr "" -#: ../../Zotlabs/Module/Events.php:455 -msgid "Category" -msgstr "Categoria" +#: ../../Zotlabs/Widget/Newmember.php:36 +msgid "Upload cover photo" +msgstr "" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Edit start date and time" -msgstr "Modifica data/ora di inizio" +#: ../../Zotlabs/Widget/Newmember.php:37 ../../include/nav.php:119 +msgid "Edit your profile" +msgstr "Modifica il tuo profilo" -#: ../../Zotlabs/Module/Events.php:458 -msgid "Start date and time" -msgstr "Data e ora di inizio" +#: ../../Zotlabs/Widget/Newmember.php:40 +msgid "Find and Connect with others" +msgstr "" -#: ../../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/Widget/Newmember.php:44 +msgid "Manage your connections" +msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Edit finish date and time" -msgstr "Modifica data/ora di fine" +#: ../../Zotlabs/Widget/Newmember.php:47 +msgid "Communicate" +msgstr "" -#: ../../Zotlabs/Module/Events.php:461 -msgid "Finish date and time" -msgstr "Data e ora di fine" +#: ../../Zotlabs/Widget/Newmember.php:49 +msgid "View your channel homepage" +msgstr "" -#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Events.php:464 -msgid "Adjust for viewer timezone" -msgstr "Adatta al fuso orario di chi legge" +#: ../../Zotlabs/Widget/Newmember.php:50 +msgid "View your network stream" +msgstr "" -#: ../../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/Widget/Newmember.php:56 +msgid "Documentation" +msgstr "" -#: ../../Zotlabs/Module/Events.php:465 -msgid "Edit Description" -msgstr "Modifica la descrizione" +#: ../../Zotlabs/Widget/Newmember.php:67 +msgid "View public stream. Warning: not moderated" +msgstr "" -#: ../../Zotlabs/Module/Events.php:467 -msgid "Edit Location" -msgstr "Modifica il luogo" +#: ../../Zotlabs/Widget/Newmember.php:71 +msgid "New Member Links" +msgstr "" -#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:472 -msgid "Share this event" -msgstr "Condividi questo evento" +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" +msgstr "Richieste in attesa di conferma" -#: ../../Zotlabs/Module/Events.php:474 ../../include/conversation.php:1264 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" +msgstr "Coda di attesa" -#: ../../Zotlabs/Module/Events.php:485 -msgid "Advanced Options" -msgstr "Opzioni avanzate" +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" +msgstr "Aggiornamenti al DB" -#: ../../Zotlabs/Module/Events.php:619 -msgid "Edit event" -msgstr "Modifica l'evento" +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:199 +msgid "Admin" +msgstr "Amministrazione" -#: ../../Zotlabs/Module/Events.php:621 -msgid "Delete event" -msgstr "Elimina l'evento" +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" +msgstr "Plugin" -#: ../../Zotlabs/Module/Events.php:655 -msgid "calendar" -msgstr "calendario" +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" +msgstr "Il tuo account" -#: ../../Zotlabs/Module/Events.php:681 -msgid "Month" -msgstr "Mese" +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" +msgstr "Impostazioni del canale" -#: ../../Zotlabs/Module/Events.php:682 -msgid "Week" -msgstr "Settimana" +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" +msgstr "Funzionalità opzionali" -#: ../../Zotlabs/Module/Events.php:683 -msgid "Day" -msgstr "Giorno" +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Addon settings" +msgstr "" -#: ../../Zotlabs/Module/Events.php:717 -msgid "Event removed" -msgstr "Evento eliminato" +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" +msgstr "Aspetto" -#: ../../Zotlabs/Module/Events.php:720 -msgid "Failed to remove event" -msgstr "Impossibile eliminare l'evento" +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" +msgstr "Gestione cloni del tuo canale" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." -msgstr "Non esistono restrizioni su questa classe di account." +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" +msgstr "Esporta il canale" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" -msgstr "L'oggetto è stato aggiornato" +#: ../../Zotlabs/Widget/Settings_menu.php:84 +msgid "Connected apps" +msgstr "App connesse" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" -msgstr "Impossibile memorizzare l'oggetto." +#: ../../Zotlabs/Widget/Settings_menu.php:100 ../../include/features.php:231 +msgid "Permission Groups" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" -msgstr "L'Oggetto è stato aggiunto" +#: ../../Zotlabs/Widget/Settings_menu.php:117 +msgid "Premium Channel Settings" +msgstr "Canale premium - impostazioni" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" +msgstr "Chat nei segnalibri" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" -msgstr "Mostra l'oggetto" +#: ../../Zotlabs/Widget/Notifications.php:16 +msgid "New Network Activity" +msgstr "Nuova attività nella tua rete" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." -msgstr "non trovato." +#: ../../Zotlabs/Widget/Notifications.php:17 +msgid "New Network Activity Notifications" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" -msgstr "Modifica l'oggetto" +#: ../../Zotlabs/Widget/Notifications.php:20 +msgid "View your network activity" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" -msgstr "Scegli un profilo" +#: ../../Zotlabs/Widget/Notifications.php:23 +msgid "Mark all notifications read" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" -msgstr "Pubblica un'attività" +#: ../../Zotlabs/Widget/Notifications.php:26 +#: ../../Zotlabs/Widget/Notifications.php:45 +#: ../../Zotlabs/Widget/Notifications.php:141 +msgid "Show new posts only" +msgstr "" -#: ../../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/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:142 +msgid "Filter by name" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" -msgstr "Nome dell'oggetto" +#: ../../Zotlabs/Widget/Notifications.php:35 +msgid "New Home Activity" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" -msgstr "Indirizzo web dell'oggetto (facoltativo)" +#: ../../Zotlabs/Widget/Notifications.php:36 +msgid "New Home Activity Notifications" +msgstr "" -#: ../../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/Widget/Notifications.php:39 +msgid "View your home activity" +msgstr "" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" -msgstr "Aggiungi l'oggetto al tuo profilo" +#: ../../Zotlabs/Widget/Notifications.php:42 +#: ../../Zotlabs/Widget/Notifications.php:138 +msgid "Mark all notifications seen" +msgstr "" -#: ../../Zotlabs/Module/Item.php:180 -msgid "Unable to locate original post." -msgstr "Impossibile trovare il messaggio originale." +#: ../../Zotlabs/Widget/Notifications.php:54 +msgid "New Mails" +msgstr "" -#: ../../Zotlabs/Module/Item.php:433 -msgid "Empty post discarded." -msgstr "Il post vuoto è stato ignorato." +#: ../../Zotlabs/Widget/Notifications.php:55 +msgid "New Mails Notifications" +msgstr "" -#: ../../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/Widget/Notifications.php:58 +msgid "View your private mails" +msgstr "" -#: ../../Zotlabs/Module/Item.php:851 -msgid "Duplicate post suppressed." -msgstr "I post duplicati sono scartati." +#: ../../Zotlabs/Widget/Notifications.php:61 +msgid "Mark all messages seen" +msgstr "" -#: ../../Zotlabs/Module/Item.php:986 -msgid "System error. Post not saved." -msgstr "Errore di sistema. Post non salvato." +#: ../../Zotlabs/Widget/Notifications.php:69 +msgid "New Events" +msgstr "" -#: ../../Zotlabs/Module/Item.php:1107 -msgid "Unable to obtain post information from database." -msgstr "Impossibile caricare il post dal database." +#: ../../Zotlabs/Widget/Notifications.php:70 +msgid "New Events Notifications" +msgstr "" -#: ../../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/Widget/Notifications.php:73 +msgid "View events" +msgstr "" -#: ../../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/Widget/Notifications.php:76 +msgid "Mark all events seen" +msgstr "Marca come letti tutti gli eventi" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" -msgstr "File: condivisi con me" +#: ../../Zotlabs/Widget/Notifications.php:85 +msgid "New Connections Notifications" +msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" -msgstr "NOVITÀ" +#: ../../Zotlabs/Widget/Notifications.php:88 +msgid "View all connections" +msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" -msgstr "Elimina tutti i file" +#: ../../Zotlabs/Widget/Notifications.php:96 +msgid "New Files" +msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" -msgstr "Elimina questo file" +#: ../../Zotlabs/Widget/Notifications.php:97 +msgid "New Files Notifications" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:34 -msgid "Not found" -msgstr "Non trovato" +#: ../../Zotlabs/Widget/Notifications.php:104 +#: ../../Zotlabs/Widget/Notifications.php:105 +msgid "Notices" +msgstr "Avvisi" -#: ../../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/Widget/Notifications.php:108 +msgid "View all notices" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:98 -msgid "Sandbox" -msgstr "Sandbox" +#: ../../Zotlabs/Widget/Notifications.php:111 +msgid "Mark all notices seen" +msgstr "" -#: ../../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/Widget/Notifications.php:121 +msgid "New Registrations" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:169 -msgid "Revision Comparison" -msgstr "Confronto tra revisioni" +#: ../../Zotlabs/Widget/Notifications.php:122 +msgid "New Registrations Notifications" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:170 -msgid "Revert" -msgstr "Ripristina" +#: ../../Zotlabs/Widget/Notifications.php:132 +msgid "Public Stream Notifications" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:201 -msgid "Enter the name of your new wiki:" -msgstr "Nome della tua nuova pagina wiki:" +#: ../../Zotlabs/Widget/Notifications.php:135 +msgid "View the public stream" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:202 -msgid "Enter the name of the new page:" -msgstr "Nome della tua nuova pagina:" +#: ../../Zotlabs/Widget/Notifications.php:150 +msgid "Sorry, you have got no notifications at the moment" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:203 -msgid "Enter the new name:" -msgstr "Nuovo nome:" +#: ../../util/nconfig.php:34 +msgid "Source channel not found." +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:209 ../../include/conversation.php:1153 -msgid "Embed image from photo albums" -msgstr "Inserisci un'immagine dall'album foto" +#: ../../boot.php:1562 +msgid "Create an account to access services and applications" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:210 ../../include/conversation.php:1247 -msgid "Embed an image from your albums" -msgstr "Inserisci un'immagine dai tuoi album" +#: ../../boot.php:1581 ../../include/nav.php:111 ../../include/nav.php:140 +#: ../../include/nav.php:159 +msgid "Logout" +msgstr "Esci" -#: ../../Zotlabs/Module/Wiki.php:212 ../../include/conversation.php:1249 -#: ../../include/conversation.php:1296 -msgid "OK" -msgstr "OK" +#: ../../boot.php:1585 +msgid "Login/Email" +msgstr "Login/Email" -#: ../../Zotlabs/Module/Wiki.php:213 ../../include/conversation.php:1189 -msgid "Choose images to embed" -msgstr "Scegli le immagini da inserire" +#: ../../boot.php:1586 +msgid "Password" +msgstr "Password" -#: ../../Zotlabs/Module/Wiki.php:214 ../../include/conversation.php:1190 -msgid "Choose an album" -msgstr "Scegli un album" +#: ../../boot.php:1587 +msgid "Remember me" +msgstr "Resta connesso" -#: ../../Zotlabs/Module/Wiki.php:215 ../../include/conversation.php:1191 -msgid "Choose a different album..." -msgstr "Scegli un altro album..." +#: ../../boot.php:1590 +msgid "Forgot your password?" +msgstr "Hai dimenticato la password?" -#: ../../Zotlabs/Module/Wiki.php:216 ../../include/conversation.php:1192 -msgid "Error getting album list" -msgstr "Errore nell'ottenere l'elenco degli album" +#: ../../boot.php:2347 +#, php-format +msgid "[$Projectname] Website SSL error for %s" +msgstr "" -#: ../../Zotlabs/Module/Wiki.php:217 ../../include/conversation.php:1193 -msgid "Error getting photo link" -msgstr "Errore nell'ottenere il link alla foto" +#: ../../boot.php:2352 +msgid "Website SSL certificate is not valid. Please correct." +msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." -#: ../../Zotlabs/Module/Wiki.php:218 ../../include/conversation.php:1194 -msgid "Error getting album" -msgstr "Errore nell'ottenere l'album" +#: ../../boot.php:2468 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:37 -msgid "Failed to create source. No channel selected." -msgstr "Impossibile creare la sorgente. Nessun canale selezionato." +#: ../../boot.php:2473 +msgid "Cron/Scheduled tasks not running." +msgstr "Processi cron non avviati." -#: ../../Zotlabs/Module/Sources.php:51 -msgid "Source created." -msgstr "Sorgente creata." +#: ../../boot.php:2474 ../../include/datetime.php:232 +msgid "never" +msgstr "mai" -#: ../../Zotlabs/Module/Sources.php:64 -msgid "Source updated." -msgstr "Sorgente aggiornata." +#: ../../view/theme/redbasic_c/php/config.php:16 +#: ../../view/theme/redbasic_c/php/config.php:19 +#: ../../view/theme/redbasic/php/config.php:16 +#: ../../view/theme/redbasic/php/config.php:19 +msgid "Focus (Hubzilla default)" +msgstr "Focus (predefinito)" -#: ../../Zotlabs/Module/Sources.php:90 -msgid "*" -msgstr "*" +#: ../../view/theme/redbasic_c/php/config.php:99 +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Theme settings" +msgstr "Impostazioni del tema" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/features.php:195 -#: ../../include/widgets.php:672 -msgid "Channel Sources" -msgstr "Sorgenti del canale" +#: ../../view/theme/redbasic_c/php/config.php:100 +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Narrow navbar" +msgstr "Barra di navigazione ristretta" -#: ../../Zotlabs/Module/Sources.php:97 -msgid "Manage remote sources of content for your channel." -msgstr "Gestisci le sorgenti dei contenuti del tuo canale." +#: ../../view/theme/redbasic_c/php/config.php:101 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Navigation bar background color" +msgstr "Barra di navigazione: Colore di sfondo" -#: ../../Zotlabs/Module/Sources.php:98 ../../Zotlabs/Module/Sources.php:108 -msgid "New Source" -msgstr "Nuova sorgente" +#: ../../view/theme/redbasic_c/php/config.php:102 +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Navigation bar icon color " +msgstr "Barra di navigazione: Colore delle icone" -#: ../../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." +#: ../../view/theme/redbasic_c/php/config.php:103 +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Navigation bar active icon color " +msgstr "Barra di navigazione: Colore dell'icona attiva" -#: ../../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)" +#: ../../view/theme/redbasic_c/php/config.php:104 +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Link color" +msgstr "" -#: ../../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" +#: ../../view/theme/redbasic_c/php/config.php:105 +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set font-color for banner" +msgstr "Colore del font del banner" -#: ../../Zotlabs/Module/Sources.php:111 ../../Zotlabs/Module/Sources.php:148 -msgid "Channel Name" -msgstr "Nome del canale" +#: ../../view/theme/redbasic_c/php/config.php:106 +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Set the background color" +msgstr "Colore di sfondo" -#: ../../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)" +#: ../../view/theme/redbasic_c/php/config.php:107 +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set the background image" +msgstr "Immagine di sfondo" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -msgid "Optional" -msgstr "Facoltativo" +#: ../../view/theme/redbasic_c/php/config.php:108 +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set the background color of items" +msgstr "Colore di sfondo degli oggetti" -#: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 -msgid "Source not found." -msgstr "Sorgente non trovata." +#: ../../view/theme/redbasic_c/php/config.php:109 +#: ../../view/theme/redbasic/php/config.php:107 +msgid "Set the background color of comments" +msgstr "Colore di sfondo dei commenti" -#: ../../Zotlabs/Module/Sources.php:140 -msgid "Edit Source" -msgstr "Modifica la sorgente" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Set font-size for the entire application" +msgstr "Dimensione font per tutto il sito" -#: ../../Zotlabs/Module/Sources.php:141 -msgid "Delete Source" -msgstr "Elimina la sorgente" +#: ../../view/theme/redbasic_c/php/config.php:110 +#: ../../view/theme/redbasic/php/config.php:108 +msgid "Examples: 1rem, 100%, 16px" +msgstr "" -#: ../../Zotlabs/Module/Sources.php:169 -msgid "Source removed" -msgstr "Sorgente eliminata" +#: ../../view/theme/redbasic_c/php/config.php:111 +#: ../../view/theme/redbasic/php/config.php:109 +msgid "Set font-color for posts and comments" +msgstr "Colore del carattere per post e commenti" -#: ../../Zotlabs/Module/Sources.php:171 -msgid "Unable to remove source." -msgstr "Impossibile rimuovere la sorgente." +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Set radius of corners" +msgstr "Raggio degli angoli stondati" -#: ../../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" +#: ../../view/theme/redbasic_c/php/config.php:112 +#: ../../view/theme/redbasic/php/config.php:110 +msgid "Example: 4px" +msgstr "" -#: ../../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" +#: ../../view/theme/redbasic_c/php/config.php:113 +#: ../../view/theme/redbasic/php/config.php:111 +msgid "Set shadow depth of photos" +msgstr "Profondità dell'ombra delle foto" -#: ../../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." +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Set maximum width of content region in pixel" +msgstr "Larghezza massima dell'area dei contenuti in pixel" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 -msgid "Ignore/Hide" -msgstr "Ignora/nascondi" +#: ../../view/theme/redbasic_c/php/config.php:114 +#: ../../view/theme/redbasic/php/config.php:112 +msgid "Leave empty for default width" +msgstr "Lascia vuoto per usare il valore predefinito" -#: ../../Zotlabs/Module/Suggest.php:64 ../../Zotlabs/Module/Directory.php:392 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "Canali suggeriti" +#: ../../view/theme/redbasic_c/php/config.php:115 +msgid "Left align page content" +msgstr "Allinea a sinistra il contenuto della pagina" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:263 -msgid "post" -msgstr "il post" +#: ../../view/theme/redbasic_c/php/config.php:116 +#: ../../view/theme/redbasic/php/config.php:113 +msgid "Set size of conversation author photo" +msgstr "Dimensione foto dell'autore della conversazione" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1999 -#: ../../include/conversation.php:150 -msgid "comment" -msgstr "il commento" +#: ../../view/theme/redbasic_c/php/config.php:117 +#: ../../view/theme/redbasic/php/config.php:114 +msgid "Set size of followup author photos" +msgstr "Dimensione foto dei partecipanti alla conversazione" -#: ../../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" +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " +msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" -msgstr "Tag rimosso" +#: ../../addon/rendezvous/rendezvous.php:95 +#: ../../addon/twitter/twitter.php:779 +msgid "Submit Settings" +msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" -msgstr "Rimuovi il tag" +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" +msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " -msgstr "Seleziona un tag da rimuovere: " +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." +msgstr "" -#: ../../Zotlabs/Module/Follow.php:34 -msgid "Channel added." -msgstr "Canale aggiunto." +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" +msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." -msgstr "Nessun contatto." +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." +msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visita il profilo di %s [%s]" +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" +msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" -msgstr "Elenco contatti" +#: ../../addon/rendezvous/rendezvous.php:167 +msgid "" +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." +msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" -msgstr "Sorgente" +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" -msgstr "Chat non trovata" +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with" +" the other members, tap the GPS control. When your location is discovered, a" +" red dot will appear and others will be able to see you on the map." +msgstr "" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" -msgstr "Lascia la chat" +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" -msgstr "Elimina questa chat" +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" -msgstr "Non sono presente" +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" -msgstr "Sono online" +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" -msgstr "Aggiungi questa chat ai segnalibri" +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" -msgstr "Nuova chat" +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" -msgstr "Nome chat" +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" -msgstr "Scadenza dei messaggi della chat (minuti)" +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius" +" of you.

Enter a radius in meters (0 to disable):" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:249 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Le chat di %1$s" +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" -msgstr "Nessuna chat disponibile" +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" -msgstr "Scadenza" +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the" +" marker location.

Enter a radius in meters (0 to disable):" +msgstr "" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" -msgstr "min" +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" +msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" -msgstr "Ricerca canale" +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" +msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Cerca un canale (o un webbie) che inizia per:" +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:243 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valutazione" -msgstr[1] "%d valutazioni" +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:254 -msgid "Gender: " -msgstr "Sesso:" +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or" +" share their own locations with the group." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Status: " -msgstr "Stato:" +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Homepage: " -msgstr "Homepage:" +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:306 ../../include/channel.php:1207 -msgid "Age:" -msgstr "Età:" +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" +msgstr "" -#: ../../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:" +#: ../../addon/gnusoc/gnusoc.php:247 +msgid "GNU-Social Protocol Settings updated." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:317 -msgid "Description:" -msgstr "Descrizione:" +#: ../../addon/gnusoc/gnusoc.php:266 +msgid "" +"The GNU-Social protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:322 ../../include/channel.php:1223 -msgid "Hometown:" -msgstr "Città dove vivo:" +#: ../../addon/gnusoc/gnusoc.php:269 +msgid "Enable the GNU-Social protocol for this channel" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:324 ../../include/channel.php:1231 -msgid "About:" -msgstr "Informazioni:" +#: ../../addon/gnusoc/gnusoc.php:273 +msgid "GNU-Social Protocol Settings" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 -msgid "Public Forum:" -msgstr "Forum pubblico:" +#: ../../addon/gnusoc/gnusoc.php:464 +msgid "Follow" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Keywords: " -msgstr "Parole chiave:" +#: ../../addon/gnusoc/gnusoc.php:467 +#, php-format +msgid "%1$s is now following %2$s" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Don't suggest" -msgstr "Non fornire suggerimenti" +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:334 -msgid "Common connections:" -msgstr "Contatti in comune:" +#: ../../addon/planets/planets.php:149 +msgid "Enable Planets Plugin" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Global Directory" -msgstr "Elenchi pubblici globali" +#: ../../addon/planets/planets.php:153 +msgid "Planets Settings" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:383 -msgid "Local Directory" -msgstr "Elenco canali su questo hub" +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:389 -msgid "Finding:" -msgstr "Ricerca:" +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "next page" -msgstr "pagina successiva" +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:394 -msgid "previous page" -msgstr "pagina precedente" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:395 -msgid "Sort options" -msgstr "Opzioni di ordinamento" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 -msgid "Alphabetic" -msgstr "Alfabetico" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:397 -msgid "Reverse Alphabetic" -msgstr "Alfabetico inverso" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." +msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Newest to Oldest" -msgstr "Prima i più recenti" +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1301 +#: ../../include/nav.php:119 +msgid "Edit Profile" +msgstr "Modifica il profilo" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Oldest to Newest" -msgstr "Prima i più vecchi" +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" +msgstr "" -#: ../../Zotlabs/Module/Directory.php:416 -msgid "No entries (some entries may be hidden)." -msgstr "Nessun risultato (qualche elemento potrebbe essere nascosto)." +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." -msgstr "Email non valida." +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:23 -msgid "Protected email address. Cannot change to that email." -msgstr "È un indirizzo email riservato. Non puoi sceglierlo." +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" +msgstr "" -#: ../../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." +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:40 -msgid "Technical skill level updated" -msgstr "Livello tecnico aggiornato" +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." -msgstr "Verifica della password fallita." +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." -msgstr "Le password non corrispondono. Password non cambiata." +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:67 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Le password non possono essere vuote. Password non cambiata." +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:81 -msgid "Password changed." -msgstr "Password cambiata." +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:83 -msgid "Password update failed. Please try again." -msgstr "Modifica password fallita. Prova ancora." +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:120 -msgid "Account Settings" -msgstr "Il tuo account" +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Current Password" -msgstr "Password attuale" +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:122 -msgid "Enter New Password" -msgstr "Nuova password" +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use this image" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:123 -msgid "Confirm New Password" -msgstr "Conferma la nuova password" +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:123 -msgid "Leave password fields blank unless changing" -msgstr "Lascia vuoti questi campi per non cambiare la password" +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:124 -msgid "Your technical skill level" -msgstr "Il tuo livello tecnico" +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." +msgstr "" -#: ../../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" +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." +msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:127 -#: ../../Zotlabs/Module/Settings/Channel.php:459 -msgid "Email Address:" -msgstr "Indirizzo email:" +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" +msgstr "Marca le foto per adulti" -#: ../../Zotlabs/Module/Settings/Account.php:129 -msgid "Remove this account including all its channels" -msgstr "Elimina questo account e tutti i suoi canali" +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" +msgstr "Permetti di nascondere le foto inappropriate nella visualizzazione degli album" -#: ../../Zotlabs/Module/Settings/Channel.php:246 -msgid "Settings updated." -msgstr "Impostazioni aggiornate." +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:307 -msgid "Nobody except yourself" -msgstr "Nessuno tranne te" +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:308 -msgid "Only those you specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:309 -msgid "Approved connections" -msgstr "Contatti approvati" +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:310 -msgid "Any connections" -msgstr "Tutti i contatti" +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:311 -msgid "Anybody on this website" -msgstr "Chiunque su questo hub" +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:312 -msgid "Anybody in this network" -msgstr "Chiunque su questa rete" +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:313 -msgid "Anybody authenticated" -msgstr "Chiunque abbia effettuato l'accesso" +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:314 -msgid "Anybody on the internet" -msgstr "Chiunque su internet" +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" +msgstr "" -#: ../../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" +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" +msgstr "" -#: ../../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?" +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:404 -msgid "Your channel address is" -msgstr "L'indirizzo del tuo canale è" +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:450 -msgid "Channel Settings" -msgstr "Impostazioni del canale" +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and" +" can thereby be used as a general purpose content filter." +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:457 -msgid "Basic Settings" -msgstr "Impostazioni di base" +#: ../../addon/nsfw/nsfw.php:84 +msgid "Enable Content filter" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:458 -#: ../../include/channel.php:1164 -msgid "Full Name:" -msgstr "Nome completo:" +#: ../../addon/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:460 -msgid "Your Timezone:" -msgstr "Il tuo fuso orario:" +#: ../../addon/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:461 -msgid "Default Post Location:" -msgstr "Località predefinita:" +#: ../../addon/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:461 -msgid "Geographical location to display on your posts" -msgstr "La posizione geografica da mostrare sui tuoi post" +#: ../../addon/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:462 -msgid "Use Browser Location:" -msgstr "Usa la località rilevata dal browser:" +#: ../../addon/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:464 -msgid "Adult Content" -msgstr "Contenuto per adulti" +#: ../../addon/nsfw/nsfw.php:207 +msgid "Possible adult content" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:464 -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)" +#: ../../addon/nsfw/nsfw.php:222 +#, php-format +msgid "%s - view" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:466 -msgid "Security and Privacy Settings" -msgstr "Impostazioni di sicurezza e privacy" +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" +msgstr "" -#: ../../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" +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:471 -msgid "Hide my online presence" -msgstr "Nascondi la mia presenza online" +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" +msgstr "" -#: ../../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" +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:473 -msgid "Simple Privacy Settings:" -msgstr "Impostazioni di privacy semplificate" +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:474 -msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Tutto pubblico - estremamente permissivo (da usare con cautela)" +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:475 -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)" +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:476 -msgid "Private - default private, never open or public" -msgstr "Privato - contenuti normalmente privati, nulla è aperto o pubblico" +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:477 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloccato - bloccato in invio e ricezione dei contenuti" +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:479 -msgid "Allow others to tag your posts" -msgstr "Permetti ad altri di taggare i tuoi post" +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:479 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:481 -msgid "Channel Permission Limits" -msgstr "Limiti sui permessi del canale" +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" +msgstr "" -#: ../../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" +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "0 or blank to use the website limit." -msgstr "0 o vuoto per usare i valori predefiniti." +#: ../../addon/notifyadmin/notifyadmin.php:34 +msgid "New registration" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 +#: ../../addon/notifyadmin/notifyadmin.php:42 #, php-format -msgid "This website expires after %d days." -msgstr "Per questo sito la scadenza è %d giorni. " +msgid "Message sent to %s. New account registration: %s" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "This website does not expire imported content." -msgstr "I contenuti di questo sito non hanno scadenza." +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" +msgstr "" -#: ../../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." +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:484 -msgid "Maximum Friend Requests/Day:" -msgstr "Numero massimo giornaliero di richieste di amicizia:" +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:484 -msgid "May reduce spam activity" -msgstr "Serve a ridurre lo spam" +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:485 -msgid "Default Access Control List (ACL)" -msgstr "Lista di accesso ai contenuti (ACL)" +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" +msgstr "" -#: ../../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" +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" +msgstr "" + +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:494 -msgid "Channel permissions category:" -msgstr "Categorie di permessi dei canali:" +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" +msgstr "" -#: ../../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:" +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Useful to reduce spamming" -msgstr "Serve e ridurre lo spam" +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Notification Settings" -msgstr "Impostazioni di notifica" +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:504 -msgid "By default post a status message when:" -msgstr "Pubblica un messaggio di stato quando:" +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "accepting a friend request" -msgstr "accetto una nuova amicizia" +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:506 -msgid "joining a forum/community" -msgstr "entro a far parte di un forum" +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "making an interesting profile change" -msgstr "faccio un cambiamento interessante al mio profilo" +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:508 -msgid "Send a notification email when:" -msgstr "Invia una email di notifica quando:" +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:509 -msgid "You receive a connection request" -msgstr "Ricevi una richiesta di entrare in contatto" +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:510 -msgid "Your connections are confirmed" -msgstr "I tuoi contatti sono confermati" +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" +msgstr "Metti un like su Hubzilla" -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Someone writes on your profile wall" -msgstr "Qualcuno scrive sulla tua bacheca" +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:512 -msgid "Someone writes a followup comment" -msgstr "Qualcuno scrive un commento dopo di te" +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:513 -msgid "You receive a private message" -msgstr "Ricevi un messaggio privato" +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:514 -msgid "You receive a friend suggestion" -msgstr "Ti viene suggerito un amico" +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:515 -msgid "You are tagged in a post" -msgstr "Sei taggato in un post" +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:516 -msgid "You are poked/prodded/etc. in a post" -msgstr "Ricevi un poke in un post" +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Show visual notifications including:" -msgstr "Mostra queste notifiche a schermo:" +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:521 -msgid "Unseen grid activity" -msgstr "Nuove attività nella rete" +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:522 -msgid "Unseen channel activity" -msgstr "Novità nei canali" +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:523 -msgid "Unseen private messages" -msgstr "Nuovi messaggi privati" +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" +msgstr "" -#: ../../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" +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:524 -msgid "Upcoming events" -msgstr "Prossimi eventi" +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Events today" -msgstr "Eventi di oggi" +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Upcoming birthdays" -msgstr "Prossimi compleanni" +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:526 -msgid "Not available in all themes" -msgstr "Non disponibile in tutti i temi" +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:527 -msgid "System (personal) notifications" -msgstr "Notifiche personali dal sistema" +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "System info messages" -msgstr "Notifiche di sistema" +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:529 -msgid "System critical alerts" -msgstr "Avvisi critici di sistema" +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "New connections" -msgstr "Nuovi contatti" +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:531 -msgid "System Registrations" -msgstr "Registrazioni" +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" +msgstr "" -#: ../../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" +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Notify me of events this many days in advance" -msgstr "Giorni di anticipo per notificare gli eventi" +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "Must be greater than 0" -msgstr "Maggiore di 0" +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Advanced Account/Page Type Settings" -msgstr "Impostazioni avanzate" +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." +msgstr "" -#: ../../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" +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "Miscellaneous Settings" -msgstr "Impostazioni varie" +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "Default photo upload folder" -msgstr "Cartella predefinita per le foto caricate" +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" +msgstr "" -#: ../../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" +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:541 -msgid "Default file upload folder" -msgstr "Cartella predefinita per i file caricati" +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +msgid "Nickname" +msgstr "" -#: ../../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" +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:545 -msgid "Remove this channel." -msgstr "Elimina questo canale." +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Firefox Share $Projectname provider" -msgstr "Attiva Firefox Share per $Projectname" +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" +msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:547 -msgid "Start calendar week on monday" -msgstr "La settimana inizia il lunedì" +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:135 -msgid "No special theme for mobile devices" -msgstr "Nessun tema per dispositivi mobili" +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:138 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Sperimentale)" +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:189 -msgid "Display Settings" -msgstr "Aspetto" +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:190 -msgid "Theme Settings" -msgstr "Impostazioni del tema" +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:191 -msgid "Custom Theme Settings" -msgstr "Personalizzazione del tema" +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:192 -msgid "Content Settings" -msgstr "Impostazioni dei contenuti" +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:198 -msgid "Display Theme:" -msgstr "Tema per schermi medio grandi:" +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:199 -msgid "Select scheme" -msgstr "Scegli uno schema" +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Mobile Theme:" -msgstr "Tema per dispositivi mobili:" +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:202 -msgid "Preload images before rendering the page" -msgstr "Carica le immagini prima del rendering della pagina" +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:290 +msgid "Login failed." +msgstr "Accesso fallito." -#: ../../Zotlabs/Module/Settings/Display.php:202 -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" +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1481 +msgid "Male" +msgstr "Maschio" -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Enable user zoom on mobile devices" -msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 ../../include/channel.php:1479 +msgid "Female" +msgstr "Femmina" -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Update browser every xx seconds" -msgstr "Aggiorna il browser ogni x secondi" +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimo 10 secondi, nessun limite massimo" +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." +msgstr "" -#: ../../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:" +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Maximum of 100 items" -msgstr "Massimo 100" +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Show emoticons (smilies) as images" -msgstr "Mostra le faccine (smilies) come immagini" +#: ../../addon/startpage/startpage.php:109 +msgid "Page to load after login" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "Link post titles to source" -msgstr "Il link del titolo di un post porta al sito originale" +#: ../../addon/startpage/startpage.php:109 +msgid "" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:208 -msgid "System Page Layout Editor - (advanced)" -msgstr "Modifica i layout di sistema (avanzato)" +#: ../../addon/startpage/startpage.php:113 +msgid "Startpage Settings" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "Use blog/list mode on channel page" -msgstr "Mostra il canale nella modalità blog" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:211 -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "(comments displayed separately)" -msgstr "(i commenti sono mostrati separatamente)" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:212 -msgid "Use blog/list mode on grid page" -msgstr "Mostra la tua rete in modalità blog" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" +msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:213 -msgid "Channel page max height of content (in pixels)" -msgstr "Altezza massima dei contenuti del canale (in pixel)" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" +msgstr "" -#: ../../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" +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" +msgstr "" -#: ../../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)" +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" +msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:24 -msgid "No feature settings configured" -msgstr "Non hai componenti aggiuntivi da personalizzare" +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" +msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:31 -msgid "Feature/Addon Settings" -msgstr "Impostazioni dei componenti aggiuntivi" +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" +msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:45 -msgid "Additional Features" -msgstr "Funzionalità opzionali" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:34 -msgid "Name is required" -msgstr "Il nome è obbligatorio" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:38 -msgid "Key and Secret are required" -msgstr "Key e Secret sono richiesti" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" +msgstr "" -#: ../../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" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -msgid "Name of application" -msgstr "Nome dell'applicazione" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" +msgstr "" -#: ../../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" +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -msgid "Redirect" -msgstr "Redirect" +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" +msgstr "" -#: ../../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" +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Icon url" -msgstr "Url icona" +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:104 -msgid "Application not found." -msgstr "Applicazione non trovata." +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:147 -msgid "Connected Apps" -msgstr "App connesse" +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -msgid "Client key starts with" -msgstr "La client key inizia con" +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "No name" -msgstr "Nessun nome" +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" +msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "Remove authorization" -msgstr "Revoca l'autorizzazione" +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" +msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" -msgstr "Questo canale è limitato a %d token" +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" +msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." -msgstr "Nome e password sono obbligatori." +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" +msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." -msgstr "Token salvato." +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" +msgstr "" -#: ../../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." +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" +msgstr "" -#: ../../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:" +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" +msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:647 -msgid "Guest Access Tokens" -msgstr "Token di accesso ospite" +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" +msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" -msgstr "Nome utente" +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" +msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" -msgstr "Password" +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" +msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" -msgstr "Con scadenza (aaaa-mm-gg)" +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:27 -msgid "Missing room name" -msgstr "Chat senza nome" +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:36 -msgid "Duplicate room name" -msgstr "Il nome della chat è duplicato" +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:86 ../../Zotlabs/Lib/Chatroom.php:94 -msgid "Invalid room specifier." -msgstr "Il nome della chat non è valido." +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:126 -msgid "Room not found." -msgstr "Chat non trovata." +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" +msgstr "" -#: ../../Zotlabs/Lib/Chatroom.php:147 -msgid "Room is full" -msgstr "La chat è al completo" +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1889 -msgid "$Projectname Notification" -msgstr "Notifica $Projectname" +#: ../../addon/diaspora/diaspora.php:778 +msgid "Diaspora Protocol Settings updated." +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../include/network.php:1890 -msgid "$projectname" -msgstr "$projectname" +#: ../../addon/diaspora/diaspora.php:797 +msgid "" +"The Diaspora protocol does not support location independence. Connections " +"you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1892 -msgid "Thank You," -msgstr "Grazie," +#: ../../addon/diaspora/diaspora.php:800 +msgid "Enable the Diaspora protocol for this channel" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1894 -#, php-format -msgid "%s Administrator" -msgstr "L'amministratore di %s" +#: ../../addon/diaspora/diaspora.php:804 +msgid "Allow any Diaspora member to comment on your public posts" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:103 -#, php-format -msgid "%s " -msgstr "%s " +#: ../../addon/diaspora/diaspora.php:808 +msgid "Prevent your hashtags from being redirected to other sites" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:107 -#, php-format -msgid "[$Projectname:Notify] New mail received at %s" -msgstr "[$Projectname:Notifica] Nuovo messaggio su %s" +#: ../../addon/diaspora/diaspora.php:812 +msgid "" +"Sign and forward posts and comments with no existing Diaspora signature" +msgstr "" -#: ../../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." +#: ../../addon/diaspora/diaspora.php:817 +msgid "Followed hashtags (comma separated, do not include the #)" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:110 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s ti ha mandato %2$s." +#: ../../addon/diaspora/diaspora.php:822 +msgid "Diaspora Protocol Settings" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:110 -msgid "a private message" -msgstr "un messaggio privato" +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." +msgstr "" -#: ../../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." +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:62 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Impossibile creare un indirizzo univoco per il canale. L'import è fallito." -#: ../../Zotlabs/Lib/Enotify.php:170 +#: ../../addon/testdrive/testdrive.php:104 #, 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]" +msgid "Your account on %s will expire in a few days." +msgstr "" -#: ../../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]" +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." +msgstr "" -#: ../../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]" +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" +msgstr "" -#: ../../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" +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" +msgstr "" -#: ../../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." +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." +msgstr "" -#: ../../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." +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" +msgstr "" -#: ../../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" +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " +msgstr "" -#: ../../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" +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " +msgstr "" -#: ../../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]" +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:236 -#, php-format -msgid "[$Projectname:Notify] %s tagged you" -msgstr "[$Projectname:Notifica] %s ti ha taggato" +#: ../../addon/gravatar/gravatar.php:123 +msgid "generic profile image" +msgstr "" -#: ../../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" +#: ../../addon/gravatar/gravatar.php:124 +msgid "random geometric pattern" +msgstr "" -#: ../../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]." +#: ../../addon/gravatar/gravatar.php:125 +msgid "monster face" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:250 -#, php-format -msgid "[$Projectname:Notify] %1$s poked you" -msgstr "[$Projectname:Notifica] %1$s ti ha mandato un poke" +#: ../../addon/gravatar/gravatar.php:126 +msgid "computer generated face" +msgstr "" -#: ../../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" +#: ../../addon/gravatar/gravatar.php:127 +msgid "retro arcade style face" +msgstr "" -#: ../../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]." +#: ../../addon/gravatar/gravatar.php:128 +msgid "Hub default profile photo" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:268 -#, php-format -msgid "[$Projectname:Notify] %s tagged your post" -msgstr "[$Projectname:Notifica] %s ha taggato il tuo post" +#: ../../addon/gravatar/gravatar.php:143 +msgid "Information" +msgstr "" -#: ../../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" +#: ../../addon/gravatar/gravatar.php:143 +msgid "" +"Libravatar addon is installed, too. Please disable Libravatar addon or this " +"Gravatar addon.
The Libravatar addon will fall back to Gravatar if " +"nothing was found at Libravatar." +msgstr "" -#: ../../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]" +#: ../../addon/gravatar/gravatar.php:150 +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:282 -msgid "[$Projectname:Notify] Introduction received" -msgstr "[$Projectname:Notifica] Hai una richiesta di amicizia" +#: ../../addon/gravatar/gravatar.php:151 +msgid "Default avatar image" +msgstr "" -#: ../../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" +#: ../../addon/gravatar/gravatar.php:151 +msgid "Select default avatar image if none was found at Gravatar. See README" +msgstr "" -#: ../../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." +#: ../../addon/gravatar/gravatar.php:152 +msgid "Rating of images" +msgstr "" -#: ../../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" +#: ../../addon/gravatar/gravatar.php:152 +msgid "Select the appropriate avatar rating for your site. See README" +msgstr "" + +#: ../../addon/gravatar/gravatar.php:165 +msgid "Gravatar settings updated." +msgstr "" -#: ../../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." +#: ../../addon/hzfiles/hzfiles.php:79 +msgid "Hubzilla File Storage Import" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:297 -msgid "[$Projectname:Notify] Friend suggestion received" -msgstr "[$Projectname:Notifica] Ti è stato suggerito un amico" +#: ../../addon/hzfiles/hzfiles.php:80 +msgid "This will import all your cloud files from another server." +msgstr "" -#: ../../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" +#: ../../addon/hzfiles/hzfiles.php:81 +msgid "Hubzilla Server base URL" +msgstr "" -#: ../../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." +#: ../../addon/hzfiles/hzfiles.php:82 +msgid "Since modified date yyyy-mm-dd" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:305 -msgid "Name:" -msgstr "Nome:" +#: ../../addon/hzfiles/hzfiles.php:83 +msgid "Until modified date yyyy-mm-dd" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:306 -msgid "Photo:" -msgstr "Foto:" +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:309 +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." +msgstr "" + +#: ../../addon/visage/visage.php:99 #, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Visita %s per approvare o rifiutare il suggerimento." +msgid "Please visit the Visage settings on %s" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:527 -msgid "[$Projectname:Notify]" -msgstr "[$Projectname:Notifica]" +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:687 -msgid "created a new post" -msgstr "Ha creato un nuovo post" +#: ../../addon/visage/visage.php:112 +msgid "No entries." +msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:688 -#, php-format -msgid "commented on %s's post" -msgstr "ha commentato il post di %s" +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:667 -msgid "Private Message" -msgstr "Messaggio privato" +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:659 -msgid "Select" -msgstr "Scegli" +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "Salva nella cartella" +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will attend" -msgstr "Parteciperò" +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I will not attend" -msgstr "Non parteciperò" +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 -msgid "I might attend" -msgstr "Forse parteciperò" +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I agree" -msgstr "Sono d'accordo" +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I disagree" -msgstr "Non sono d'accordo" +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 -msgid "I abstain" -msgstr "Mi astengo" +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:223 -msgid "Add Star" -msgstr "Aggiungi ai preferiti" +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:224 -msgid "Remove Star" -msgstr "Rimuovi dai preferiti" +#: ../../addon/mdpost/mdpost.php:41 +msgid "Use markdown for editing posts" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:225 -msgid "Toggle Star Status" -msgstr "Attiva/disattiva preferito" +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:229 -msgid "starred" -msgstr "preferito" +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:674 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of public tile servers" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:675 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:248 -msgid "Add Tag" -msgstr "Aggiungi un tag" +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "" +"A list of Nominatim servers" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:316 -msgid "like" -msgstr "mi piace" +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:269 ../../include/taxonomy.php:317 -msgid "dislike" -msgstr "non mi piace" +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "" +"The default zoom level. (1:world, 18:highest, also depends on tile server)" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:273 -msgid "Share This" -msgstr "Condividi" +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:273 -msgid "share" -msgstr "condividi" +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:282 -msgid "Delivery Report" -msgstr "Rapporto di trasmissione" +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:300 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d commento" -msgstr[1] "%d commenti" +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:329 ../../Zotlabs/Lib/ThreadItem.php:330 -#, php-format -msgid "View %s's profile - %s" -msgstr "Guarda il profilo di %s - %s" +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:333 -msgid "to" -msgstr "a" +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:334 -msgid "via" -msgstr "via" +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:335 -msgid "Wall-to-Wall" -msgstr "Da bacheca a bacheca" +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:336 -msgid "via Wall-To-Wall:" -msgstr "da bacheca a bacheca:" +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:348 ../../include/conversation.php:720 -#, php-format -msgid "from %s" -msgstr "da %s" +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:351 ../../include/conversation.php:723 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:724 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:377 -msgid "Save Bookmarks" -msgstr "Salva segnalibro" +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1397 +#: ../../include/channel.php:1568 +msgid "Status:" +msgstr "Stato:" -#: ../../Zotlabs/Lib/ThreadItem.php:378 -msgid "Add to Calendar" -msgstr "Aggiungi al calendario" +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:387 -msgid "Mark all seen" -msgstr "Marca tutto come letto" +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:436 ../../include/js_strings.php:7 -#, php-format -msgid "%s show all" -msgstr "%s mostra tutto" +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:726 ../../include/conversation.php:1239 -msgid "Bold" -msgstr "Grassetto" +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:727 ../../include/conversation.php:1240 -msgid "Italic" -msgstr "Corsivo" +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:728 ../../include/conversation.php:1241 -msgid "Underline" -msgstr "Sottolineato" +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/conversation.php:1242 -msgid "Quote" -msgstr "Citazione" +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/conversation.php:1243 -msgid "Code" -msgstr "Codice" +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:731 -msgid "Image" -msgstr "Immagine" +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:732 -msgid "Insert Link" -msgstr "Collegamento" +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" +msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:733 -msgid "Video" -msgstr "Video" +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:31 -#: ../../include/acl_selectors.php:124 -msgid "Visible to your default audience" -msgstr "Visibile secondo le impostazioni predefinite" +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:106 -#: ../../include/acl_selectors.php:165 -msgid "Only me" -msgstr "Solo io" +#: ../../addon/superblock/superblock.php:112 +msgid "Currently blocked" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -msgid "Public" -msgstr "Pubblico" +#: ../../addon/superblock/superblock.php:114 +msgid "No channels currently blocked" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Anybody in the $Projectname network" -msgstr "Tutti sulla rete $Projectname" +#: ../../addon/superblock/superblock.php:120 +msgid "\"Superblock\" Settings" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -#, php-format -msgid "Any account on %s" -msgstr "Tutti gli account su %s" +#: ../../addon/superblock/superblock.php:345 +msgid "Block Completely" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 -msgid "Any of my connections" -msgstr "Chiunque tra i miei contatti" +#: ../../addon/superblock/superblock.php:394 +msgid "superblock settings updated" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Only connections I specifically allow" -msgstr "Solo chi riceve il mio permesso" +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" +msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "Chiunque sia autenticato (inclusi visitatori di altre reti)" +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." +msgstr "" -#: ../../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" +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" +msgstr "" -#: ../../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" +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" +msgstr "" -#: ../../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" +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" +msgstr "" -#: ../../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" +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" +msgstr "" -#: ../../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" +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." +msgstr "" -#: ../../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" +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:205 -msgid "Site Admin" -msgstr "Amministrazione sito" +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:206 -msgid "Bug Report" -msgstr "Bug Report" +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:207 -msgid "View Bookmarks" -msgstr "Vedi i segnalibri" +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:208 -msgid "My Chatrooms" -msgstr "Le mie aree chat" +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:210 -msgid "Firefox Share" -msgstr "Firefox Share" +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:211 -msgid "Remote Diagnostics" -msgstr "Diagnostica remota" +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 ../../include/features.php:319 -msgid "Suggest Channels" -msgstr "Suggerisci canali" +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" +msgstr "" + +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:213 ../../include/nav.php:115 -#: ../../boot.php:1739 -msgid "Login" -msgstr "Accedi" +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:215 ../../include/nav.php:184 -msgid "Grid" -msgstr "Rete" +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:187 -msgid "Channel Home" -msgstr "Bacheca del canale" +#: ../../addon/frphotos/frphotos.php:91 +msgid "Friendica Photo Album Import" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:223 ../../include/nav.php:206 -#: ../../include/conversation.php:1689 ../../include/conversation.php:1692 -msgid "Events" -msgstr "Eventi" +#: ../../addon/frphotos/frphotos.php:92 +msgid "This will import all your Friendica photo albums to this Red channel." +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/nav.php:172 -msgid "Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../addon/frphotos/frphotos.php:93 +msgid "Friendica Server base URL" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/nav.php:198 -msgid "Mail" -msgstr "Messaggi" +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Login Username" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:229 ../../include/nav.php:99 -msgid "Chat" -msgstr "Chat" +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Password" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 -msgid "Probe" -msgstr "Diagnostica" +#: ../../addon/pubcrawl/as.php:1101 ../../addon/pubcrawl/as.php:1228 +#: ../../addon/pubcrawl/as.php:1403 ../../include/network.php:1774 +msgid "ActivityPub" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:232 -msgid "Suggest" -msgstr "Suggerisci" +#: ../../addon/pubcrawl/pubcrawl.php:1034 +msgid "ActivityPub Protocol Settings updated." +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:233 -msgid "Random Channel" -msgstr "Canale casuale" +#: ../../addon/pubcrawl/pubcrawl.php:1043 +msgid "" +"The ActivityPub protocol does not support location independence. Connections" +" you make within that network may be unreachable from alternate channel " +"locations." +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:234 -msgid "Invite" -msgstr "Invita" +#: ../../addon/pubcrawl/pubcrawl.php:1046 +msgid "Enable the ActivityPub protocol for this channel" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:235 ../../include/widgets.php:1564 -msgid "Features" -msgstr "Funzionalità" +#: ../../addon/pubcrawl/pubcrawl.php:1049 +msgid "Send multi-media HTML articles" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Language" -msgstr "Lingua" +#: ../../addon/pubcrawl/pubcrawl.php:1049 +msgid "Not supported by some microblog services such as Mastodon" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:237 -msgid "Post" -msgstr "Post" +#: ../../addon/pubcrawl/pubcrawl.php:1053 +msgid "ActivityPub Protocol Settings" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:238 -msgid "Profile Photo" -msgstr "Foto del profilo" +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" +msgstr "" -#: ../../Zotlabs/Lib/Apps.php:339 -msgid "Purchase" -msgstr "Acquista" +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" +msgstr "" -#: ../../include/Import/import_diaspora.php:16 -msgid "No username found in import file." -msgstr "Impossibile trovare il nome utente nel file da importare." +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" +msgstr "" -#: ../../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." +#: ../../addon/donate/donate.php:50 +msgid "" +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." +msgstr "" -#: ../../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'" +#: ../../addon/donate/donate.php:53 +msgid "" +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." +msgstr "" -#: ../../include/permissions.php:35 -msgid "Can view my normal stream and posts" -msgstr "Può vedere i miei contenuti e i post normali" +#: ../../addon/donate/donate.php:54 +msgid "" +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"you do.)" +msgstr "" -#: ../../include/permissions.php:39 -msgid "Can view my webpages" -msgstr "Può vedere le mie pagine web" +#: ../../addon/donate/donate.php:55 +msgid "" +"Help support our ground-breaking work in decentralisation, web identity, and" +" privacy." +msgstr "" -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" -msgstr "Può scrivere sulla bacheca del mio canale" +#: ../../addon/donate/donate.php:57 +msgid "" +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." +msgstr "" -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" -msgstr "Può aggiungere \"mi piace\" a tutto il resto" +#: ../../addon/donate/donate.php:60 +msgid "Donate" +msgstr "" -#: ../../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" +#: ../../addon/donate/donate.php:62 +msgid "" +"Choose a project, developer, or public hub to support with a one-time " +"donation" +msgstr "" -#: ../../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" +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" +msgstr "" -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" -msgstr "Impostazione avanzata - utile per creare un canale-forum di discussione" +#: ../../addon/donate/donate.php:64 +msgid "" +"Or become a project sponsor (Hubzilla Project " +"only)" +msgstr "" -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" -msgstr "Può aprire una chat con me (se disponibile)" +#: ../../addon/donate/donate.php:65 +msgid "" +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" +msgstr "" -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" -msgstr "Può modificare il mio archivio file e foto" +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" +msgstr "" -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" -msgstr "Può modificare le mie pagine web" +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " +msgstr "" -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Piuttosto avanzato - molto utile nelle comunità aperte" +#: ../../addon/chords/Mod_Chords.php:44 +msgid "" +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." +msgstr "Questo è un dizionario piuttosto esteso e completo di accordi per chitarra che elenca quasi i tutti i modi possibili di suonare un certo accordo a partire dal tasto iniziale fino a circa il dodicesimo (dopo di cui si ripete tutto). Sono previste anche un paio di accordature non standard a beneficio di chi le usa." -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" -msgstr "Può amministrare i contenuti del mio canale" +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +msgstr "I nomi degli accordi iniziano con la nota fondamentale (A-G) e possono includere diesis (#) e bemolle (b). Questo software gestisce gran parte delle notazioni convenzionali come maj, min, dim, sus(2 o 4), aug." -#: ../../include/permissions.php:55 +#: ../../addon/chords/Mod_Chords.php:48 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" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." +msgstr "Esempi validi includono A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..." -#: ../../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" +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" +msgstr "Accordi per chitarra" -#: ../../include/photos.php:121 -msgid "Image file is empty." -msgstr "Il file dell'immagine è vuoto." +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" +msgstr "Il dizionario completo degli accordi online" -#: ../../include/photos.php:259 -msgid "Photo storage failed." -msgstr "Impossibile salvare la foto." +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" +msgstr "Accordatura" -#: ../../include/photos.php:299 -msgid "a new photo" -msgstr "una nuova foto" +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" +msgstr "Nome accordo: per esempio Em7" -#: ../../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" +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" +msgstr "Mostra l'accordatura per mancini" -#: ../../include/photos.php:506 ../../include/conversation.php:1675 -msgid "Photo Albums" -msgstr "Album foto" +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" +msgstr "Riferimento veloce" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Carica nuove foto" +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" +msgstr "" -#: ../../include/features.php:58 -msgid "General Features" -msgstr "Funzionalità di base" +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" +msgstr "" -#: ../../include/features.php:63 -msgid "Multiple Profiles" -msgstr "Profili multipli" +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" +msgstr "" -#: ../../include/features.php:64 -msgid "Ability to create multiple profiles" -msgstr "Abilitazione a creare profili multipli" +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" +msgstr "" -#: ../../include/features.php:72 -msgid "Advanced Profiles" -msgstr "Profili avanzati" +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" +msgstr "" -#: ../../include/features.php:73 -msgid "Additional profile sections and selections" -msgstr "Informazioni aggiuntive del profilo" +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" +msgstr "" -#: ../../include/features.php:81 -msgid "Profile Import/Export" -msgstr "Importa/esporta il profilo" +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." +msgstr "" -#: ../../include/features.php:82 -msgid "Save and load profile details across sites/channels" -msgstr "Salva o ripristina le informazioni del profilo su siti diversi" +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" +msgstr "" -#: ../../include/features.php:90 -msgid "Web Pages" -msgstr "Pagine web" +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." +msgstr "" -#: ../../include/features.php:91 -msgid "Provide managed web pages on your channel" -msgstr "Attiva la creazione di pagine web sul tuo canale" +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" +msgstr "" -#: ../../include/features.php:100 -msgid "Provide a wiki for your channel" -msgstr "Fornisce una wiki per il tuo canale" +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" +msgstr "" -#: ../../include/features.php:117 -msgid "Private Notes" -msgstr "Note private" +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" +msgstr "" -#: ../../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)" +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" +msgstr "" -#: ../../include/features.php:126 -msgid "Navigation Channel Select" -msgstr "Scegli il canale attivo dal menu" +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" +msgstr "" -#: ../../include/features.php:127 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Scegli il canale attivo direttamente dal menu di navigazione" +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" +msgstr "" -#: ../../include/features.php:135 -msgid "Photo Location" -msgstr "Posizione geografica" +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" +msgstr "" -#: ../../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." +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" +msgstr "" -#: ../../include/features.php:144 -msgid "Access Controlled Chatrooms" -msgstr "Chat ad accesso riservato" +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" +msgstr "" -#: ../../include/features.php:145 -msgid "Provide chatrooms and chat services with access control." -msgstr "Il servizio di chat con accesso riservato." +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" +msgstr "" -#: ../../include/features.php:153 -msgid "Smart Birthdays" -msgstr "Compleanni intelligenti" +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" +msgstr "" -#: ../../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." +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" +msgstr "" -#: ../../include/features.php:162 -msgid "Advanced Directory Search" -msgstr "Ricerca avanzata sugli elenchi pubblici" +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" +msgstr "" -#: ../../include/features.php:163 -msgid "Allows creation of complex directory search queries" -msgstr "Permette la creazione di ricerche complesse negli elenchi" +#: ../../addon/statusnet/statusnet.php:143 +msgid "Post to GNU social" +msgstr "" -#: ../../include/features.php:171 -msgid "Advanced Theme and Layout Settings" -msgstr "Impostazioni avanzate del tema e dei layout" +#: ../../addon/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.
The provided API URL is not " +"valid." +msgstr "" -#: ../../include/features.php:172 -msgid "Allows fine tuning of themes and page layouts" -msgstr "Permette una personalizzazione accurata del tema e dei layout" +#: ../../addon/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." +msgstr "" -#: ../../include/features.php:182 -msgid "Post Composition Features" -msgstr "Modalità di scrittura post" +#: ../../addon/statusnet/statusnet.php:266 +msgid "GNU social settings updated." +msgstr "" -#: ../../include/features.php:186 -msgid "Large Photos" -msgstr "Foto grandi" +#: ../../addon/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" +msgstr "" -#: ../../include/features.php:187 +#: ../../addon/statusnet/statusnet.php:312 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)" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)." +msgstr "" -#: ../../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" +#: ../../addon/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" +msgstr "" -#: ../../include/features.php:204 -msgid "Even More Encryption" -msgstr "Cifratura addizionale" +#: ../../addon/statusnet/statusnet.php:329 +msgid "" +"No consumer key pair for GNU social found. Register your Hubzilla Account as" +" an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.
Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." +msgstr "" + +#: ../../addon/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:341 +msgid "Base API Path" +msgstr "" -#: ../../include/features.php:205 +#: ../../addon/statusnet/statusnet.php:341 +msgid "Remember the trailing /" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:345 +msgid "GNU social application name" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:368 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" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your public posts will be " +"posted to GNU social." +msgstr "" -#: ../../include/features.php:213 -msgid "Enable Voting Tools" -msgstr "Permetti i post con votazione" +#: ../../addon/statusnet/statusnet.php:370 +msgid "Log in with GNU social" +msgstr "" -#: ../../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" +#: ../../addon/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" +msgstr "" -#: ../../include/features.php:222 -msgid "Disable Comments" -msgstr "Disabilita i commenti" +#: ../../addon/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" +msgstr "" -#: ../../include/features.php:223 -msgid "Provide the option to disable comments for a post" -msgstr "Permetti di disabilitare i commenti" +#: ../../addon/statusnet/statusnet.php:385 +msgid "Current GNU social API is" +msgstr "" -#: ../../include/features.php:231 -msgid "Delayed Posting" -msgstr "Pubblicazione ritardata" +#: ../../addon/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" +msgstr "" -#: ../../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" +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:233 +msgid "Currently connected to: " +msgstr "" -#: ../../include/features.php:240 -msgid "Content Expiration" -msgstr "Scadenza" +#: ../../addon/statusnet/statusnet.php:406 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." +msgstr "" -#: ../../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" +#: ../../addon/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" +msgstr "" -#: ../../include/features.php:249 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Impedisci post e commenti duplicati" +#: ../../addon/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" +msgstr "" -#: ../../include/features.php:250 +#: ../../addon/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:415 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." +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" +msgstr "" -#: ../../include/features.php:261 -msgid "Network and Stream Filtering" -msgstr "Filtraggio dei contenuti" +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:261 +msgid "Clear OAuth configuration" +msgstr "" -#: ../../include/features.php:265 -msgid "Search by Date" -msgstr "Ricerca per data" +#: ../../addon/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" +msgstr "" -#: ../../include/features.php:266 -msgid "Ability to select posts by date ranges" -msgstr "Per selezionare i post in un intervallo tra date" +#: ../../addon/statusnet/statusnet.php:892 +msgid "API URL" +msgstr "" -#: ../../include/features.php:274 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Gruppi di canali" +#: ../../addon/statusnet/statusnet.php:895 +msgid "Application name" +msgstr "" -#: ../../include/features.php:275 -msgid "Enable management and selection of privacy groups" -msgstr "Abilita i gruppi di canali" +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" +msgstr "" -#: ../../include/features.php:283 ../../include/widgets.php:283 -msgid "Saved Searches" -msgstr "Ricerche salvate" +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" +msgstr "" -#: ../../include/features.php:284 -msgid "Save search terms for re-use" -msgstr "Salva i termini delle ricerche per poterle ripetere" +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" +msgstr "" -#: ../../include/features.php:292 -msgid "Network Personal Tab" -msgstr "Attività personale" +#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 +msgid "Invalid game." +msgstr "" -#: ../../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" +#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 +msgid "You are not a player in this game." +msgstr "" -#: ../../include/features.php:301 -msgid "Network New Tab" -msgstr "Contenuti nuovi" +#: ../../addon/chess/chess.php:415 +msgid "You must be a local channel to create a game." +msgstr "" -#: ../../include/features.php:302 -msgid "Enable tab to display all new Network activity" -msgstr "Abilita il link per visualizzare solo i nuovi contenuti" +#: ../../addon/chess/chess.php:433 +msgid "You must select one opponent that is not yourself." +msgstr "" -#: ../../include/features.php:310 -msgid "Affinity Tool" -msgstr "Filtro per affinità" +#: ../../addon/chess/chess.php:444 +msgid "Random color chosen." +msgstr "" -#: ../../include/features.php:311 -msgid "Filter stream activity by depth of relationships" -msgstr "Permette di selezionare i contenuti in base al livello di amicizia" +#: ../../addon/chess/chess.php:452 +msgid "Error creating new game." +msgstr "" -#: ../../include/features.php:320 -msgid "Show friend and connection suggestions" -msgstr "Mostra suggerimenti di contatti e amici" +#: ../../addon/chess/chess.php:486 ../../include/channel.php:1152 +msgid "Requested channel is not available." +msgstr "Il canale che cerchi non è disponibile." -#: ../../include/features.php:328 -msgid "Connection Filtering" -msgstr "Filtro sui contatti" +#: ../../addon/chess/chess.php:500 +msgid "You must select a local channel /chess/channelname" +msgstr "" -#: ../../include/features.php:329 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtra i post che ricevi con parole chiave" +#: ../../addon/chess/chess.php:1066 +msgid "Enable notifications" +msgstr "" -#: ../../include/features.php:341 -msgid "Post/Comment Tools" -msgstr "Gestione post e commenti" +#: ../../addon/twitter/twitter.php:99 +msgid "Post to Twitter" +msgstr "" -#: ../../include/features.php:345 -msgid "Community Tagging" -msgstr "Tag della comunità" +#: ../../addon/twitter/twitter.php:155 +msgid "Twitter settings updated." +msgstr "" -#: ../../include/features.php:346 -msgid "Ability to tag existing posts" -msgstr "Permetti l'aggiunta di tag su post già esistenti" +#: ../../addon/twitter/twitter.php:184 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." +msgstr "" -#: ../../include/features.php:354 -msgid "Post Categories" -msgstr "Categorie dei post" +#: ../../addon/twitter/twitter.php:206 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input" +" box below and submit the form. Only your public posts will" +" be posted to Twitter." +msgstr "" -#: ../../include/features.php:355 -msgid "Add categories to your posts" -msgstr "Abilita le categorie per i tuoi post" +#: ../../addon/twitter/twitter.php:208 +msgid "Log in with Twitter" +msgstr "" -#: ../../include/features.php:363 -msgid "Emoji Reactions" -msgstr "Risposte emoji" +#: ../../addon/twitter/twitter.php:211 +msgid "Copy the PIN from Twitter here" +msgstr "" -#: ../../include/features.php:364 -msgid "Add emoji reaction ability to posts" -msgstr "Permetti di rispondere ai post con degli emoji" +#: ../../addon/twitter/twitter.php:238 +msgid "" +"Note: Due your privacy settings (Hide your profile " +"details from unknown viewers?) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." +msgstr "" -#: ../../include/features.php:372 ../../include/contact_widgets.php:53 -#: ../../include/widgets.php:346 -msgid "Saved Folders" -msgstr "Cartelle salvate" +#: ../../addon/twitter/twitter.php:243 +msgid "Allow posting to Twitter" +msgstr "" -#: ../../include/features.php:373 -msgid "Ability to file posts under folders" -msgstr "Abilita la raccolta dei tuoi articoli in cartelle" +#: ../../addon/twitter/twitter.php:243 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" +msgstr "" -#: ../../include/features.php:381 -msgid "Dislike Posts" -msgstr "Non mi piace" +#: ../../addon/twitter/twitter.php:247 +msgid "Twitter post length" +msgstr "" -#: ../../include/features.php:382 -msgid "Ability to dislike posts/comments" -msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" +#: ../../addon/twitter/twitter.php:247 +msgid "Maximum tweet length" +msgstr "" -#: ../../include/features.php:390 -msgid "Star Posts" -msgstr "Post con stella" +#: ../../addon/twitter/twitter.php:252 +msgid "Send public postings to Twitter by default" +msgstr "" -#: ../../include/features.php:391 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mostra la stella per segnare i post preferiti" +#: ../../addon/twitter/twitter.php:252 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" +msgstr "" -#: ../../include/features.php:399 -msgid "Tag Cloud" -msgstr "Nuvola di tag" +#: ../../addon/twitter/twitter.php:270 +msgid "Twitter Post Settings" +msgstr "" -#: ../../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" +#: ../../addon/smileybutton/smileybutton.php:211 +msgid "Deactivate the feature" +msgstr "" -#: ../../include/features.php:412 -msgid "Premium Channel" -msgstr "Canale premium" +#: ../../addon/smileybutton/smileybutton.php:215 +msgid "Hide the button and show the smilies directly." +msgstr "" -#: ../../include/features.php:413 +#: ../../addon/smileybutton/smileybutton.php:219 +msgid "Smileybutton Settings" +msgstr "" + +#: ../../addon/piwik/piwik.php:85 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" +"This website is tracked using the Piwik " +"analytics tool." +msgstr "" -#: ../../include/help.php:25 -msgid "Help:" -msgstr "Guida:" +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you can" +" set a cookie to prevent Piwik from tracking further visits of the site " +"(opt-out)." +msgstr "" -#: ../../include/security.php:109 -msgid "guest:" -msgstr "ospite:" +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" +msgstr "" -#: ../../include/security.php:527 +#: ../../addon/piwik/piwik.php:96 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." +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" +msgstr "" -#: ../../include/text.php:450 -msgid "prev" -msgstr "prec" +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" +msgstr "" -#: ../../include/text.php:452 -msgid "first" -msgstr "inizio" +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" +msgstr "" -#: ../../include/text.php:481 -msgid "last" -msgstr "fine" +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" +msgstr "" -#: ../../include/text.php:484 -msgid "next" -msgstr "succ" +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" +msgstr "" -#: ../../include/text.php:494 -msgid "older" -msgstr "più recenti" +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" +msgstr "" -#: ../../include/text.php:496 -msgid "newer" -msgstr "più nuovi" +#: ../../addon/tour/tour.php:75 +msgid "Edit your profile and change settings." +msgstr "" -#: ../../include/text.php:889 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../addon/tour/tour.php:76 +msgid "Click here to see activity from your connections." +msgstr "" -#: ../../include/text.php:914 -#, php-format -msgid "View all %s connections" -msgstr "Mostra tutti i %s contatti" +#: ../../addon/tour/tour.php:77 +msgid "Click here to see your channel home." +msgstr "" -#: ../../include/text.php:1059 ../../include/text.php:1064 -msgid "poke" -msgstr "poke" +#: ../../addon/tour/tour.php:78 +msgid "You can access your private messages from here." +msgstr "" -#: ../../include/text.php:1059 ../../include/text.php:1064 -#: ../../include/conversation.php:243 -msgid "poked" -msgstr "ha mandato un poke" +#: ../../addon/tour/tour.php:79 +msgid "Create new events here." +msgstr "" -#: ../../include/text.php:1065 -msgid "ping" -msgstr "ping" +#: ../../addon/tour/tour.php:80 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." +msgstr "" -#: ../../include/text.php:1065 -msgid "pinged" -msgstr "ha effettuato un ping" +#: ../../addon/tour/tour.php:81 +msgid "System notifications will arrive here" +msgstr "" -#: ../../include/text.php:1066 -msgid "prod" -msgstr "spintone" +#: ../../addon/tour/tour.php:82 +msgid "Search for content and users" +msgstr "" -#: ../../include/text.php:1066 -msgid "prodded" -msgstr "ha ricevuto uno spintone" +#: ../../addon/tour/tour.php:83 +msgid "Browse for new contacts" +msgstr "" -#: ../../include/text.php:1067 -msgid "slap" -msgstr "schiaffo" +#: ../../addon/tour/tour.php:84 +msgid "Launch installed apps" +msgstr "" -#: ../../include/text.php:1067 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" +#: ../../addon/tour/tour.php:85 +msgid "Looking for help? Click here." +msgstr "" -#: ../../include/text.php:1068 -msgid "finger" -msgstr "finger" +#: ../../addon/tour/tour.php:86 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" +msgstr "" -#: ../../include/text.php:1068 -msgid "fingered" -msgstr "ha ricevuto un finger" +#: ../../addon/tour/tour.php:87 +msgid "You have received a new private message. Click here to see from who!" +msgstr "" -#: ../../include/text.php:1069 -msgid "rebuff" -msgstr "rifiuto" +#: ../../addon/tour/tour.php:88 +msgid "There are events this week. Click here too see which!" +msgstr "" -#: ../../include/text.php:1069 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" +#: ../../addon/tour/tour.php:89 +msgid "You have received a new introduction. Click here to see who!" +msgstr "" -#: ../../include/text.php:1081 -msgid "happy" -msgstr "felice" +#: ../../addon/tour/tour.php:90 +msgid "" +"There is a new system notification. Click here to see what has happened!" +msgstr "" -#: ../../include/text.php:1082 -msgid "sad" -msgstr "triste" +#: ../../addon/tour/tour.php:93 +msgid "Click here to share text, images, videos and sound." +msgstr "" -#: ../../include/text.php:1083 -msgid "mellow" -msgstr "calmo" +#: ../../addon/tour/tour.php:94 +msgid "You can write an optional title for your update (good for long posts)." +msgstr "" -#: ../../include/text.php:1084 -msgid "tired" -msgstr "stanco" +#: ../../addon/tour/tour.php:95 +msgid "Entering some categories here makes it easier to find your post later." +msgstr "" -#: ../../include/text.php:1085 -msgid "perky" -msgstr "vivace" +#: ../../addon/tour/tour.php:96 +msgid "Share photos, links, location, etc." +msgstr "" -#: ../../include/text.php:1086 -msgid "angry" -msgstr "arrabbiato" +#: ../../addon/tour/tour.php:97 +msgid "" +"Only want to share content for a while? Make it expire at a certain date." +msgstr "" -#: ../../include/text.php:1087 -msgid "stupefied" -msgstr "stupito" +#: ../../addon/tour/tour.php:98 +msgid "You can password protect content." +msgstr "" -#: ../../include/text.php:1088 -msgid "puzzled" -msgstr "confuso" +#: ../../addon/tour/tour.php:99 +msgid "Choose who you share with." +msgstr "" -#: ../../include/text.php:1089 -msgid "interested" -msgstr "attento" +#: ../../addon/tour/tour.php:101 +msgid "Click here when you are done." +msgstr "" -#: ../../include/text.php:1090 -msgid "bitter" -msgstr "amaro" +#: ../../addon/tour/tour.php:104 +msgid "Adjust from which channels posts should be displayed." +msgstr "" -#: ../../include/text.php:1091 -msgid "cheerful" -msgstr "allegro" +#: ../../addon/tour/tour.php:105 +msgid "Only show posts from channels in the specified privacy group." +msgstr "" -#: ../../include/text.php:1092 -msgid "alive" -msgstr "vivace" +#: ../../addon/tour/tour.php:109 +msgid "Easily find posts containing tags (keywords preceded by the \"#\" symbol)." +msgstr "" -#: ../../include/text.php:1093 -msgid "annoyed" -msgstr "seccato" +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts in given category." +msgstr "" + +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts by date." +msgstr "" + +#: ../../addon/tour/tour.php:112 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we" +" think you might find interesting." +msgstr "" + +#: ../../addon/tour/tour.php:113 +msgid "Here you see channels you have connected to." +msgstr "" + +#: ../../addon/tour/tour.php:114 +msgid "Save your search so you can repeat it at a later date." +msgstr "" + +#: ../../addon/tour/tour.php:117 +msgid "" +"If you see this icon you can be sure that the sender is who it say it is. It" +" is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." +msgstr "" + +#: ../../addon/tour/tour.php:118 +msgid "" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" +msgstr "" -#: ../../include/text.php:1094 -msgid "anxious" -msgstr "ansioso" +#: ../../addon/tour/tour.php:125 +msgid "" +"Welcome to Hubzilla! Would you like to see a tour of the UI?

You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.

You can also advance by pressing the " +"return key" +msgstr "Benvenuto su Hubzilla! Vorresti vedere una panoramica sulla UI?

Puoi metterla in pausa in qualsiasi momento e continuare da dove hai interrorro ricaricando la pagina, o spostandoti su un'altra pagina.

Puoi anche andare avanti premendo il tasto invio" -#: ../../include/text.php:1095 -msgid "cranky" -msgstr "irritabile" +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" +msgstr "" -#: ../../include/text.php:1096 -msgid "disturbed" -msgstr "turbato" +#: ../../addon/sendzid/sendzid.php:26 +msgid "" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with $Projectname sites." +msgstr "" -#: ../../include/text.php:1097 -msgid "frustrated" -msgstr "frustrato" +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" +msgstr "" -#: ../../include/text.php:1098 -msgid "depressed" -msgstr "in depressione" +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" +msgstr "" -#: ../../include/text.php:1099 -msgid "motivated" -msgstr "motivato" +#: ../../addon/tictac/tictac.php:59 +msgid "New game" +msgstr "" -#: ../../include/text.php:1100 -msgid "relaxed" -msgstr "rilassato" +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" +msgstr "" -#: ../../include/text.php:1101 -msgid "surprised" -msgstr "sorpreso" +#: ../../addon/tictac/tictac.php:61 +msgid "" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " +msgstr "" -#: ../../include/text.php:1285 ../../include/js_strings.php:70 -msgid "Monday" -msgstr "lunedì" +#: ../../addon/tictac/tictac.php:62 +msgid "" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." +msgstr "" -#: ../../include/text.php:1285 ../../include/js_strings.php:71 -msgid "Tuesday" -msgstr "martedì" +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." +msgstr "" -#: ../../include/text.php:1285 ../../include/js_strings.php:72 -msgid "Wednesday" -msgstr "mercoledì" +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." +msgstr "" -#: ../../include/text.php:1285 ../../include/js_strings.php:73 -msgid "Thursday" -msgstr "giovedì" +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." +msgstr "" -#: ../../include/text.php:1285 ../../include/js_strings.php:74 -msgid "Friday" -msgstr "venerdì" +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" +msgstr "" -#: ../../include/text.php:1285 ../../include/js_strings.php:75 -msgid "Saturday" -msgstr "sabato" +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" +msgstr "" -#: ../../include/text.php:1285 ../../include/js_strings.php:69 -msgid "Sunday" -msgstr "domenica" +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:45 -msgid "January" -msgstr "gennaio" +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:46 -msgid "February" -msgstr "febbraio" +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:47 -msgid "March" -msgstr "marzo" +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:48 -msgid "April" -msgstr "aprile" +#: ../../addon/authchoose/authchoose.php:67 +msgid "Only authenticate automatically to sites of your friends" +msgstr "" -#: ../../include/text.php:1289 -msgid "May" -msgstr "Mag" +#: ../../addon/authchoose/authchoose.php:67 +msgid "By default you are automatically authenticated anywhere in the network" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:50 -msgid "June" -msgstr "giugno" +#: ../../addon/authchoose/authchoose.php:71 +msgid "Authchoose Settings" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:51 -msgid "July" -msgstr "luglio" +#: ../../addon/authchoose/authchoose.php:85 +msgid "Atuhchoose Settings updated." +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:52 -msgid "August" -msgstr "agosto" +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:53 -msgid "September" -msgstr "settembre" +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:54 -msgid "October" -msgstr "ottobre" +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:55 -msgid "November" -msgstr "novembre" +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" +msgstr "" -#: ../../include/text.php:1289 ../../include/js_strings.php:56 -msgid "December" -msgstr "dicembre" +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" +msgstr "" -#: ../../include/text.php:1366 ../../include/text.php:1370 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" +msgstr "" -#: ../../include/text.php:1372 -msgid "unknown" -msgstr "sconosciuta" +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" +msgstr "" -#: ../../include/text.php:1408 -msgid "remove category" -msgstr "rimuovi la categoria" +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" +msgstr "" -#: ../../include/text.php:1485 -msgid "remove from file" -msgstr "rimuovi dal file" +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" +msgstr "" -#: ../../include/text.php:1784 ../../include/text.php:1855 -msgid "default" -msgstr "predefinito" +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" +msgstr "" -#: ../../include/text.php:1792 -msgid "Page layout" -msgstr "Layout della pagina" +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" +msgstr "" -#: ../../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" +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" +msgstr "" -#: ../../include/text.php:1834 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" +msgstr "" -#: ../../include/text.php:1867 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" +msgstr "" -#: ../../include/text.php:2004 -msgid "activity" -msgstr "l'attività" +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" +msgstr "" -#: ../../include/text.php:2305 -msgid "Design Tools" -msgstr "Strumenti di design" +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" +msgstr "" -#: ../../include/text.php:2311 -msgid "Pages" -msgstr "Pagine" +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" +msgstr "" -#: ../../include/text.php:2333 -msgid "Import website..." -msgstr "Importazione sito web..." +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" +msgstr "" -#: ../../include/text.php:2334 -msgid "Select folder to import" -msgstr "Scegli la cartella da importare" +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" +msgstr "" -#: ../../include/text.php:2335 -msgid "Import from a zipped folder:" -msgstr "Importa da un file zip:" +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" +msgstr "" -#: ../../include/text.php:2336 -msgid "Import from cloud files:" -msgstr "Importa da un file su cloud:" +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" +msgstr "" -#: ../../include/text.php:2337 -msgid "/cloud/channel/path/to/folder" -msgstr "/cloud/channel/posizione/della/cartella" +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" +msgstr "" -#: ../../include/text.php:2338 -msgid "Enter path to website files" -msgstr "Inserisci la posizione dei file del sito web" +#: ../../addon/xmpp/xmpp.php:31 +msgid "XMPP settings updated." +msgstr "" -#: ../../include/text.php:2339 -msgid "Select folder" -msgstr "Scegli la cartella" +#: ../../addon/xmpp/xmpp.php:53 +msgid "Enable Chat" +msgstr "" -#: ../../include/text.php:2340 -msgid "Export website..." -msgstr "Esporta il sito web..." +#: ../../addon/xmpp/xmpp.php:58 +msgid "Individual credentials" +msgstr "" -#: ../../include/text.php:2341 -msgid "Export to a zip file" -msgstr "Esporta come file zip" +#: ../../addon/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" +msgstr "" -#: ../../include/text.php:2342 -msgid "website.zip" -msgstr "sitoweb.zip" +#: ../../addon/xmpp/xmpp.php:69 +msgid "XMPP Settings" +msgstr "" -#: ../../include/text.php:2343 -msgid "Enter a name for the zip file." -msgstr "Scegli il nome del file zip." +#: ../../addon/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" +msgstr "" -#: ../../include/text.php:2344 -msgid "Export to cloud files" -msgstr "Esporta nell'archivio cloud" +#: ../../addon/xmpp/xmpp.php:93 +msgid "Use central userbase" +msgstr "" -#: ../../include/text.php:2345 -msgid "/path/to/export/folder" -msgstr "/percorso/alla/cartella" +#: ../../addon/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." +msgstr "" -#: ../../include/text.php:2346 -msgid "Enter a path to a cloud files destination." -msgstr "Scegli la posizione su una cartella cloud." +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" +msgstr "Chi mi ha messo un mi piace?" -#: ../../include/text.php:2347 -msgid "Specify folder" -msgstr "Scegli la cartella" +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." +msgstr "" -#: ../../include/zot.php:700 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" +msgstr "" -#: ../../include/zot.php:716 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" +msgstr "" -#: ../../include/zot.php:2329 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" +msgstr "" -#: ../../include/zot.php:3713 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" +msgstr "" -#: ../../include/account.php:35 -msgid "Not a valid email address" -msgstr "Email non valida" +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" +msgstr "" -#: ../../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" +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" +msgstr "" -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." -msgstr "La tua email è già registrata su questo sito." +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" +msgstr "" -#: ../../include/account.php:75 -msgid "An invitation is required." -msgstr "È necessario un invito." +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" +msgstr "" -#: ../../include/account.php:79 -msgid "Invitation could not be verified." -msgstr "L'invito non può essere verificato." +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" +msgstr "" -#: ../../include/account.php:130 -msgid "Please enter the required information." -msgstr "Inserisci le informazioni richieste." +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" +msgstr "" -#: ../../include/account.php:198 -msgid "Failed to store account information." -msgstr "Non è stato possibile salvare le informazioni del tuo account." +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" +msgstr "" -#: ../../include/account.php:258 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registrazione di %s confermata" +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" +msgstr "" -#: ../../include/account.php:324 -#, php-format -msgid "Registration request at %s" -msgstr "Richiesta di registrazione su %s" +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" +msgstr "" -#: ../../include/account.php:326 ../../include/account.php:353 -#: ../../include/account.php:413 ../../include/network.php:1937 -msgid "Administrator" -msgstr "Amministratore" +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." +msgstr "" -#: ../../include/account.php:348 -msgid "your registration password" -msgstr "la password di registrazione" +#: ../../addon/ldapauth/ldapauth.php:61 +msgid "An account has been created for you." +msgstr "" -#: ../../include/account.php:351 ../../include/account.php:411 +#: ../../addon/ldapauth/ldapauth.php:68 +msgid "Authentication successful but rejected: account creation is disabled." +msgstr "" + +#: ../../addon/opensearch/opensearch.php:26 #, php-format -msgid "Registration details for %s" -msgstr "Dettagli della registrazione di %s" +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" +msgstr "Cerca %1$s (%2$s)" -#: ../../include/account.php:423 -msgid "Account approved." -msgstr "Account approvato." +#: ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" +msgstr "$Projectname" -#: ../../include/account.php:463 -#, php-format -msgid "Registration revoked for %s" -msgstr "Registrazione revocata per %s" +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" +msgstr "" -#: ../../include/account.php:748 ../../include/account.php:750 -msgid "Click here to upgrade." -msgstr "Clicca qui per aggiornare." +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" +msgstr "" -#: ../../include/account.php:756 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Questa operazione supera i limiti del tuo abbonamento." +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." +msgstr "" -#: ../../include/account.php:761 -msgid "This action is not available under your subscription plan." -msgstr "Questa operazione non è prevista dal tuo abbonamento." +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" +msgstr "" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Devi scegliere un destinatario." +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" +msgstr "" -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[nessun titolo]" +#: ../../addon/hubwall/hubwall.php:73 +#, php-format +msgid "%1$d of %2$d messages sent." +msgstr "" -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Impossibile determinare il mittente." +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "" + +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" +msgstr "" -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Non è stato possibile verificare il post." +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" +msgstr "" #: ../../include/selectors.php:30 msgid "Frequently" @@ -8062,14 +11595,6 @@ msgstr "Ogni settimana" 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" @@ -8102,11 +11627,11 @@ msgstr "Transessuale" msgid "Hermaphrodite" msgstr "Ermafrodito" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:49 ../../include/channel.php:1485 msgid "Neuter" msgstr "Neutro" -#: ../../include/selectors.php:49 +#: ../../include/selectors.php:49 ../../include/channel.php:1487 msgid "Non-specific" msgstr "Non specificato" @@ -8226,525 +11751,843 @@ msgstr "Con matrimonio immaginario" msgid "Partners" msgstr "Partner" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "Convivente" +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Cohabiting" +msgstr "Convivente" + +#: ../../include/selectors.php:123 +msgid "Common law" +msgstr "Matrimonio regolare" + +#: ../../include/selectors.php:123 +msgid "Happy" +msgstr "Felice" + +#: ../../include/selectors.php:123 +msgid "Not looking" +msgstr "Non in cerca" + +#: ../../include/selectors.php:123 +msgid "Swinger" +msgstr "Scambista" + +#: ../../include/selectors.php:123 +msgid "Betrayed" +msgstr "Tradito/a" + +#: ../../include/selectors.php:123 ../../include/selectors.php:140 +msgid "Separated" +msgstr "Separato/a" + +#: ../../include/selectors.php:123 +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/conversation.php:169 +#, php-format +msgid "likes %1$s's %2$s" +msgstr "ha messo mi piace al %2$s di %1$s" + +#: ../../include/conversation.php:172 +#, php-format +msgid "doesn't like %1$s's %2$s" +msgstr "ha messo non mi piace al %2$s di %1$s" + +#: ../../include/conversation.php:212 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" + +#: ../../include/conversation.php:247 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" + +#: ../../include/conversation.php:251 ../../include/text.php:1129 +#: ../../include/text.php:1133 +msgid "poked" +msgstr "ha mandato un poke" + +#: ../../include/conversation.php:736 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: ../../include/conversation.php:756 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../include/conversation.php:757 +msgid "Filed under:" +msgstr "Classificato come:" + +#: ../../include/conversation.php:783 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../include/conversation.php:884 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:888 +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: ../../include/conversation.php:889 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" + +#: ../../include/conversation.php:932 +msgid "View Source" +msgstr "Vedi il sorgente" + +#: ../../include/conversation.php:942 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:951 +msgid "Unfollow Thread" +msgstr "Non seguire la discussione" + +#: ../../include/conversation.php:1042 +msgid "Activity/Posts" +msgstr "Attività e Post" + +#: ../../include/conversation.php:1062 +msgid "Edit Connection" +msgstr "Modifica il contatto" + +#: ../../include/conversation.php:1072 +msgid "Message" +msgstr "Messaggio" + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1206 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1210 +#, 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:1212 +#, 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:1218 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:1221 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" + +#: ../../include/conversation.php:1222 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1222 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1265 +msgid "Set your location" +msgstr "La tua località" + +#: ../../include/conversation.php:1266 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" + +#: ../../include/conversation.php:1314 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1315 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1320 +msgid "Choose a different album..." +msgstr "Scegli un altro album..." + +#: ../../include/conversation.php:1324 +msgid "Comments enabled" +msgstr "Commenti abilitati" + +#: ../../include/conversation.php:1325 +msgid "Comments disabled" +msgstr "Commenti disabilitati" + +#: ../../include/conversation.php:1372 +msgid "Page link name" +msgstr "Nome del link alla pagina" + +#: ../../include/conversation.php:1375 +msgid "Post as" +msgstr "Pubblica come " + +#: ../../include/conversation.php:1389 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" + +#: ../../include/conversation.php:1392 +msgid "Disable comments" +msgstr "Disabilita i commenti" + +#: ../../include/conversation.php:1393 +msgid "Toggle comments" +msgstr "Abilita/disabilita i commenti" + +#: ../../include/conversation.php:1401 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../include/conversation.php:1424 +msgid "Other networks and post services" +msgstr "Invio ad altre reti o a siti esterni" + +#: ../../include/conversation.php:1430 +msgid "Set publish date" +msgstr "Data di uscita programmata" + +#: ../../include/conversation.php:1690 +msgid "Commented Order" +msgstr "Commenti recenti" + +#: ../../include/conversation.php:1693 +msgid "Sort by Comment Date" +msgstr "Per data del commento" + +#: ../../include/conversation.php:1697 +msgid "Posted Order" +msgstr "Post recenti" + +#: ../../include/conversation.php:1700 +msgid "Sort by Post Date" +msgstr "Per data di creazione" + +#: ../../include/conversation.php:1708 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" + +#: ../../include/conversation.php:1717 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" + +#: ../../include/conversation.php:1723 +msgid "Starred" +msgstr "Preferiti" + +#: ../../include/conversation.php:1726 +msgid "Favourite Posts" +msgstr "Post preferiti" + +#: ../../include/conversation.php:1733 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1736 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" + +#: ../../include/conversation.php:1811 ../../include/nav.php:381 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" + +#: ../../include/conversation.php:1824 ../../include/nav.php:394 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../include/conversation.php:1834 ../../include/nav.php:404 +#: ../../include/photos.php:655 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/conversation.php:1842 ../../include/nav.php:412 +msgid "Files and Storage" +msgstr "Archivio file" + +#: ../../include/conversation.php:1879 ../../include/nav.php:447 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/conversation.php:1882 ../../include/nav.php:450 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" + +#: ../../include/conversation.php:1893 ../../include/nav.php:461 +msgid "View Cards" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "Matrimonio regolare" +#: ../../include/conversation.php:1901 +msgid "articles" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Happy" -msgstr "Felice" +#: ../../include/conversation.php:1904 ../../include/nav.php:472 +msgid "View Articles" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Not looking" -msgstr "Non in cerca" +#: ../../include/conversation.php:1915 ../../include/nav.php:484 +msgid "View Webpages" +msgstr "" -#: ../../include/selectors.php:123 -msgid "Swinger" -msgstr "Scambista" +#: ../../include/conversation.php:1984 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" -#: ../../include/selectors.php:123 -msgid "Betrayed" -msgstr "Tradito/a" +#: ../../include/conversation.php:1987 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" -msgstr "Separato/a" +#: ../../include/conversation.php:1990 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" -#: ../../include/selectors.php:123 -msgid "Unstable" -msgstr "Instabile" +#: ../../include/conversation.php:1993 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" -msgstr "Divorziato/a" +#: ../../include/conversation.php:1996 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" -msgstr "Sogna il divorzio" +#: ../../include/conversation.php:1999 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" -msgstr "Vedovo/a" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" +msgstr "Visibilità negli elenchi pubblici" -#: ../../include/selectors.php:123 -msgid "Uncertain" -msgstr "Incerto/a" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" +msgstr "Modalità SafeSearch" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" -msgstr "Relazione complicata" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" +msgstr "Solo forum pubblici" -#: ../../include/selectors.php:123 -msgid "Don't care" -msgstr "Chi se ne frega" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" +msgstr "Solo in questo sito" -#: ../../include/selectors.php:123 -msgid "Ask me" -msgstr "Chiedimelo" +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" +msgstr "I segnalibri di %1$s" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "Impossibile ottenere le informazioni di identificazione dal database" +#: ../../include/import.php:41 +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:67 -msgid "Empty name" -msgstr "Nome vuoto" +#: ../../include/import.php:106 +msgid "Cloned channel not found. Import failed." +msgstr "Impossibile trovare il canale clonato. L'importazione è fallita." -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "Nome troppo lungo" +#: ../../include/text.php:492 +msgid "prev" +msgstr "prec" -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "Account senza identificativo" +#: ../../include/text.php:494 +msgid "first" +msgstr "inizio" -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "Il nome dell'account è obbligatorio." +#: ../../include/text.php:523 +msgid "last" +msgstr "fine" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "Nome utente riservato. Per favore scegline un altro." +#: ../../include/text.php:526 +msgid "next" +msgstr "succ" -#: ../../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:537 +msgid "older" +msgstr "più recenti" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "Impossibile caricare l'identità creata" +#: ../../include/text.php:539 +msgid "newer" +msgstr "più nuovi" -#: ../../include/channel.php:341 -msgid "Default Profile" -msgstr "Profilo predefinito" +#: ../../include/text.php:961 +msgid "No connections" +msgstr "Nessun contatto" -#: ../../include/channel.php:813 -msgid "Requested channel is not available." -msgstr "Il canale che cerchi non è disponibile." +#: ../../include/text.php:993 +#, php-format +msgid "View all %s connections" +msgstr "Mostra tutti i %s contatti" -#: ../../include/channel.php:960 -msgid "Create New Profile" -msgstr "Crea un nuovo profilo" +#: ../../include/text.php:1129 ../../include/text.php:1133 +msgid "poke" +msgstr "poke" -#: ../../include/channel.php:963 ../../include/nav.php:93 -msgid "Edit Profile" -msgstr "Modifica il profilo" +#: ../../include/text.php:1134 +msgid "ping" +msgstr "ping" -#: ../../include/channel.php:980 -msgid "Visible to everybody" -msgstr "Visibile a tutti" +#: ../../include/text.php:1134 +msgid "pinged" +msgstr "ha effettuato un ping" -#: ../../include/channel.php:1053 ../../include/channel.php:1166 -msgid "Gender:" -msgstr "Sesso:" +#: ../../include/text.php:1135 +msgid "prod" +msgstr "spintone" -#: ../../include/channel.php:1054 ../../include/channel.php:1210 -msgid "Status:" -msgstr "Stato:" +#: ../../include/text.php:1135 +msgid "prodded" +msgstr "ha ricevuto uno spintone" -#: ../../include/channel.php:1055 ../../include/channel.php:1221 -msgid "Homepage:" -msgstr "Home page:" +#: ../../include/text.php:1136 +msgid "slap" +msgstr "schiaffo" -#: ../../include/channel.php:1056 -msgid "Online Now" -msgstr "Online adesso" +#: ../../include/text.php:1136 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" -#: ../../include/channel.php:1171 -msgid "Like this channel" -msgstr "Mi piace questo canale" +#: ../../include/text.php:1137 +msgid "finger" +msgstr "finger" -#: ../../include/channel.php:1195 -msgid "j F, Y" -msgstr "j F Y" +#: ../../include/text.php:1137 +msgid "fingered" +msgstr "ha ricevuto un finger" -#: ../../include/channel.php:1196 -msgid "j F" -msgstr "j F" +#: ../../include/text.php:1138 +msgid "rebuff" +msgstr "rifiuto" -#: ../../include/channel.php:1203 -msgid "Birthday:" -msgstr "Compleanno:" +#: ../../include/text.php:1138 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" -#: ../../include/channel.php:1216 -#, php-format -msgid "for %1$d %2$s" -msgstr "per %1$d %2$s" +#: ../../include/text.php:1161 +msgid "happy" +msgstr "felice" -#: ../../include/channel.php:1219 -msgid "Sexual Preference:" -msgstr "Preferenze sessuali:" +#: ../../include/text.php:1162 +msgid "sad" +msgstr "triste" -#: ../../include/channel.php:1225 -msgid "Tags:" -msgstr "Tag:" +#: ../../include/text.php:1163 +msgid "mellow" +msgstr "calmo" -#: ../../include/channel.php:1227 -msgid "Political Views:" -msgstr "Orientamento politico:" +#: ../../include/text.php:1164 +msgid "tired" +msgstr "stanco" -#: ../../include/channel.php:1229 -msgid "Religion:" -msgstr "Religione:" +#: ../../include/text.php:1165 +msgid "perky" +msgstr "vivace" -#: ../../include/channel.php:1233 -msgid "Hobbies/Interests:" -msgstr "Interessi e hobby:" +#: ../../include/text.php:1166 +msgid "angry" +msgstr "arrabbiato" -#: ../../include/channel.php:1235 -msgid "Likes:" -msgstr "Mi piace:" +#: ../../include/text.php:1167 +msgid "stupefied" +msgstr "stupito" -#: ../../include/channel.php:1237 -msgid "Dislikes:" -msgstr "Non mi piace:" +#: ../../include/text.php:1168 +msgid "puzzled" +msgstr "confuso" -#: ../../include/channel.php:1239 -msgid "Contact information and Social Networks:" -msgstr "Contatti e social network:" +#: ../../include/text.php:1169 +msgid "interested" +msgstr "attento" -#: ../../include/channel.php:1241 -msgid "My other channels:" -msgstr "I miei altri canali:" +#: ../../include/text.php:1170 +msgid "bitter" +msgstr "amaro" -#: ../../include/channel.php:1243 -msgid "Musical interests:" -msgstr "Gusti musicali:" +#: ../../include/text.php:1171 +msgid "cheerful" +msgstr "allegro" -#: ../../include/channel.php:1245 -msgid "Books, literature:" -msgstr "Libri, letteratura:" +#: ../../include/text.php:1172 +msgid "alive" +msgstr "vivace" -#: ../../include/channel.php:1247 -msgid "Television:" -msgstr "Televisione:" +#: ../../include/text.php:1173 +msgid "annoyed" +msgstr "seccato" -#: ../../include/channel.php:1249 -msgid "Film/dance/culture/entertainment:" -msgstr "Film, danza, cultura, intrattenimento:" +#: ../../include/text.php:1174 +msgid "anxious" +msgstr "ansioso" -#: ../../include/channel.php:1251 -msgid "Love/Romance:" -msgstr "Amore:" +#: ../../include/text.php:1175 +msgid "cranky" +msgstr "irritabile" -#: ../../include/channel.php:1253 -msgid "Work/employment:" -msgstr "Lavoro:" +#: ../../include/text.php:1176 +msgid "disturbed" +msgstr "turbato" -#: ../../include/channel.php:1255 -msgid "School/education:" -msgstr "Scuola:" +#: ../../include/text.php:1177 +msgid "frustrated" +msgstr "frustrato" -#: ../../include/channel.php:1276 -msgid "Like this thing" -msgstr "Mi piace" +#: ../../include/text.php:1178 +msgid "depressed" +msgstr "in depressione" -#: ../../include/acl_selectors.php:169 -msgid "Who can see this?" -msgstr "Chi può vederlo?" +#: ../../include/text.php:1179 +msgid "motivated" +msgstr "motivato" -#: ../../include/acl_selectors.php:170 -msgid "Custom selection" -msgstr "Selezione personalizzata" +#: ../../include/text.php:1180 +msgid "relaxed" +msgstr "rilassato" -#: ../../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:1181 +msgid "surprised" +msgstr "sorpreso" -#: ../../include/acl_selectors.php:172 -msgid "Show" -msgstr "Mostra" +#: ../../include/text.php:1360 ../../include/js_strings.php:76 +msgid "Monday" +msgstr "lunedì" -#: ../../include/acl_selectors.php:173 -msgid "Don't show" -msgstr "Non mostrare" +#: ../../include/text.php:1360 ../../include/js_strings.php:77 +msgid "Tuesday" +msgstr "martedì" -#: ../../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:1360 ../../include/js_strings.php:78 +msgid "Wednesday" +msgstr "mercoledì" -#: ../../include/bookmarks.php:35 -#, php-format -msgid "%1$s's bookmarks" -msgstr "I segnalibri di %1$s" +#: ../../include/text.php:1360 ../../include/js_strings.php:79 +msgid "Thursday" +msgstr "giovedì" -#: ../../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:1360 ../../include/js_strings.php:80 +msgid "Friday" +msgstr "venerdì" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Aggiungi nuovi contatti a questo gruppo di canali" +#: ../../include/text.php:1360 ../../include/js_strings.php:81 +msgid "Saturday" +msgstr "sabato" -#: ../../include/group.php:289 -msgid "edit" -msgstr "modifica" +#: ../../include/text.php:1360 ../../include/js_strings.php:75 +msgid "Sunday" +msgstr "domenica" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Modifica il gruppo" +#: ../../include/text.php:1364 ../../include/js_strings.php:51 +msgid "January" +msgstr "gennaio" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Crea un gruppo di canali" +#: ../../include/text.php:1364 ../../include/js_strings.php:52 +msgid "February" +msgstr "febbraio" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Canali che non sono in nessun gruppo" +#: ../../include/text.php:1364 ../../include/js_strings.php:53 +msgid "March" +msgstr "marzo" -#: ../../include/group.php:316 ../../include/widgets.php:284 -msgid "add" -msgstr "aggiungi" +#: ../../include/text.php:1364 ../../include/js_strings.php:54 +msgid "April" +msgstr "aprile" -#: ../../include/connections.php:95 -msgid "New window" -msgstr "Nuova finestra" +#: ../../include/text.php:1364 +msgid "May" +msgstr "Mag" -#: ../../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/text.php:1364 ../../include/js_strings.php:56 +msgid "June" +msgstr "giugno" -#: ../../include/connections.php:214 -#, php-format -msgid "User '%s' deleted" -msgstr "Utente '%s' eliminato" +#: ../../include/text.php:1364 ../../include/js_strings.php:57 +msgid "July" +msgstr "luglio" -#: ../../include/page_widgets.php:7 -msgid "New Page" -msgstr "Nuova pagina web" +#: ../../include/text.php:1364 ../../include/js_strings.php:58 +msgid "August" +msgstr "agosto" -#: ../../include/page_widgets.php:46 -msgid "Title" -msgstr "Titolo" +#: ../../include/text.php:1364 ../../include/js_strings.php:59 +msgid "September" +msgstr "settembre" -#: ../../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:1364 ../../include/js_strings.php:60 +msgid "October" +msgstr "ottobre" -#: ../../include/nav.php:85 ../../include/nav.php:118 ../../boot.php:1738 -msgid "Logout" -msgstr "Esci" +#: ../../include/text.php:1364 ../../include/js_strings.php:61 +msgid "November" +msgstr "novembre" -#: ../../include/nav.php:85 ../../include/nav.php:118 -msgid "End this session" -msgstr "Chiudi questa sessione" +#: ../../include/text.php:1364 ../../include/js_strings.php:62 +msgid "December" +msgstr "dicembre" -#: ../../include/nav.php:88 ../../include/nav.php:149 -msgid "Home" -msgstr "Bacheca" +#: ../../include/text.php:1428 ../../include/text.php:1432 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" -#: ../../include/nav.php:88 -msgid "Your posts and conversations" -msgstr "I tuoi post e conversazioni" +#: ../../include/text.php:1434 ../../include/feedutils.php:852 +msgid "unknown" +msgstr "sconosciuta" -#: ../../include/nav.php:89 -msgid "Your profile page" -msgstr "Il tuo profilo" +#: ../../include/text.php:1470 +msgid "remove category" +msgstr "rimuovi la categoria" -#: ../../include/nav.php:91 -msgid "Manage/Edit profiles" -msgstr "Gestisci i tuoi profili" +#: ../../include/text.php:1544 +msgid "remove from file" +msgstr "rimuovi dal file" -#: ../../include/nav.php:93 -msgid "Edit your profile" -msgstr "Modifica il tuo profilo" +#: ../../include/text.php:1686 ../../include/message.php:12 +msgid "Download binary/encrypted content" +msgstr "" -#: ../../include/nav.php:95 -msgid "Your photos" -msgstr "Le tue foto" +#: ../../include/text.php:1848 ../../include/language.php:397 +msgid "default" +msgstr "predefinito" -#: ../../include/nav.php:96 -msgid "Your files" -msgstr "I tuoi file" +#: ../../include/text.php:1856 +msgid "Page layout" +msgstr "Layout della pagina" -#: ../../include/nav.php:99 -msgid "Your chatrooms" -msgstr "Le tue chat" +#: ../../include/text.php:1856 +msgid "You can create your own with the layouts tool" +msgstr "Puoi creare un tuo layout dalla configurazione delle pagine web" -#: ../../include/nav.php:105 ../../include/conversation.php:1715 -msgid "Bookmarks" -msgstr "Segnalibri" +#: ../../include/text.php:1867 +msgid "HTML" +msgstr "" -#: ../../include/nav.php:105 -msgid "Your bookmarks" -msgstr "I tuoi segnalibri" +#: ../../include/text.php:1870 +msgid "Comanche Layout" +msgstr "" -#: ../../include/nav.php:109 -msgid "Your webpages" -msgstr "Le tue pagine web" +#: ../../include/text.php:1875 +msgid "PHP" +msgstr "" -#: ../../include/nav.php:111 -msgid "Your wiki" -msgstr "La tua wiki" +#: ../../include/text.php:1884 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" -#: ../../include/nav.php:115 -msgid "Sign in" -msgstr "Accedi" +#: ../../include/text.php:2017 +msgid "activity" +msgstr "l'attività" -#: ../../include/nav.php:132 -#, php-format -msgid "%s - click to logout" -msgstr "%s - clicca per uscire" +#: ../../include/text.php:2099 +msgid "a-z, 0-9, -, and _ only" +msgstr "" -#: ../../include/nav.php:135 -msgid "Remote authentication" -msgstr "Accedi dal tuo hub" +#: ../../include/text.php:2399 +msgid "Design Tools" +msgstr "Strumenti di design" -#: ../../include/nav.php:135 -msgid "Click to authenticate to your home hub" -msgstr "Clicca per farti riconoscere dal tuo hub principale" +#: ../../include/text.php:2405 +msgid "Pages" +msgstr "Pagine" -#: ../../include/nav.php:149 -msgid "Home Page" -msgstr "Bacheca" +#: ../../include/text.php:2427 +msgid "Import website..." +msgstr "Importazione sito web..." -#: ../../include/nav.php:152 -msgid "Create an account" -msgstr "Crea un account" +#: ../../include/text.php:2428 +msgid "Select folder to import" +msgstr "Scegli la cartella da importare" -#: ../../include/nav.php:164 -msgid "Help and documentation" -msgstr "Guida e documentazione" +#: ../../include/text.php:2429 +msgid "Import from a zipped folder:" +msgstr "Importa da un file zip:" -#: ../../include/nav.php:168 -msgid "Applications, utilities, links, games" -msgstr "Applicazioni, utilità, link, giochi" +#: ../../include/text.php:2430 +msgid "Import from cloud files:" +msgstr "Importa da un file su cloud:" -#: ../../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:2431 +msgid "/cloud/channel/path/to/folder" +msgstr "/cloud/channel/posizione/della/cartella" -#: ../../include/nav.php:172 -msgid "Channel Directory" -msgstr "Elenchi pubblici dei canali" +#: ../../include/text.php:2432 +msgid "Enter path to website files" +msgstr "Inserisci la posizione dei file del sito web" -#: ../../include/nav.php:184 -msgid "Your grid" -msgstr "La tua rete" +#: ../../include/text.php:2433 +msgid "Select folder" +msgstr "Scegli la cartella" -#: ../../include/nav.php:185 -msgid "Mark all grid notifications seen" -msgstr "Segna come lette le notifiche della tua rete" +#: ../../include/text.php:2434 +msgid "Export website..." +msgstr "Esporta il sito web..." -#: ../../include/nav.php:187 -msgid "Channel home" -msgstr "Bacheca del canale" +#: ../../include/text.php:2435 +msgid "Export to a zip file" +msgstr "Esporta come file zip" -#: ../../include/nav.php:188 -msgid "Mark all channel notifications seen" -msgstr "Segna come lette le notifiche del canale" +#: ../../include/text.php:2436 +msgid "website.zip" +msgstr "sitoweb.zip" -#: ../../include/nav.php:194 -msgid "Notices" -msgstr "Avvisi" +#: ../../include/text.php:2437 +msgid "Enter a name for the zip file." +msgstr "Scegli il nome del file zip." -#: ../../include/nav.php:194 -msgid "Notifications" -msgstr "Notifiche" +#: ../../include/text.php:2438 +msgid "Export to cloud files" +msgstr "Esporta nell'archivio cloud" -#: ../../include/nav.php:195 -msgid "See all notifications" -msgstr "Vedi tutte le notifiche" +#: ../../include/text.php:2439 +msgid "/path/to/export/folder" +msgstr "/percorso/alla/cartella" -#: ../../include/nav.php:198 -msgid "Private mail" -msgstr "Messaggi privati" +#: ../../include/text.php:2440 +msgid "Enter a path to a cloud files destination." +msgstr "Scegli la posizione su una cartella cloud." -#: ../../include/nav.php:199 -msgid "See all private messages" -msgstr "Guarda tutti i messaggi privati" +#: ../../include/text.php:2441 +msgid "Specify folder" +msgstr "Scegli la cartella" -#: ../../include/nav.php:200 -msgid "Mark all private messages seen" -msgstr "Segna come letti tutti i messaggi privati" +#: ../../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/nav.php:201 ../../include/widgets.php:700 -msgid "Inbox" -msgstr "In arrivo" +#: ../../include/contact_widgets.php:19 +msgid "Find Channels" +msgstr "Ricerca canali" -#: ../../include/nav.php:202 ../../include/widgets.php:705 -msgid "Outbox" -msgstr "Inviati" +#: ../../include/contact_widgets.php:20 +msgid "Enter name or interest" +msgstr "Scrivi un nome o un interesse" -#: ../../include/nav.php:203 ../../include/widgets.php:710 -msgid "New Message" -msgstr "Nuovo messaggio" +#: ../../include/contact_widgets.php:21 +msgid "Connect/Follow" +msgstr "Aggiungi" -#: ../../include/nav.php:206 -msgid "Event Calendar" -msgstr "Calendario" +#: ../../include/contact_widgets.php:22 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Per esempio: Mario Rossi, Pesca" -#: ../../include/nav.php:207 -msgid "See all events" -msgstr "Guarda tutti gli eventi" +#: ../../include/contact_widgets.php:26 +msgid "Random Profile" +msgstr "Profilo casuale" -#: ../../include/nav.php:208 -msgid "Mark all events seen" -msgstr "Marca come letti tutti gli eventi" +#: ../../include/contact_widgets.php:27 +msgid "Invite Friends" +msgstr "Invita amici" -#: ../../include/nav.php:211 -msgid "Manage Your Channels" -msgstr "Gestisci i tuoi canali" +#: ../../include/contact_widgets.php:29 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Per esempio: name=mario e country=italy" -#: ../../include/nav.php:213 -msgid "Account/Channel Settings" -msgstr "Impostazioni dell'account e del canale" +#: ../../include/contact_widgets.php:223 +msgid "Common Connections" +msgstr "" -#: ../../include/nav.php:221 ../../include/widgets.php:1594 -msgid "Admin" -msgstr "Amministrazione" +#: ../../include/contact_widgets.php:228 +#, php-format +msgid "View all %d common connections" +msgstr "" -#: ../../include/nav.php:221 -msgid "Site Setup and Configuration" -msgstr "Installazione e configurazione del sito" +#: ../../include/markdown.php:158 ../../include/bbcode.php:343 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s ha scritto %2$s %3$s" -#: ../../include/nav.php:252 ../../include/conversation.php:853 -msgid "Loading..." -msgstr "Caricamento in corso..." +#: ../../include/follow.php:37 +msgid "Channel is blocked on this site." +msgstr "Il canale è bloccato per questo sito." -#: ../../include/nav.php:257 -msgid "@name, #tag, ?doc, content" -msgstr "@nome, #tag, ?guida, contenuto" +#: ../../include/follow.php:42 +msgid "Channel location missing." +msgstr "Manca l'indirizzo del canale." -#: ../../include/nav.php:258 -msgid "Please wait..." -msgstr "Attendere..." +#: ../../include/follow.php:84 +msgid "Response from remote channel was incomplete." +msgstr "La risposta dal canale non è completa." -#: ../../include/bb2diaspora.php:398 -msgid "Attachments:" -msgstr "Allegati:" +#: ../../include/follow.php:101 +msgid "Channel was deleted and no longer exists." +msgstr "Il canale è stato rimosso e non esiste più." -#: ../../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:156 +msgid "Remote channel or protocol unavailable." +msgstr "" -#: ../../include/bb2diaspora.php:487 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" +#: ../../include/follow.php:179 +msgid "Channel discovery failed." +msgstr "La ricerca del canale non ha avuto successo." -#: ../../include/bb2diaspora.php:491 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" -msgstr "Inizio:" +#: ../../include/follow.php:191 +msgid "Protocol disabled." +msgstr "Protocollo disabilitato." -#: ../../include/bb2diaspora.php:499 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" -msgstr "Fine:" +#: ../../include/follow.php:202 +msgid "Cannot connect to yourself." +msgstr "Non puoi connetterti a te stesso." #: ../../include/js_strings.php:5 msgid "Delete this item?" @@ -8813,1371 +12656,1405 @@ msgstr "Inserisci l'URL di un link" 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 +#: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" msgstr "timeago.prefixAgo" -#: ../../include/js_strings.php:28 +#: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" msgstr "timeago.prefixFromNow" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "fa" +#: ../../include/js_strings.php:33 +msgid "timeago.suffixAgo" +msgstr "" -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "da adesso" +#: ../../include/js_strings.php:34 +msgid "timeago.suffixFromNow" +msgstr "" -#: ../../include/js_strings.php:31 +#: ../../include/js_strings.php:37 msgid "less than a minute" msgstr "meno di un minuto" -#: ../../include/js_strings.php:32 +#: ../../include/js_strings.php:38 msgid "about a minute" msgstr "circa un minuto" -#: ../../include/js_strings.php:33 +#: ../../include/js_strings.php:39 #, php-format msgid "%d minutes" msgstr "%d minuti" -#: ../../include/js_strings.php:34 +#: ../../include/js_strings.php:40 msgid "about an hour" msgstr "circa un’ora" -#: ../../include/js_strings.php:35 +#: ../../include/js_strings.php:41 #, php-format msgid "about %d hours" msgstr "circa %d ore" -#: ../../include/js_strings.php:36 +#: ../../include/js_strings.php:42 msgid "a day" msgstr "un giorno" -#: ../../include/js_strings.php:37 +#: ../../include/js_strings.php:43 #, php-format msgid "%d days" msgstr "%d giorni" -#: ../../include/js_strings.php:38 +#: ../../include/js_strings.php:44 msgid "about a month" msgstr "circa un mese" -#: ../../include/js_strings.php:39 +#: ../../include/js_strings.php:45 #, php-format msgid "%d months" msgstr "%d mesi" -#: ../../include/js_strings.php:40 +#: ../../include/js_strings.php:46 msgid "about a year" msgstr "circa un anno" -#: ../../include/js_strings.php:41 +#: ../../include/js_strings.php:47 #, php-format msgid "%d years" msgstr "%d anni" -#: ../../include/js_strings.php:42 +#: ../../include/js_strings.php:48 msgid " " msgstr " " -#: ../../include/js_strings.php:43 +#: ../../include/js_strings.php:49 msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:49 +#: ../../include/js_strings.php:55 msgctxt "long" msgid "May" msgstr "maggio" -#: ../../include/js_strings.php:57 +#: ../../include/js_strings.php:63 msgid "Jan" msgstr "Gen" -#: ../../include/js_strings.php:58 +#: ../../include/js_strings.php:64 msgid "Feb" msgstr "Feb" -#: ../../include/js_strings.php:59 +#: ../../include/js_strings.php:65 msgid "Mar" msgstr "Mar" -#: ../../include/js_strings.php:60 +#: ../../include/js_strings.php:66 msgid "Apr" msgstr "Apr" -#: ../../include/js_strings.php:61 +#: ../../include/js_strings.php:67 msgctxt "short" msgid "May" msgstr "maggio" -#: ../../include/js_strings.php:62 +#: ../../include/js_strings.php:68 msgid "Jun" msgstr "Mag" -#: ../../include/js_strings.php:63 +#: ../../include/js_strings.php:69 msgid "Jul" msgstr "Giu" -#: ../../include/js_strings.php:64 +#: ../../include/js_strings.php:70 msgid "Aug" msgstr "Ago" -#: ../../include/js_strings.php:65 +#: ../../include/js_strings.php:71 msgid "Sep" msgstr "Set" -#: ../../include/js_strings.php:66 +#: ../../include/js_strings.php:72 msgid "Oct" msgstr "Ott" -#: ../../include/js_strings.php:67 +#: ../../include/js_strings.php:73 msgid "Nov" msgstr "Nov" -#: ../../include/js_strings.php:68 +#: ../../include/js_strings.php:74 msgid "Dec" msgstr "Dic" -#: ../../include/js_strings.php:76 +#: ../../include/js_strings.php:82 msgid "Sun" msgstr "Dom" -#: ../../include/js_strings.php:77 +#: ../../include/js_strings.php:83 msgid "Mon" msgstr "Lun" -#: ../../include/js_strings.php:78 +#: ../../include/js_strings.php:84 msgid "Tue" msgstr "Mar" -#: ../../include/js_strings.php:79 +#: ../../include/js_strings.php:85 msgid "Wed" msgstr "Mer" -#: ../../include/js_strings.php:80 +#: ../../include/js_strings.php:86 msgid "Thu" msgstr "Gio" -#: ../../include/js_strings.php:81 +#: ../../include/js_strings.php:87 msgid "Fri" msgstr "Ven" -#: ../../include/js_strings.php:82 +#: ../../include/js_strings.php:88 msgid "Sat" msgstr "Sab" -#: ../../include/js_strings.php:83 +#: ../../include/js_strings.php:89 msgctxt "calendar" msgid "today" msgstr "oggi" -#: ../../include/js_strings.php:84 +#: ../../include/js_strings.php:90 msgctxt "calendar" msgid "month" msgstr "mese" -#: ../../include/js_strings.php:85 +#: ../../include/js_strings.php:91 msgctxt "calendar" msgid "week" msgstr "settimana" -#: ../../include/js_strings.php:86 +#: ../../include/js_strings.php:92 msgctxt "calendar" msgid "day" msgstr "giorno" -#: ../../include/js_strings.php:87 +#: ../../include/js_strings.php:93 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/message.php:40 +msgid "Unable to determine sender." +msgstr "Impossibile determinare il mittente." -#: ../../include/follow.php:147 ../../include/follow.php:183 -msgid "Protocol disabled." -msgstr "Protocollo disabilitato." +#: ../../include/message.php:79 +msgid "No recipient provided." +msgstr "Devi scegliere un destinatario." -#: ../../include/follow.php:171 -msgid "Channel discovery failed." -msgstr "La ricerca del canale non ha avuto successo." +#: ../../include/message.php:84 +msgid "[no subject]" +msgstr "[nessun titolo]" -#: ../../include/follow.php:210 -msgid "Cannot connect to yourself." -msgstr "Non puoi connetterti a te stesso." +#: ../../include/message.php:214 +msgid "Stored post could not be verified." +msgstr "Non è stato possibile verificare il post." -#: ../../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:41 +msgid " and " +msgstr "e" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:931 -msgid "Encrypted content" -msgstr "Contenuto cifrato" +#: ../../include/activities.php:49 +msgid "public profile" +msgstr "profilo pubblico" -#: ../../include/bbcode.php:178 +#: ../../include/activities.php:58 #, php-format -msgid "Install %s element: " -msgstr "Installa l'elemento %s:" +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiato %2$s in “%3$s”" -#: ../../include/bbcode.php:182 +#: ../../include/activities.php:59 #, 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." +msgid "Visit %1$s's %2$s" +msgstr "Guarda %2$s di %1$s " -#: ../../include/bbcode.php:261 +#: ../../include/activities.php:62 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s ha scritto %2$s %3$s" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/bbcode.php:338 ../../include/bbcode.php:346 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" +#: ../../include/attach.php:265 ../../include/attach.php:361 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../include/bbcode.php:346 -msgid "spoiler" -msgstr "spoiler" +#: ../../include/attach.php:554 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/bbcode.php:869 -msgid "$1 wrote:" -msgstr "$1 ha scritto:" +#: ../../include/attach.php:576 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" +#: ../../include/attach.php:595 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/conversation.php:239 +#: ../../include/attach.php:737 #, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/conversation.php:694 +#: ../../include/attach.php:758 #, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:713 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../include/conversation.php:714 -msgid "Filed under:" -msgstr "Classificato come:" - -#: ../../include/conversation.php:739 -msgid "View in context" -msgstr "Vedi nel contesto" +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:849 -msgid "remove" -msgstr "rimuovi" +#: ../../include/attach.php:940 +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:854 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" +#: ../../include/attach.php:959 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/conversation.php:947 -msgid "View Source" -msgstr "Vedi il sorgente" +#: ../../include/attach.php:1033 ../../include/attach.php:1049 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/conversation.php:948 -msgid "Follow Thread" -msgstr "Segui la discussione" +#: ../../include/attach.php:1098 ../../include/attach.php:1263 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/conversation.php:949 -msgid "Unfollow Thread" -msgstr "Non seguire la discussione" +#: ../../include/attach.php:1124 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" -#: ../../include/conversation.php:954 -msgid "Activity/Posts" -msgstr "Attività e Post" +#: ../../include/attach.php:1149 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/conversation.php:956 -msgid "Edit Connection" -msgstr "Modifica il contatto" +#: ../../include/attach.php:1217 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/conversation.php:957 -msgid "Message" -msgstr "Messaggio" +#: ../../include/attach.php:1221 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." +#: ../../include/attach.php:1269 +msgid "Empty path" +msgstr "La posizione è vuota" -#: ../../include/conversation.php:1077 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." +#: ../../include/security.php:532 +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/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/items.php:885 ../../include/items.php:945 +msgid "(Unknown)" +msgstr "(Sconosciuto)" -#: ../../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/items.php:1129 +msgid "Visible to anybody on the internet." +msgstr "Visibile a chiunque su internet." -#: ../../include/conversation.php:1089 -msgid "and" -msgstr "e" +#: ../../include/items.php:1131 +msgid "Visible to you only." +msgstr "Visibile solo a te." -#: ../../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/items.php:1133 +msgid "Visible to anybody in this network." +msgstr "Visibile a tutti su questa rete." -#: ../../include/conversation.php:1093 -#, php-format -msgid "%s like this." -msgstr "Piace a %s." +#: ../../include/items.php:1135 +msgid "Visible to anybody authenticated." +msgstr "Visibile a chiunque sia autenticato." -#: ../../include/conversation.php:1093 +#: ../../include/items.php:1137 #, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1136 -msgid "Set your location" -msgstr "La tua località" - -#: ../../include/conversation.php:1137 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" - -#: ../../include/conversation.php:1185 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1186 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1195 -msgid "Comments enabled" -msgstr "Commenti abilitati" - -#: ../../include/conversation.php:1196 -msgid "Comments disabled" -msgstr "Commenti disabilitati" - -#: ../../include/conversation.php:1234 -msgid "Page link name" -msgstr "Nome del link alla pagina" - -#: ../../include/conversation.php:1237 -msgid "Post as" -msgstr "Pubblica come " - -#: ../../include/conversation.php:1251 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" +msgid "Visible to anybody on %s." +msgstr "Visibile a tutti su %s." -#: ../../include/conversation.php:1254 -msgid "Disable comments" -msgstr "Disabilita i commenti" +#: ../../include/items.php:1139 +msgid "Visible to all connections." +msgstr "Visibile a tutti coloro che ti seguono." -#: ../../include/conversation.php:1255 -msgid "Toggle comments" -msgstr "Abilita/disabilita i commenti" +#: ../../include/items.php:1141 +msgid "Visible to approved connections." +msgstr "Visibile ai contatti approvati." -#: ../../include/conversation.php:1263 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" +#: ../../include/items.php:1143 +msgid "Visible to specific connections." +msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/conversation.php:1286 -msgid "Other networks and post services" -msgstr "Invio ad altre reti o a siti esterni" +#: ../../include/items.php:4147 +msgid "Privacy group is empty." +msgstr "Gruppo di canali vuoto." -#: ../../include/conversation.php:1292 -msgid "Set publish date" -msgstr "Data di uscita programmata" +#: ../../include/items.php:4154 +#, php-format +msgid "Privacy group: %s" +msgstr "Gruppo di canali: %s" -#: ../../include/conversation.php:1541 -msgid "Discover" -msgstr "Scopri" +#: ../../include/items.php:4166 +msgid "Connection not found." +msgstr "Contatto non trovato." -#: ../../include/conversation.php:1544 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" +#: ../../include/items.php:4515 +msgid "profile photo" +msgstr "foto del profilo" -#: ../../include/conversation.php:1549 -msgid "Commented Order" -msgstr "Commenti recenti" +#: ../../include/items.php:4706 +#, php-format +msgid "[Edited %s]" +msgstr "" -#: ../../include/conversation.php:1552 -msgid "Sort by Comment Date" -msgstr "Per data del commento" +#: ../../include/items.php:4706 +msgctxt "edit_activity" +msgid "Post" +msgstr "" -#: ../../include/conversation.php:1556 -msgid "Posted Order" -msgstr "Post recenti" +#: ../../include/items.php:4706 +msgctxt "edit_activity" +msgid "Comment" +msgstr "" -#: ../../include/conversation.php:1559 -msgid "Sort by Post Date" -msgstr "Per data di creazione" +#: ../../include/channel.php:35 +msgid "Unable to obtain identity information from database" +msgstr "Impossibile ottenere le informazioni di identificazione dal database" -#: ../../include/conversation.php:1567 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" +#: ../../include/channel.php:68 +msgid "Empty name" +msgstr "Nome vuoto" -#: ../../include/conversation.php:1576 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" +#: ../../include/channel.php:71 +msgid "Name too long" +msgstr "Nome troppo lungo" -#: ../../include/conversation.php:1582 -msgid "Starred" -msgstr "Preferiti" +#: ../../include/channel.php:188 +msgid "No account identifier" +msgstr "Account senza identificativo" -#: ../../include/conversation.php:1585 -msgid "Favourite Posts" -msgstr "Post preferiti" +#: ../../include/channel.php:200 +msgid "Nickname is required." +msgstr "Il nome dell'account è obbligatorio." -#: ../../include/conversation.php:1592 -msgid "Spam" -msgstr "Spam" +#: ../../include/channel.php:277 +msgid "Unable to retrieve created identity" +msgstr "Impossibile caricare l'identità creata" -#: ../../include/conversation.php:1595 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" +#: ../../include/channel.php:373 +msgid "Default Profile" +msgstr "Profilo predefinito" -#: ../../include/conversation.php:1654 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" +#: ../../include/channel.php:532 ../../include/channel.php:621 +msgid "Unable to retrieve modified identity" +msgstr "" -#: ../../include/conversation.php:1663 -msgid "About" -msgstr "Informazioni" +#: ../../include/channel.php:1298 +msgid "Create New Profile" +msgstr "Crea un nuovo profilo" -#: ../../include/conversation.php:1666 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../include/channel.php:1319 +msgid "Visible to everybody" +msgstr "Visibile a tutti" -#: ../../include/conversation.php:1682 -msgid "Files and Storage" -msgstr "Archivio file" +#: ../../include/channel.php:1396 ../../include/channel.php:1524 +msgid "Gender:" +msgstr "Sesso:" -#: ../../include/conversation.php:1702 ../../include/conversation.php:1705 -#: ../../include/widgets.php:883 -msgid "Chatrooms" -msgstr "Chat" +#: ../../include/channel.php:1398 ../../include/channel.php:1579 +msgid "Homepage:" +msgstr "Home page:" -#: ../../include/conversation.php:1718 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../include/channel.php:1399 +msgid "Online Now" +msgstr "Online adesso" -#: ../../include/conversation.php:1728 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../include/channel.php:1452 +msgid "Change your profile photo" +msgstr "" -#: ../../include/conversation.php:1793 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../include/channel.php:1483 +msgid "Trans" +msgstr "" -#: ../../include/conversation.php:1796 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../include/channel.php:1529 +msgid "Like this channel" +msgstr "Mi piace questo canale" -#: ../../include/conversation.php:1799 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../include/channel.php:1553 +msgid "j F, Y" +msgstr "j F Y" -#: ../../include/conversation.php:1802 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../include/channel.php:1554 +msgid "j F" +msgstr "j F" -#: ../../include/conversation.php:1805 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../include/channel.php:1561 +msgid "Birthday:" +msgstr "Compleanno:" -#: ../../include/conversation.php:1808 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../include/channel.php:1574 +#, php-format +msgid "for %1$d %2$s" +msgstr "per %1$d %2$s" -#: ../../include/datetime.php:147 -msgid "Birthday" -msgstr "Compleanno" +#: ../../include/channel.php:1577 +msgid "Sexual Preference:" +msgstr "Preferenze sessuali:" -#: ../../include/datetime.php:149 -msgid "Age: " -msgstr "Età:" +#: ../../include/channel.php:1583 +msgid "Tags:" +msgstr "Tag:" -#: ../../include/datetime.php:151 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-GG oppure MM-GG" +#: ../../include/channel.php:1585 +msgid "Political Views:" +msgstr "Orientamento politico:" -#: ../../include/datetime.php:284 ../../boot.php:2578 -msgid "never" -msgstr "mai" +#: ../../include/channel.php:1587 +msgid "Religion:" +msgstr "Religione:" -#: ../../include/datetime.php:290 -msgid "less than a second ago" -msgstr "meno di un secondo fa" +#: ../../include/channel.php:1591 +msgid "Hobbies/Interests:" +msgstr "Interessi e hobby:" -#: ../../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 fa" +#: ../../include/channel.php:1593 +msgid "Likes:" +msgstr "Mi piace:" -#: ../../include/datetime.php:319 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" +#: ../../include/channel.php:1595 +msgid "Dislikes:" +msgstr "Non mi piace:" -#: ../../include/datetime.php:322 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" +#: ../../include/channel.php:1597 +msgid "Contact information and Social Networks:" +msgstr "Contatti e social network:" -#: ../../include/datetime.php:325 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" +#: ../../include/channel.php:1599 +msgid "My other channels:" +msgstr "I miei altri canali:" -#: ../../include/datetime.php:328 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" +#: ../../include/channel.php:1601 +msgid "Musical interests:" +msgstr "Gusti musicali:" -#: ../../include/datetime.php:331 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" +#: ../../include/channel.php:1603 +msgid "Books, literature:" +msgstr "Libri, letteratura:" -#: ../../include/datetime.php:334 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" +#: ../../include/channel.php:1605 +msgid "Television:" +msgstr "Televisione:" -#: ../../include/datetime.php:337 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "secondo" -msgstr[1] "secondi" +#: ../../include/channel.php:1607 +msgid "Film/dance/culture/entertainment:" +msgstr "Film, danza, cultura, intrattenimento:" -#: ../../include/datetime.php:574 -#, php-format -msgid "%1$s's birthday" -msgstr "Compleanno di %1$s" +#: ../../include/channel.php:1609 +msgid "Love/Romance:" +msgstr "Amore:" -#: ../../include/datetime.php:575 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Buon compleanno %1$s" +#: ../../include/channel.php:1611 +msgid "Work/employment:" +msgstr "Lavoro:" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" -msgstr "Visibilità negli elenchi pubblici" +#: ../../include/channel.php:1613 +msgid "School/education:" +msgstr "Scuola:" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" -msgstr "Modalità SafeSearch" +#: ../../include/channel.php:1636 +msgid "Like this thing" +msgstr "Mi piace" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" -msgstr "Solo forum pubblici" +#: ../../include/event.php:24 ../../include/event.php:71 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" -msgstr "Solo in questo sito" +#: ../../include/event.php:32 ../../include/event.php:75 +msgid "Starts:" +msgstr "Inizio:" -#: ../../include/event.php:824 +#: ../../include/event.php:42 ../../include/event.php:79 +msgid "Finishes:" +msgstr "Fine:" + +#: ../../include/event.php:1011 msgid "This event has been added to your calendar." msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/event.php:1024 +#: ../../include/event.php:1227 msgid "Not specified" msgstr "Non specificato" -#: ../../include/event.php:1025 +#: ../../include/event.php:1228 msgid "Needs Action" msgstr "Necessita di un intervento" -#: ../../include/event.php:1026 +#: ../../include/event.php:1229 msgid "Completed" msgstr "Completato" -#: ../../include/event.php:1027 +#: ../../include/event.php:1230 msgid "In Process" msgstr "In corso" -#: ../../include/event.php:1028 +#: ../../include/event.php:1231 msgid "Cancelled" msgstr "Annullato" -#: ../../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/import.php:97 -msgid "Channel clone failed. Import failed." -msgstr "Impossibile clonare il canale. L'importazione è fallita." - -#: ../../include/import.php:1447 -msgid "Unable to import element \"" -msgstr "Impossibile importare l'elemento \"" - -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "Uscita effettuata." - -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "Autenticazione fallita" - -#: ../../include/auth.php:286 -msgid "Login failed." -msgstr "Accesso fallito." - -#: ../../include/activities.php:41 -msgid " and " -msgstr "e" - -#: ../../include/activities.php:49 -msgid "public profile" -msgstr "profilo pubblico" - -#: ../../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/activities.php:59 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Guarda %2$s di %1$s " +#: ../../include/event.php:1310 ../../include/connections.php:684 +msgid "Home, Voice" +msgstr "" -#: ../../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/event.php:1311 ../../include/connections.php:685 +msgid "Home, Fax" +msgstr "" + +#: ../../include/event.php:1313 ../../include/connections.php:687 +msgid "Work, Voice" +msgstr "" -#: ../../include/network.php:704 +#: ../../include/event.php:1314 ../../include/connections.php:688 +msgid "Work, Fax" +msgstr "" + +#: ../../include/network.php:762 msgid "view full size" msgstr "guarda nelle dimensioni reali" -#: ../../include/network.php:1953 -msgid "No Subject" -msgstr "Nessun titolo" - -#: ../../include/network.php:2207 ../../include/network.php:2208 +#: ../../include/network.php:1769 ../../include/network.php:1770 msgid "Friendica" msgstr "Friendica" -#: ../../include/network.php:2209 +#: ../../include/network.php:1771 msgid "OStatus" msgstr "OStatus" -#: ../../include/network.php:2210 +#: ../../include/network.php:1772 msgid "GNU-Social" msgstr "GNU-Social" -#: ../../include/network.php:2211 +#: ../../include/network.php:1773 msgid "RSS/Atom" msgstr "RSS/Atom" -#: ../../include/network.php:2213 +#: ../../include/network.php:1776 msgid "Diaspora" msgstr "Diaspora" -#: ../../include/network.php:2214 +#: ../../include/network.php:1777 msgid "Facebook" msgstr "Facebook" -#: ../../include/network.php:2215 +#: ../../include/network.php:1778 msgid "Zot" msgstr "Zot" -#: ../../include/network.php:2216 +#: ../../include/network.php:1779 msgid "LinkedIn" msgstr "LinkedIn" -#: ../../include/network.php:2217 +#: ../../include/network.php:1780 msgid "XMPP/IM" msgstr "XMPP/IM" -#: ../../include/network.php:2218 +#: ../../include/network.php:1781 msgid "MySpace" msgstr "MySpace" -#: ../../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/language.php:410 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" -msgstr "Tag" +#: ../../include/acl_selectors.php:113 +msgid "Who can see this?" +msgstr "Chi può vederlo?" -#: ../../include/taxonomy.php:293 -msgid "Keywords" -msgstr "Parole chiave" +#: ../../include/acl_selectors.php:114 +msgid "Custom selection" +msgstr "Selezione personalizzata" -#: ../../include/taxonomy.php:314 -msgid "have" -msgstr "ho" +#: ../../include/acl_selectors.php:115 +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/taxonomy.php:314 -msgid "has" -msgstr "ha" +#: ../../include/acl_selectors.php:116 +msgid "Show" +msgstr "Mostra" -#: ../../include/taxonomy.php:315 -msgid "want" -msgstr "voglio" +#: ../../include/acl_selectors.php:117 +msgid "Don't show" +msgstr "Non mostrare" -#: ../../include/taxonomy.php:315 -msgid "wants" -msgstr "vuole" +#: ../../include/acl_selectors.php:150 +#, 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/taxonomy.php:316 -msgid "likes" -msgstr "gli piace" +#: ../../include/dba/dba_driver.php:178 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Non trovo le informazioni DNS per il database server '%s'" -#: ../../include/taxonomy.php:317 -msgid "dislikes" -msgstr "non gli piace" +#: ../../include/bbcode.php:198 ../../include/bbcode.php:1151 +#: ../../include/bbcode.php:1154 ../../include/bbcode.php:1159 +#: ../../include/bbcode.php:1162 ../../include/bbcode.php:1165 +#: ../../include/bbcode.php:1168 ../../include/bbcode.php:1173 +#: ../../include/bbcode.php:1176 ../../include/bbcode.php:1181 +#: ../../include/bbcode.php:1184 ../../include/bbcode.php:1187 +#: ../../include/bbcode.php:1190 +msgid "Image/photo" +msgstr "Immagine" -#: ../../include/contact_widgets.php:11 +#: ../../include/bbcode.php:237 ../../include/bbcode.php:1201 +msgid "Encrypted content" +msgstr "Contenuto cifrato" + +#: ../../include/bbcode.php:253 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invito disponibile" -msgstr[1] "%d inviti disponibili" +msgid "Install %1$s element %2$s" +msgstr "" -#: ../../include/contact_widgets.php:19 -msgid "Find Channels" -msgstr "Ricerca canali" +#: ../../include/bbcode.php:257 +#, 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/contact_widgets.php:20 -msgid "Enter name or interest" -msgstr "Scrivi un nome o un interesse" +#: ../../include/bbcode.php:335 +msgid "card" +msgstr "" -#: ../../include/contact_widgets.php:21 -msgid "Connect/Follow" -msgstr "Aggiungi" +#: ../../include/bbcode.php:337 +msgid "article" +msgstr "" -#: ../../include/contact_widgets.php:22 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Per esempio: Mario Rossi, Pesca" +#: ../../include/bbcode.php:420 ../../include/bbcode.php:428 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" -#: ../../include/contact_widgets.php:26 -msgid "Random Profile" -msgstr "Profilo casuale" +#: ../../include/bbcode.php:428 +msgid "spoiler" +msgstr "spoiler" -#: ../../include/contact_widgets.php:27 -msgid "Invite Friends" -msgstr "Invita amici" +#: ../../include/bbcode.php:441 +msgid "View article" +msgstr "" -#: ../../include/contact_widgets.php:29 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Per esempio: name=mario e country=italy" +#: ../../include/bbcode.php:441 +msgid "View summary" +msgstr "" -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -#: ../../include/widgets.php:349 ../../include/widgets.php:468 -msgid "Everything" -msgstr "Tutto" +#: ../../include/bbcode.php:1139 +msgid "$1 wrote:" +msgstr "$1 ha scritto:" + +#: ../../include/oembed.php:328 +msgid " by " +msgstr "di" + +#: ../../include/oembed.php:329 +msgid " on " +msgstr "su" + +#: ../../include/oembed.php:358 +msgid "Embedded content" +msgstr "Contenuti incorporati" + +#: ../../include/oembed.php:367 +msgid "Embedding disabled" +msgstr "Disabilita la creazione di contenuti incorporati" -#: ../../include/contact_widgets.php:122 +#: ../../include/zid.php:346 #, 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" +msgid "OpenWebAuth: %1$s welcomes %2$s" +msgstr "" -#: ../../include/contact_widgets.php:127 -msgid "show more" -msgstr "mostra tutto" +#: ../../include/features.php:54 +msgid "General Features" +msgstr "Funzionalità di base" -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../include/features.php:60 +msgid "Advanced Profiles" +msgstr "Profili avanzati" -#: ../../include/widgets.php:106 -msgid "New App" -msgstr "Nuova app" +#: ../../include/features.php:61 +msgid "Additional profile sections and selections" +msgstr "Informazioni aggiuntive del profilo" -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Suggerimenti" +#: ../../include/features.php:69 +msgid "Profile Import/Export" +msgstr "Importa/esporta il profilo" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Altro..." +#: ../../include/features.php:70 +msgid "Save and load profile details across sites/channels" +msgstr "Salva o ripristina le informazioni del profilo su siti diversi" -#: ../../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:78 +msgid "Web Pages" +msgstr "Pagine web" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Aggiungi un contatto" +#: ../../include/features.php:79 +msgid "Provide managed web pages on your channel" +msgstr "Attiva la creazione di pagine web sul tuo canale" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Indirizzo del canale" +#: ../../include/features.php:88 +msgid "Provide a wiki for your channel" +msgstr "Fornisce una wiki per il tuo 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/features.php:105 +msgid "Private Notes" +msgstr "Note private" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Note" +#: ../../include/features.php:106 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Abilita il riquadro per scrivere annotazioni (in chiaro)" -#: ../../include/widgets.php:275 -msgid "Remove term" -msgstr "Rimuovi termine" +#: ../../include/features.php:115 +msgid "Create personal planning cards" +msgstr "" -#: ../../include/widgets.php:390 -msgid "Archives" -msgstr "Archivi" +#: ../../include/features.php:125 +msgid "Create interactive articles" +msgstr "" -#: ../../include/widgets.php:552 -msgid "Refresh" -msgstr "Aggiorna" +#: ../../include/features.php:133 +msgid "Navigation Channel Select" +msgstr "Scegli il canale attivo dal menu" -#: ../../include/widgets.php:592 -msgid "Account settings" -msgstr "Il tuo account" +#: ../../include/features.php:134 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Scegli il canale attivo direttamente dal menu di navigazione" -#: ../../include/widgets.php:598 -msgid "Channel settings" -msgstr "Impostazioni del canale" +#: ../../include/features.php:142 +msgid "Photo Location" +msgstr "Posizione geografica" -#: ../../include/widgets.php:607 -msgid "Additional features" -msgstr "Funzionalità opzionali" +#: ../../include/features.php:143 +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:151 +msgid "Access Controlled Chatrooms" +msgstr "Chat ad accesso riservato" + +#: ../../include/features.php:152 +msgid "Provide chatrooms and chat services with access control." +msgstr "Il servizio di chat con accesso riservato." + +#: ../../include/features.php:161 +msgid "Smart Birthdays" +msgstr "Compleanni intelligenti" + +#: ../../include/features.php:162 +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/features.php:170 +msgid "Event Timezone Selection" +msgstr "" + +#: ../../include/features.php:171 +msgid "Allow event creation in timezones other than your own." +msgstr "" + +#: ../../include/features.php:180 +msgid "Premium Channel" +msgstr "Canale premium" + +#: ../../include/features.php:181 +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:189 +msgid "Advanced Directory Search" +msgstr "Ricerca avanzata sugli elenchi pubblici" + +#: ../../include/features.php:190 +msgid "Allows creation of complex directory search queries" +msgstr "Permette la creazione di ricerche complesse negli elenchi" + +#: ../../include/features.php:198 +msgid "Advanced Theme and Layout Settings" +msgstr "Impostazioni avanzate del tema e dei layout" + +#: ../../include/features.php:199 +msgid "Allows fine tuning of themes and page layouts" +msgstr "Permette una personalizzazione accurata del tema e dei layout" + +#: ../../include/features.php:208 +msgid "Access Control and Permissions" +msgstr "" + +#: ../../include/features.php:212 ../../include/group.php:328 +msgid "Privacy Groups" +msgstr "Gruppi di canali" + +#: ../../include/features.php:213 +msgid "Enable management and selection of privacy groups" +msgstr "Abilita i gruppi di canali" + +#: ../../include/features.php:221 +msgid "Multiple Profiles" +msgstr "Profili multipli" + +#: ../../include/features.php:222 +msgid "Ability to create multiple profiles" +msgstr "Abilitazione a creare profili multipli" + +#: ../../include/features.php:232 +msgid "Provide alternate connection permission roles." +msgstr "" + +#: ../../include/features.php:240 +msgid "OAuth Clients" +msgstr "" + +#: ../../include/features.php:241 +msgid "Manage authenticatication tokens for mobile and remote apps." +msgstr "" + +#: ../../include/features.php:249 +msgid "Access Tokens" +msgstr "" + +#: ../../include/features.php:250 +msgid "Create access tokens so that non-members can access private content." +msgstr "" + +#: ../../include/features.php:261 +msgid "Post Composition Features" +msgstr "Modalità di scrittura post" + +#: ../../include/features.php:265 +msgid "Large Photos" +msgstr "Foto grandi" + +#: ../../include/features.php:266 +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:614 -msgid "Feature/Addon settings" -msgstr "Componenti aggiuntivi" +#: ../../include/features.php:275 +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:620 -msgid "Display settings" -msgstr "Aspetto" +#: ../../include/features.php:283 +msgid "Even More Encryption" +msgstr "Cifratura addizionale" -#: ../../include/widgets.php:627 -msgid "Manage locations" -msgstr "Gestione cloni del tuo canale" +#: ../../include/features.php:284 +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:634 -msgid "Export channel" -msgstr "Esporta il canale" +#: ../../include/features.php:292 +msgid "Enable Voting Tools" +msgstr "Permetti i post con votazione" -#: ../../include/widgets.php:640 -msgid "Connected apps" -msgstr "App connesse" +#: ../../include/features.php:293 +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:664 -msgid "Premium Channel Settings" -msgstr "Canale premium - impostazioni" +#: ../../include/features.php:301 +msgid "Disable Comments" +msgstr "Disabilita i commenti" -#: ../../include/widgets.php:693 -msgid "Private Mail Menu" -msgstr "Menu messaggi privati" +#: ../../include/features.php:302 +msgid "Provide the option to disable comments for a post" +msgstr "Permetti di disabilitare i commenti" -#: ../../include/widgets.php:695 -msgid "Combined View" -msgstr "Vista combinata" +#: ../../include/features.php:310 +msgid "Delayed Posting" +msgstr "Pubblicazione ritardata" -#: ../../include/widgets.php:727 ../../include/widgets.php:739 -msgid "Conversations" -msgstr "Conversazioni" +#: ../../include/features.php:311 +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:731 -msgid "Received Messages" -msgstr "Ricevuti" +#: ../../include/features.php:319 +msgid "Content Expiration" +msgstr "Scadenza" -#: ../../include/widgets.php:735 -msgid "Sent Messages" -msgstr "Inviati" +#: ../../include/features.php:320 +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/widgets.php:749 -msgid "No messages." -msgstr "Nessun messaggio." +#: ../../include/features.php:328 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Impedisci post e commenti duplicati" -#: ../../include/widgets.php:767 -msgid "Delete conversation" -msgstr "Elimina la conversazione" +#: ../../include/features.php:329 +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:793 -msgid "Events Tools" -msgstr "Gestione eventi" +#: ../../include/features.php:340 +msgid "Network and Stream Filtering" +msgstr "Filtraggio dei contenuti" -#: ../../include/widgets.php:794 -msgid "Export Calendar" -msgstr "Esporta calendario" +#: ../../include/features.php:344 +msgid "Search by Date" +msgstr "Ricerca per data" -#: ../../include/widgets.php:795 -msgid "Import Calendar" -msgstr "Importa calendario" +#: ../../include/features.php:345 +msgid "Ability to select posts by date ranges" +msgstr "Per selezionare i post in un intervallo tra date" -#: ../../include/widgets.php:887 -msgid "Overview" -msgstr "Riepilogo" +#: ../../include/features.php:355 +msgid "Save search terms for re-use" +msgstr "Salva i termini delle ricerche per poterle ripetere" -#: ../../include/widgets.php:894 -msgid "Chat Members" -msgstr "Partecipanti" +#: ../../include/features.php:363 +msgid "Network Personal Tab" +msgstr "Attività personale" -#: ../../include/widgets.php:916 -msgid "Wiki List" -msgstr "Elenco wiki" +#: ../../include/features.php:364 +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:954 -msgid "Wiki Pages" -msgstr "Pagine wiki" +#: ../../include/features.php:372 +msgid "Network New Tab" +msgstr "Contenuti nuovi" -#: ../../include/widgets.php:989 -msgid "Bookmarked Chatrooms" -msgstr "Chat nei segnalibri" +#: ../../include/features.php:373 +msgid "Enable tab to display all new Network activity" +msgstr "Abilita il link per visualizzare solo i nuovi contenuti" -#: ../../include/widgets.php:1020 -msgid "Suggested Chatrooms" -msgstr "Chat suggerite" +#: ../../include/features.php:381 +msgid "Affinity Tool" +msgstr "Filtro per affinità" -#: ../../include/widgets.php:1166 ../../include/widgets.php:1278 -msgid "photo/image" -msgstr "foto/immagine" +#: ../../include/features.php:382 +msgid "Filter stream activity by depth of relationships" +msgstr "Permette di selezionare i contenuti in base al livello di amicizia" -#: ../../include/widgets.php:1221 -msgid "Click to show more" -msgstr "Clicca per mostrare tutto" +#: ../../include/features.php:391 +msgid "Show friend and connection suggestions" +msgstr "Mostra suggerimenti di contatti e amici" -#: ../../include/widgets.php:1372 -msgid "Rating Tools" -msgstr "Valutazione" +#: ../../include/features.php:399 +msgid "Connection Filtering" +msgstr "Filtro sui contatti" -#: ../../include/widgets.php:1376 ../../include/widgets.php:1378 -msgid "Rate Me" -msgstr "Valutami" +#: ../../include/features.php:400 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtra i post che ricevi con parole chiave" -#: ../../include/widgets.php:1381 -msgid "View Ratings" -msgstr "Vedi le valutazioni ricevute" +#: ../../include/features.php:412 +msgid "Post/Comment Tools" +msgstr "Gestione post e commenti" -#: ../../include/widgets.php:1465 -msgid "Forums" -msgstr "Forum" +#: ../../include/features.php:416 +msgid "Community Tagging" +msgstr "Tag della comunità" -#: ../../include/widgets.php:1494 -msgid "Tasks" -msgstr "Attività" +#: ../../include/features.php:417 +msgid "Ability to tag existing posts" +msgstr "Permetti l'aggiunta di tag su post già esistenti" -#: ../../include/widgets.php:1505 -msgid "Documentation" -msgstr "Guida" +#: ../../include/features.php:425 +msgid "Post Categories" +msgstr "Categorie dei post" -#: ../../include/widgets.php:1561 ../../include/widgets.php:1599 -msgid "Member registrations waiting for confirmation" -msgstr "Richieste in attesa di conferma" +#: ../../include/features.php:426 +msgid "Add categories to your posts" +msgstr "Abilita le categorie per i tuoi post" -#: ../../include/widgets.php:1567 -msgid "Inspect queue" -msgstr "Coda di attesa" +#: ../../include/features.php:434 +msgid "Emoji Reactions" +msgstr "Risposte emoji" -#: ../../include/widgets.php:1569 -msgid "DB updates" -msgstr "Aggiornamenti al DB" +#: ../../include/features.php:435 +msgid "Add emoji reaction ability to posts" +msgstr "Permetti di rispondere ai post con degli emoji" -#: ../../include/widgets.php:1595 -msgid "Plugin Features" -msgstr "Plugin" +#: ../../include/features.php:444 +msgid "Ability to file posts under folders" +msgstr "Abilita la raccolta dei tuoi articoli in cartelle" -#: ../../include/api.php:1330 -msgid "Public Timeline" -msgstr "Diario pubblico" +#: ../../include/features.php:452 +msgid "Dislike Posts" +msgstr "Non mi piace" -#: ../../include/oembed.php:322 -msgid " by " -msgstr "di" +#: ../../include/features.php:453 +msgid "Ability to dislike posts/comments" +msgstr "Abilità la funzionalità \"non mi piace\" per i tuoi post" -#: ../../include/oembed.php:323 -msgid " on " -msgstr "su" +#: ../../include/features.php:461 +msgid "Star Posts" +msgstr "Post con stella" -#: ../../include/oembed.php:352 -msgid "Embedded content" -msgstr "Contenuti incorporati" +#: ../../include/features.php:462 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mostra la stella per segnare i post preferiti" -#: ../../include/oembed.php:361 -msgid "Embedding disabled" -msgstr "Disabilita la creazione di contenuti incorporati" +#: ../../include/features.php:470 +msgid "Tag Cloud" +msgstr "Nuvola di tag" -#: ../../include/items.php:918 ../../include/items.php:963 -msgid "(Unknown)" -msgstr "(Sconosciuto)" +#: ../../include/features.php:471 +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/items.php:1162 -msgid "Visible to anybody on the internet." -msgstr "Visibile a chiunque su internet." +#: ../../include/taxonomy.php:384 ../../include/taxonomy.php:405 +msgid "Tags" +msgstr "Tag" -#: ../../include/items.php:1164 -msgid "Visible to you only." -msgstr "Visibile solo a te." +#: ../../include/taxonomy.php:487 +msgid "Keywords" +msgstr "Parole chiave" -#: ../../include/items.php:1166 -msgid "Visible to anybody in this network." -msgstr "Visibile a tutti su questa rete." +#: ../../include/taxonomy.php:508 +msgid "have" +msgstr "ho" -#: ../../include/items.php:1168 -msgid "Visible to anybody authenticated." -msgstr "Visibile a chiunque sia autenticato." +#: ../../include/taxonomy.php:508 +msgid "has" +msgstr "ha" -#: ../../include/items.php:1170 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visibile a tutti su %s." +#: ../../include/taxonomy.php:509 +msgid "want" +msgstr "voglio" -#: ../../include/items.php:1172 -msgid "Visible to all connections." -msgstr "Visibile a tutti coloro che ti seguono." +#: ../../include/taxonomy.php:509 +msgid "wants" +msgstr "vuole" -#: ../../include/items.php:1174 -msgid "Visible to approved connections." -msgstr "Visibile ai contatti approvati." +#: ../../include/taxonomy.php:510 +msgid "likes" +msgstr "gli piace" -#: ../../include/items.php:1176 -msgid "Visible to specific connections." -msgstr "Visibile ad alcuni contatti scelti." +#: ../../include/taxonomy.php:511 +msgid "dislikes" +msgstr "non gli piace" -#: ../../include/items.php:3976 -msgid "Privacy group is empty." -msgstr "Gruppo di canali vuoto." +#: ../../include/account.php:35 +msgid "Not a valid email address" +msgstr "Email non valida" -#: ../../include/items.php:3983 -#, php-format -msgid "Privacy group: %s" -msgstr "Gruppo di canali: %s" +#: ../../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/items.php:3995 -msgid "Connection not found." -msgstr "Contatto non trovato." +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." +msgstr "La tua email è già registrata su questo sito." -#: ../../include/items.php:4348 -msgid "profile photo" -msgstr "foto del profilo" +#: ../../include/account.php:75 +msgid "An invitation is required." +msgstr "È necessario un invito." -#: ../../include/attach.php:248 ../../include/attach.php:334 -msgid "Item was not found." -msgstr "Elemento non trovato." +#: ../../include/account.php:79 +msgid "Invitation could not be verified." +msgstr "L'invito non può essere verificato." -#: ../../include/attach.php:500 -msgid "No source file." -msgstr "Nessun file di origine." +#: ../../include/account.php:157 +msgid "Please enter the required information." +msgstr "Inserisci le informazioni richieste." -#: ../../include/attach.php:522 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" +#: ../../include/account.php:224 +msgid "Failed to store account information." +msgstr "Non è stato possibile salvare le informazioni del tuo account." -#: ../../include/attach.php:540 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" +#: ../../include/account.php:313 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registrazione di %s confermata" -#: ../../include/attach.php:675 +#: ../../include/account.php:382 #, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" +msgid "Registration request at %s" +msgstr "Richiesta di registrazione su %s" -#: ../../include/attach.php:689 +#: ../../include/account.php:404 +msgid "your registration password" +msgstr "la password di registrazione" + +#: ../../include/account.php:410 ../../include/account.php:472 #, 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 details for %s" +msgstr "Dettagli della registrazione di %s" -#: ../../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/account.php:483 +msgid "Account approved." +msgstr "Account approvato." -#: ../../include/attach.php:867 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." +#: ../../include/account.php:523 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registrazione revocata per %s" -#: ../../include/attach.php:923 ../../include/attach.php:939 -msgid "Path not available." -msgstr "Percorso non disponibile." +#: ../../include/account.php:802 ../../include/account.php:804 +msgid "Click here to upgrade." +msgstr "Clicca qui per aggiornare." -#: ../../include/attach.php:985 ../../include/attach.php:1137 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" +#: ../../include/account.php:810 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Questa operazione supera i limiti del tuo abbonamento." -#: ../../include/attach.php:1011 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" +#: ../../include/account.php:815 +msgid "This action is not available under your subscription plan." +msgstr "Questa operazione non è prevista dal tuo abbonamento." -#: ../../include/attach.php:1033 -msgid "Path not found." -msgstr "Percorso del file non trovato." +#: ../../include/datetime.php:134 +msgid "Birthday" +msgstr "Compleanno" -#: ../../include/attach.php:1091 -msgid "mkdir failed." -msgstr "mkdir fallito." +#: ../../include/datetime.php:134 +msgid "Age: " +msgstr "Età:" -#: ../../include/attach.php:1095 -msgid "database storage failed." -msgstr "scrittura su database fallita." +#: ../../include/datetime.php:134 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-GG oppure MM-GG" -#: ../../include/attach.php:1143 -msgid "Empty path" -msgstr "La posizione è vuota" +#: ../../include/datetime.php:238 +msgid "less than a second ago" +msgstr "meno di un secondo fa" -#: ../../view/theme/redbasic/php/config.php:9 -msgid "Focus (Hubzilla default)" -msgstr "Focus (predefinito)" +#: ../../include/datetime.php:256 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s fa" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Theme settings" -msgstr "Impostazioni del tema" +#: ../../include/datetime.php:267 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "anno" +msgstr[1] "anni" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Narrow navbar" -msgstr "Barra di navigazione ristretta" +#: ../../include/datetime.php:270 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mese" +msgstr[1] "mesi" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar background color" -msgstr "Barra di navigazione: Colore di sfondo" +#: ../../include/datetime.php:273 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "settimana" +msgstr[1] "settimane" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Navigation bar gradient top color" -msgstr "Barra di navigazione: Gradiente superiore" +#: ../../include/datetime.php:276 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "giorno" +msgstr[1] "giorni" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Navigation bar gradient bottom color" -msgstr "Barra di navigazione: Gradiente inferiore" +#: ../../include/datetime.php:279 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "ora" +msgstr[1] "ore" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Navigation active button gradient top color" -msgstr "Bottone di navigazione attivo: Gradiente superiore" +#: ../../include/datetime.php:282 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minuti" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Navigation active button gradient bottom color" -msgstr "Bottone di navigazione attivo: Gradiente inferiore" +#: ../../include/datetime.php:285 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "secondo" +msgstr[1] "secondi" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Navigation bar border color " -msgstr "Barra di navigazione: Colore del bordo" +#: ../../include/datetime.php:514 +#, php-format +msgid "%1$s's birthday" +msgstr "Compleanno di %1$s" -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Navigation bar icon color " -msgstr "Barra di navigazione: Colore delle icone" +#: ../../include/datetime.php:515 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Buon compleanno %1$s" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Navigation bar active icon color " -msgstr "Barra di navigazione: Colore dell'icona attiva" +#: ../../include/nav.php:96 +msgid "Remote authentication" +msgstr "Accedi dal tuo hub" -#: ../../view/theme/redbasic/php/config.php:120 -msgid "link color" -msgstr "colore del link" +#: ../../include/nav.php:96 +msgid "Click to authenticate to your home hub" +msgstr "Clicca per farti riconoscere dal tuo hub principale" -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set font-color for banner" -msgstr "Colore del font del banner" +#: ../../include/nav.php:102 ../../include/nav.php:190 +msgid "Manage Your Channels" +msgstr "Gestisci i tuoi canali" -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the background color" -msgstr "Colore di sfondo" +#: ../../include/nav.php:105 ../../include/nav.php:192 +msgid "Account/Channel Settings" +msgstr "Impostazioni dell'account e del canale" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set the background image" -msgstr "Immagine di sfondo" +#: ../../include/nav.php:111 ../../include/nav.php:140 +msgid "End this session" +msgstr "Chiudi questa sessione" -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set the background color of items" -msgstr "Colore di sfondo degli oggetti" +#: ../../include/nav.php:114 +msgid "Your profile page" +msgstr "Il tuo profilo" -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set the background color of comments" -msgstr "Colore di sfondo dei commenti" +#: ../../include/nav.php:117 +msgid "Manage/Edit profiles" +msgstr "Gestisci i tuoi profili" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set the border color of comments" -msgstr "Colore del bordo dei commenti" +#: ../../include/nav.php:126 ../../include/nav.php:130 +msgid "Sign in" +msgstr "Accedi" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set the indent for comments" -msgstr "Spostamento a destra dei commenti" +#: ../../include/nav.php:157 +msgid "Take me home" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set the basic color for item icons" -msgstr "Colore di base per le icone" +#: ../../include/nav.php:159 +msgid "Log me out of this site" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Set the hover color for item icons" -msgstr "Colore per le icone in mouse-over" +#: ../../include/nav.php:164 +msgid "Create an account" +msgstr "Crea un account" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set font-size for the entire application" -msgstr "Dimensione font per tutto il sito" +#: ../../include/nav.php:176 +msgid "Help and documentation" +msgstr "Guida e documentazione" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Example: 14px" -msgstr "Esempio: 14px" +#: ../../include/nav.php:179 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Cerca nel sito per @nome, #tag, ?guida o per contenuto" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set font-size for posts and comments" -msgstr "Dimensioni del carattere per post e commenti" +#: ../../include/nav.php:199 +msgid "Site Setup and Configuration" +msgstr "Installazione e configurazione del sito" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set font-color for posts and comments" -msgstr "Colore del carattere per post e commenti" +#: ../../include/nav.php:290 +msgid "@name, #tag, ?doc, content" +msgstr "@nome, #tag, ?guida, contenuto" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Set radius of corners" -msgstr "Raggio degli angoli stondati" +#: ../../include/nav.php:291 +msgid "Please wait..." +msgstr "Attendere..." -#: ../../view/theme/redbasic/php/config.php:134 -msgid "Set shadow depth of photos" -msgstr "Profondità dell'ombra delle foto" +#: ../../include/nav.php:297 +msgid "Add Apps" +msgstr "" -#: ../../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" +#: ../../include/nav.php:298 +msgid "Arrange Apps" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:135 -msgid "Leave empty for default width" -msgstr "Lascia vuoto per usare il valore predefinito" +#: ../../include/nav.php:299 +msgid "Toggle System Apps" +msgstr "" -#: ../../view/theme/redbasic/php/config.php:136 -msgid "Left align page content" -msgstr "Allinea a sinistra il contenuto della pagina" +#: ../../include/photos.php:150 +#, php-format +msgid "Image exceeds website size limit of %lu bytes" +msgstr "L'immagine supera il limite massimo di %lu bytes" -#: ../../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" +#: ../../include/photos.php:161 +msgid "Image file is empty." +msgstr "Il file dell'immagine è vuoto." -#: ../../view/theme/redbasic/php/config.php:138 -msgid "Set size of conversation author photo" -msgstr "Dimensione foto dell'autore della conversazione" +#: ../../include/photos.php:322 +msgid "Photo storage failed." +msgstr "Impossibile salvare la foto." -#: ../../view/theme/redbasic/php/config.php:139 -msgid "Set size of followup author photos" -msgstr "Dimensione foto dei partecipanti alla conversazione" +#: ../../include/photos.php:364 +msgid "a new photo" +msgstr "una nuova foto" -#: ../../boot.php:1195 +#: ../../include/photos.php:368 #, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" -msgstr "Cerca %1$s (%2$s)" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha pubblicato %2$s su %3$s" -#: ../../boot.php:1195 -msgctxt "opensearch" -msgid "$Projectname" -msgstr "$Projectname" +#: ../../include/photos.php:660 +msgid "Upload New Photos" +msgstr "Carica nuove foto" -#: ../../boot.php:1513 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "%s: aggiornamento fallito. Controlla i log di errore." +#: ../../include/zot.php:767 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../boot.php:1516 +#: ../../include/zot.php:794 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" + +#: ../../include/zot.php:2529 #, php-format -msgid "Update Error at %s" -msgstr "Errore di aggiornamento su %s" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" + +#: ../../include/zot.php:4180 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../boot.php:1720 +#: ../../include/group.php:22 msgid "" -"Create an account to access services and applications within the Hubzilla" -msgstr "Registrati per accedere ai servizi e alle applicazioni di Hubzilla" +"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." -#: ../../boot.php:1741 -msgid "Login/Email" -msgstr "Login/Email" +#: ../../include/group.php:264 +msgid "Add new connections to this privacy group" +msgstr "Aggiungi nuovi contatti a questo gruppo di canali" -#: ../../boot.php:1742 -msgid "Password" -msgstr "Password" +#: ../../include/group.php:306 +msgid "edit" +msgstr "modifica" -#: ../../boot.php:1743 -msgid "Remember me" -msgstr "Resta connesso" +#: ../../include/group.php:329 +msgid "Edit group" +msgstr "Modifica il gruppo" -#: ../../boot.php:1746 -msgid "Forgot your password?" -msgstr "Hai dimenticato la password?" +#: ../../include/group.php:330 +msgid "Add privacy group" +msgstr "Crea un gruppo di canali" -#: ../../boot.php:2315 -msgid "toggle mobile" -msgstr "attiva/disattiva versione mobile" +#: ../../include/group.php:331 +msgid "Channels not in any privacy group" +msgstr "Canali che non sono in nessun gruppo" -#: ../../boot.php:2470 -msgid "Website SSL certificate is not valid. Please correct." -msgstr "Il certificato SSL del sito non è valido. Si prega di intervenire." +#: ../../include/connections.php:128 +msgid "New window" +msgstr "Nuova finestra" -#: ../../boot.php:2473 -#, php-format -msgid "[hubzilla] Website SSL error for %s" -msgstr "[hubzilla] Errore SSL su %s" +#: ../../include/connections.php:129 +msgid "Open the selected location in a different window or browser tab" +msgstr "Apri l'indirizzo selezionato in una nuova scheda o finestra" -#: ../../boot.php:2577 -msgid "Cron/Scheduled tasks not running." -msgstr "Processi cron non avviati." +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "Uscita effettuata." -#: ../../boot.php:2581 -#, php-format -msgid "[hubzilla] Cron tasks not running on %s" -msgstr "[hubzilla] Cron non è stato eseguito %s" +#: ../../include/auth.php:263 +msgid "Email validation is incomplete. Please check your email." +msgstr "" + +#: ../../include/auth.php:279 +msgid "Failed authentication" +msgstr "Autenticazione fallita" + +#: ../../include/help.php:34 +msgid "Help:" +msgstr "Guida:" + +#: ../../include/help.php:78 +msgid "Not Found" +msgstr "Non disponibile" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index 9eb419735..d6ad56eda 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -5,22 +5,6 @@ function string_plural_select_it($n){ return ($n != 1);; }} App::$rtl = 0; -App::$strings["Social Networking"] = "Social network"; -App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico"; -App::$strings["Social - Restricted"] = "Social - Con restrizioni"; -App::$strings["Social - Private"] = "Social - Privato"; -App::$strings["Community Forum"] = "Forum di discussione"; -App::$strings["Forum - Mostly Public"] = "Social - Prevalentemente pubblico"; -App::$strings["Forum - Restricted"] = "Forum - Con restrizioni"; -App::$strings["Forum - Private"] = "Forum - Privato"; -App::$strings["Feed Republish"] = "Aggregatore di feed esterni"; -App::$strings["Feed - Mostly Public"] = "Feed - Prevalentemente pubblico"; -App::$strings["Feed - Restricted"] = "Feed - Con restrizioni"; -App::$strings["Special Purpose"] = "Per finalità speciali"; -App::$strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan"; -App::$strings["Special - Group Repository"] = "Speciale - Repository di gruppo"; -App::$strings["Other"] = "Altro"; -App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; App::$strings["Can view my channel stream and posts"] = "Può vedere i post e i contenuti del mio canale"; App::$strings["Can send me their channel stream and posts"] = "È tra i canali che seguo"; App::$strings["Can view my default channel profile"] = "Può vedere il profilo predefinito del canale"; @@ -28,7 +12,9 @@ App::$strings["Can view my connections"] = "Può vedere i miei contatti"; App::$strings["Can view my file storage and photos"] = "Può vedere il mio archivio file e foto"; App::$strings["Can upload/modify my file storage and photos"] = "Può caricare o modificare i file e le foto del mio archivio"; App::$strings["Can view my channel webpages"] = "Può vedere le pagine web del mio canale"; +App::$strings["Can view my wiki pages"] = "Può vedere le pagine del mio wiki"; App::$strings["Can create/edit my channel webpages"] = "Può creare o modificare le pagine web del mio canale"; +App::$strings["Can write to my wiki pages"] = "Può scrivere nelle pagine del mio wiki"; App::$strings["Can post on my channel (wall) page"] = "Può postare sulla mia bacheca"; App::$strings["Can comment on or like my posts"] = "Può commentare o aggiungere \"mi piace\" ai miei post"; App::$strings["Can send me private mail messages"] = "Può inviarmi messaggi privati"; @@ -37,79 +23,429 @@ App::$strings["Can forward to all my channel connections via @+ mentions in post App::$strings["Can chat with me"] = "Può aprire una chat con me"; App::$strings["Can source my public posts in derived channels"] = "Può usare i miei post pubblici per creare canali derivati"; App::$strings["Can administer my channel"] = "Può amministrare il mio canale"; -App::$strings["parent"] = "cartella superiore"; -App::$strings["Collection"] = "Cartella"; -App::$strings["Principal"] = "Principale"; -App::$strings["Addressbook"] = "Rubrica"; -App::$strings["Calendar"] = "Calendario"; -App::$strings["Schedule Inbox"] = "Appuntamenti ricevuti"; -App::$strings["Schedule Outbox"] = "Appuntamenti inviati"; -App::$strings["Unknown"] = "Sconosciuto"; -App::$strings["Files"] = "Archivio file"; -App::$strings["Total"] = "Totale"; -App::$strings["Shared"] = "Condiviso"; +App::$strings["Social Networking"] = "Social network"; +App::$strings["Social - Mostly Public"] = "Social - Prevalentemente pubblico"; +App::$strings["Social - Restricted"] = "Social - Con restrizioni"; +App::$strings["Social - Private"] = "Social - Privato"; +App::$strings["Community Forum"] = "Forum di discussione"; +App::$strings["Forum - Mostly Public"] = "Social - Prevalentemente pubblico"; +App::$strings["Forum - Restricted"] = "Forum - Con restrizioni"; +App::$strings["Forum - Private"] = "Forum - Privato"; +App::$strings["Feed Republish"] = "Aggregatore di feed esterni"; +App::$strings["Feed - Mostly Public"] = "Feed - Prevalentemente pubblico"; +App::$strings["Feed - Restricted"] = "Feed - Con restrizioni"; +App::$strings["Special Purpose"] = "Per finalità speciali"; +App::$strings["Special - Celebrity/Soapbox"] = "Speciale - Pagina per fan"; +App::$strings["Special - Group Repository"] = "Speciale - Repository di gruppo"; +App::$strings["Other"] = "Altro"; +App::$strings["Custom/Expert Mode"] = "Personalizzazione per esperti"; +App::$strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; +App::$strings["Permission denied."] = "Permesso negato."; +App::$strings["Block Name"] = "Nome del block"; +App::$strings["Blocks"] = "Block"; +App::$strings["Block Title"] = "Titolo del block"; +App::$strings["Created"] = "Creato"; +App::$strings["Edited"] = "Modificato"; App::$strings["Create"] = "Crea"; -App::$strings["Upload"] = "Carica"; -App::$strings["Name"] = "Nome"; -App::$strings["Type"] = "Tipo"; -App::$strings["Size"] = "Dimensione"; -App::$strings["Last Modified"] = "Ultima modifica"; App::$strings["Edit"] = "Modifica"; +App::$strings["Share"] = "Condividi"; App::$strings["Delete"] = "Elimina"; -App::$strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file."; -App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Stai usando %1\$s di %2\$s che hai a disposizione per i file. (%3\$s%)"; -App::$strings["WARNING:"] = "ATTENZIONE:"; -App::$strings["Create new folder"] = "Nuova cartella"; -App::$strings["Upload file"] = "Carica un file"; -App::$strings["Drop files here to immediately upload"] = "Trascina i file qui per caricarli al volo"; -App::$strings["Permission denied."] = "Permesso negato."; -App::$strings["Not Found"] = "Non disponibile"; -App::$strings["Page not found."] = "Pagina non trovata."; +App::$strings["View"] = "Guarda"; +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["Submit"] = "Salva"; +App::$strings["Articles"] = "Articoli"; +App::$strings["Add Article"] = "Aggiungi un articolo"; +App::$strings["Item not found"] = "Elemento non trovato"; +App::$strings["Layout Name"] = "Nome layout"; +App::$strings["Layout Description (Optional)"] = "Descrizione del layout (facoltativa)"; +App::$strings["Edit Layout"] = "Modifica il layout"; App::$strings["Permission denied"] = "Permesso negato"; -App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo."; -App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; -App::$strings["Requested profile is not available."] = "Il profilo richiesto non è disponibile."; -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["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["network"] = "rete"; -App::$strings["RSS"] = "RSS"; +App::$strings["Invalid profile identifier."] = "Indentificativo del profilo non valido."; +App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; +App::$strings["Profile"] = "Profilo"; +App::$strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; +App::$strings["Visible To"] = "Visibile a"; +App::$strings["All Connections"] = "Tutti i contatti"; +App::$strings["INVALID EVENT DISMISSED!"] = "EVENTO NON VALIDO ELIMINATO!"; +App::$strings["Summary: "] = "Sommario:"; +App::$strings["Unknown"] = "Sconosciuto"; +App::$strings["Date: "] = "Data:"; +App::$strings["Reason: "] = "Motivo:"; +App::$strings["INVALID CARD DISMISSED!"] = "CARD NON VALIDA ELIMINATA!"; +App::$strings["Name: "] = "Nome:"; +App::$strings["Event title"] = "Titolo dell'evento"; +App::$strings["Start date and time"] = "Data e ora di inizio"; +App::$strings["Example: YYYY-MM-DD HH:mm"] = "Esempio: YYYY-MM-DD HH:mm"; +App::$strings["End date and time"] = "Data e ora di fine"; +App::$strings["Description"] = "Descrizione"; +App::$strings["Location"] = "Posizione geografica"; +App::$strings["Previous"] = "Precendente"; +App::$strings["Next"] = "Successivo"; +App::$strings["Today"] = "Oggi"; +App::$strings["Month"] = "Mese"; +App::$strings["Week"] = "Settimana"; +App::$strings["Day"] = "Giorno"; +App::$strings["List month"] = "Lista del mese"; +App::$strings["List week"] = "Lista della settimana"; +App::$strings["List day"] = "Lista del giorno"; +App::$strings["More"] = "Di più"; +App::$strings["Less"] = "Meno"; +App::$strings["Select calendar"] = "Seleziona calendario"; +App::$strings["Delete all"] = "Elimina tutto"; +App::$strings["Cancel"] = "Annulla"; +App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "Spiacenti! La modifica di eventi ricorrenti non è ancora disponibile."; +App::$strings["Name"] = "Nome"; +App::$strings["Organisation"] = "Organizzazione"; +App::$strings["Title"] = "Titolo"; +App::$strings["Phone"] = "Telefono"; +App::$strings["Email"] = "Email"; +App::$strings["Instant messenger"] = "Messaggistica istantanea"; +App::$strings["Website"] = "Sito web"; +App::$strings["Address"] = "Indirizzo"; +App::$strings["Note"] = "Nota"; +App::$strings["Mobile"] = "Mobile"; +App::$strings["Home"] = "Bacheca"; +App::$strings["Work"] = "Lavoro"; +App::$strings["Add Contact"] = "Aggiungi contatto"; +App::$strings["Add Field"] = "Aggiungi campo"; +App::$strings["Update"] = "Aggiorna"; +App::$strings["P.O. Box"] = "P.O. Box"; +App::$strings["Additional"] = "Aggiuntivo"; +App::$strings["Street"] = "Via"; +App::$strings["Locality"] = "Località"; +App::$strings["Region"] = "Regione"; +App::$strings["ZIP Code"] = "CAP"; +App::$strings["Country"] = "Nazione"; +App::$strings["Default Calendar"] = "Calendario predefinito"; +App::$strings["Default Addressbook"] = "Rubrica predefinita"; +App::$strings["This site is not a directory server"] = "Questo non è un directory server"; 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["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"; +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."] = "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."; +App::$strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto."; +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."] = "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."; +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["Welcome to Hubzilla!"] = ""; +App::$strings["You have got no unseen posts..."] = ""; +App::$strings["Public access denied."] = "Accesso pubblico negato."; +App::$strings["Search"] = "Cerca"; +App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; +App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; +App::$strings["Public Stream"] = "Flusso pubblico"; +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["Drop"] = "Elimina"; +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["Change Order of Pinned Navbar Apps"] = "Cambia l'ordine della app bloccate sulla barra di navigazione"; +App::$strings["Change Order of App Tray Apps"] = "Cambia l'ordine delle app elencate nel menu delle app"; +App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "Utilizza le frecce per spostare l'app a sinistra (su) o destra (giù) nella barra di navigazione"; +App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "Utilizza le frecce per spostare l'app su o giù nel menu delle app"; +App::$strings["Menu not found."] = "Menù non trovato."; +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["Not found."] = "Non trovato."; +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["No"] = "No"; +App::$strings["Yes"] = "Sì"; +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["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["event"] = "l'evento"; +App::$strings["Edit event title"] = "Modifica il titolo dell'evento"; +App::$strings["Required"] = "Obbligatorio"; +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["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["Preview"] = "Anteprima"; +App::$strings["Permission settings"] = "Permessi dei tuoi contatti"; +App::$strings["Timezone:"] = "Fuso orario: "; +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["Event removed"] = "Evento eliminato"; +App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; +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["Location (URL) of app"] = "Indirizzo (URL) della app"; +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["Please login."] = "Effettua l'accesso."; +App::$strings["Hub not found."] = "Hub non trovato."; +App::$strings["photo"] = "la foto"; +App::$strings["status"] = "il messaggio di stato"; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s"; +App::$strings["Channel not found."] = "Canale non trovato."; +App::$strings["Insert web link"] = "Inserisci un indirizzo web"; +App::$strings["Title (optional)"] = "Titolo (facoltativo)"; +App::$strings["Edit Article"] = "Modifica l'articolo"; 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["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["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["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; +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["Validate"] = ""; +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["Files: shared with me"] = "File: condivisi con me"; +App::$strings["NEW"] = "NOVITÀ"; +App::$strings["Size"] = "Dimensione"; +App::$strings["Last Modified"] = "Ultima modifica"; +App::$strings["Remove all files"] = "Elimina tutti i file"; +App::$strings["Remove this file"] = "Elimina questo file"; +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["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "Non è possible accedere alla linea di comando PHP perché shell_exec() è disabilitato. Requisito necessario."; +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 server php.ini file."] = "Puoi modificare queste impostazione nel file php.ini del server."; +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["PDO database PHP module"] = "PDO database PHP module"; +App::$strings["mb_string PHP module"] = "modulo PHP mb_string"; +App::$strings["xml PHP module"] = "modulo xml PHP"; +App::$strings["zip PHP module"] = "modulo zip del 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["exec"] = ""; +App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "Errore: exec è richiesto ma non è installato o è stato disabilitato nel php.ini"; +App::$strings["shell_exec"] = ""; +App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "Errore: shell_exec è richiesto ma non è installato o è stato 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: PDO database PHP module required but not installed."] = "Errore: PDO database PHP module è 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["Error: zip PHP module required but not installed."] = "Errore: il modulo zip del PHP necessario 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["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "Questo software usa lo Smarty3 template engine per visualizzare le web views. Smarty3 compila i template in PHP per accelerarne la visualizzazione."; +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 top level web folder"] = "Questo software salva i file caricati nelle directory sul filesystem. Il server web necessita di permessi di scrittura sulle directory alla radice della cartella web"; +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?

"] = "

E ora?

"; +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["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["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["Off"] = "Off"; +App::$strings["On"] = "On"; +App::$strings["Lock feature %s"] = "Rendi non modificabile %s"; +App::$strings["Manage Additional Features"] = "Funzionalità opzionali"; +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["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["No failed updates."] = "Nessun aggiornamento fallito."; +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"; +App::$strings["Enable"] = "Attiva"; +App::$strings["Administration"] = "Amministrazione"; +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 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."; +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["%s account blocked/unblocked"] = array( 0 => "Modificato il blocco su %s account", 1 => "Modificato il blocco verso %s", @@ -122,12 +458,10 @@ 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["select all"] = "seleziona tutti"; App::$strings["Registrations waiting for confirm"] = "Registrazioni in attesa di conferma"; App::$strings["Request date"] = "Data richiesta"; -App::$strings["Email"] = "Email"; App::$strings["No registrations."] = "Nessuna registrazione."; App::$strings["Approve"] = "Approva"; App::$strings["Deny"] = "Nega"; @@ -141,6 +475,13 @@ App::$strings["Expires"] = "Con scadenza"; App::$strings["Service Class"] = "Classe dell'account"; App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Gli account selezionati saranno eliminati!\\n\\nTutto ciò che hanno caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; 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?"] = "L'account {0} sarà eliminato!\\n\\nTutto ciò che ha caricato o pubblicato su questo sito sarà eliminato definitivamente!\\n\\nVuoi confermare?"; +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["%s channel censored/uncensored"] = array( 0 => "Censura modificata per %s canale", 1 => "Censura modificata per %s canali", @@ -166,122 +507,25 @@ 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["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"; -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 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."; -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["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["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["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"; -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["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["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["Site settings updated."] = "Impostazioni del sito salvate correttamente."; App::$strings["Default"] = "Predefinito"; +App::$strings["%s - (Incompatible)"] = "%s - (Incompatibile)"; 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"; @@ -294,14 +538,16 @@ 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["Unfiltered HTML/CSS/JS is allowed"] = ""; 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["Site Information"] = "Informazioni sul sito"; +App::$strings["Publicly visible description of this site. Displayed on siteinfo page. BBCode can be used here"] = "Descrizione del sito, visibile pubblicamente. Visualizzata sulla pagina siteinfo. Puoi usare 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"; @@ -314,6 +560,8 @@ App::$strings["Maximum size in bytes of uploaded images. Default is 0, which mea 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["Minimum age"] = ""; +App::$strings["Minimum age (in years) for who may register on this site."] = ""; 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."; @@ -331,10 +579,17 @@ 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["Site only Public Streams"] = ""; +App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = ""; +App::$strings["Allow anybody on the internet to access the Public streams"] = ""; +App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = ""; 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["Reply-to email address for system generated email."] = "Indirizzo Reply-to per mail generate dal sistema."; +App::$strings["Sender (From) email address for system generated email."] = "Indirzzo email del mittente (From) per mail generate dal sistema."; +App::$strings["Name of email sender for system generated email."] = "Nome del mittente per mail generate dal sistema"; App::$strings["Directory Server URL"] = "URL del directory server"; App::$strings["Default directory server"] = "Directory server predefinito"; App::$strings["Proxy user"] = "Utente proxy"; @@ -345,601 +600,367 @@ 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["Queue Threshold"] = ""; +App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "Rinvia la consegna immediata se la coda contiene più di questo numero di elementi."; 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["Path to ImageMagick convert program"] = "Percorso del comando convert di ImageMagic"; +App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "Se impostato, utilizza questo programma per generare le anteprime di immagini molto grandi ( > 4000 pixel in larghezza o altezza), per evitare di esaurire la memoria. Esempio: /user/bin/convert"; +App::$strings["Allow SVG thumbnails in file browser"] = "Permetti le anteprime SVG nell'elenco dei file"; +App::$strings["WARNING: SVG images may contain malicious code."] = "ATTENZIONE: le immagini SVG potrebbero contenere codice malevolo."; 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["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"; -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["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["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["Public servers: Optional landing (marketing) webpage for new registrants"] = ""; +App::$strings["Create this page first. Default is %s/register"] = ""; +App::$strings["Page to display after creating a new channel"] = ""; +App::$strings["Recommend: profiles, go, or settings"] = ""; +App::$strings["Optional: site location"] = ""; +App::$strings["Region or country"] = ""; +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["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"; +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["Password changed for account %d."] = "La password per l'utente %d è cambiata."; +App::$strings["Account settings updated."] = "L'impostazioni sono state aggiornate."; +App::$strings["Account not found."] = "Account non trovato."; +App::$strings["Account Edit"] = "Modifica le impostazioni"; +App::$strings["New Password"] = "Nuova password"; +App::$strings["New Password again"] = "Ripeti la nuova password"; +App::$strings["Technical skill level"] = "Livello tecnico"; +App::$strings["Account language (for emails)"] = "Lingua (per le email di sistema)"; +App::$strings["Service class"] = "Classe dell'account"; +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["Remote privacy information not available."] = "Le informazioni remote sulla privacy non sono disponibili."; +App::$strings["Visible to:"] = "Visibile a:"; +App::$strings["__ctx:acl__ Profile"] = "Profilo"; +App::$strings["Comment approved"] = "Commento approvato"; +App::$strings["Comment deleted"] = "Commento eliminato"; +App::$strings["Permission category saved."] = ""; +App::$strings["Use this form to create permission rules for various classes of people or connections."] = ""; +App::$strings["Permission Categories"] = ""; +App::$strings["Permission Name"] = ""; 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["Item not found"] = "Elemento non trovato"; -App::$strings["Block Name"] = "Nome del block"; -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["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["Friends"] = "Amici"; +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["or"] = "o"; +App::$strings["Your channel address is"] = "L'indirizzo del tuo canale è"; +App::$strings["Your files/photos are accessible via WebDAV at"] = ""; +App::$strings["Channel Settings"] = "Impostazioni del canale"; +App::$strings["Basic Settings"] = "Impostazioni di base"; +App::$strings["Full Name:"] = "Nome completo:"; +App::$strings["Email Address:"] = "Indirizzo email:"; +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 Privacy Group"] = ""; +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["Profile to assign new connections"] = ""; +App::$strings["Channel permissions category:"] = "Categorie di permessi dei canali:"; +App::$strings["Default Permissions Group"] = ""; +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["Someone likes your post/comment"] = "Qualcuno mette mi piace al tuo post/commento"; +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["Unseen shared files"] = ""; +App::$strings["Unseen public activity"] = "Attività pubblica non letta"; +App::$strings["Email notification hub (hostname)"] = ""; +App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = ""; +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"] = ""; +App::$strings["Additional Features"] = "Funzionalità opzionali"; +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["Their Settings"] = "Permessi concessi a te"; +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 and additional features consistent with your comfort level"] = ""; +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["Affinity Slider settings updated."] = ""; +App::$strings["No feature settings configured"] = "Non hai componenti aggiuntivi da personalizzare"; +App::$strings["Default maximum affinity level"] = ""; +App::$strings["0-99 default 99"] = ""; +App::$strings["Default minimum affinity level"] = ""; +App::$strings["0-99 - default 0"] = ""; +App::$strings["Affinity Slider Settings"] = ""; +App::$strings["Addon Settings"] = ""; +App::$strings["Please save/submit changes to any panel before opening another."] = ""; +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["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["Provide channel menu in navigation bar"] = ""; +App::$strings["Default: channel menu located in app menu"] = ""; +App::$strings["Manual conversation updates"] = ""; +App::$strings["Default is on, turning this off may increase screen jumping"] = ""; +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["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["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["View Photo"] = "Guarda la foto"; +App::$strings["Edit Album"] = "Modifica album"; +App::$strings["Upload"] = "Carica"; +App::$strings["Some blurb about what to do when you're new here"] = "Qualche suggerimento per i nuovi utenti su cosa fare"; +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"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostra l'oggetto"; +App::$strings["item not found."] = "non trovato."; +App::$strings["Edit Thing"] = "Modifica l'oggetto"; +App::$strings["Select a profile"] = "Scegli un profilo"; +App::$strings["Post an activity"] = "Pubblica un'attività"; +App::$strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto"; +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["Permissions"] = "Permessi"; +App::$strings["Add Thing to your Profile"] = "Aggiungi l'oggetto al tuo profilo"; +App::$strings["No more system notifications."] = "Non ci sono nuove notifiche di sistema."; +App::$strings["System Notifications"] = "Notifiche di sistema"; +App::$strings["Channel added."] = "Canale aggiunto."; +App::$strings["Your service plan only allows %d channels."] = "Il tuo account permette di creare al massimo %d canali."; +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["Move this channel (disable all previous locations)"] = ""; +App::$strings["Import a few months of posts if possible (limited by available memory"] = ""; +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["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["Permissions denied."] = "Permesso negato."; +App::$strings["Import"] = "Importa"; 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["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."; -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["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["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."; -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["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"; -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["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["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["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["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."; -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["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["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["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["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["Item not available."] = "Elemento non disponibile."; +App::$strings["Edit Block"] = "Modifica il block"; +App::$strings["vcard"] = ""; +App::$strings["Apps"] = "App"; +App::$strings["Manage apps"] = ""; +App::$strings["Create new app"] = ""; 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["Blocked"] = "Bloccati"; +App::$strings["Ignored"] = "Ignorati"; +App::$strings["Hidden"] = "Nascosti"; +App::$strings["Archived/Unreachable"] = ""; +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["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/unreachable connections"] = ""; +App::$strings["Only show hidden connections"] = "Mostra solo i contatti nascosti"; +App::$strings["Pending approval"] = "In attesa di conferma"; +App::$strings["Archived"] = "Archiviati"; +App::$strings["Not connected at this location"] = ""; +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["Call"] = ""; +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 your connections"] = "Cerca tra i contatti"; +App::$strings["Connections search"] = "Ricerca tra i contatti"; +App::$strings["Find"] = "Cerca"; +App::$strings["item"] = ""; +App::$strings["Source of Item"] = "Sorgente"; +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["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["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["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["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."; @@ -950,18 +971,13 @@ App::$strings["or select an existing album (doubleclick)"] = "o seleziona un alb 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)"; @@ -975,11 +991,9 @@ App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Esempio: @b 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"; @@ -1003,26 +1017,68 @@ 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["Profile Unavailable."] = ""; +App::$strings["Not found"] = "Non trovato"; +App::$strings["Invalid channel"] = "Canale non valido"; +App::$strings["Error retrieving wiki"] = "Errore caricamento wiki"; +App::$strings["Error creating zip file export folder"] = "Errore nella creazione della cartella per l'esportazione in zip"; +App::$strings["Error downloading wiki: "] = "Errore scaricamento wiki:"; +App::$strings["Wikis"] = "Pagine wiki"; +App::$strings["Download"] = "Scarica"; +App::$strings["Create New"] = "Crea nuova"; +App::$strings["Wiki name"] = "Nome wiki"; +App::$strings["Content type"] = ""; +App::$strings["Markdown"] = ""; +App::$strings["BBcode"] = ""; +App::$strings["Text"] = ""; +App::$strings["Type"] = "Tipo"; +App::$strings["Any type"] = ""; +App::$strings["Lock content type"] = ""; +App::$strings["Create a status post for this wiki"] = ""; +App::$strings["Edit Wiki Name"] = ""; +App::$strings["Wiki not found"] = ""; +App::$strings["Rename page"] = ""; +App::$strings["Error retrieving page content"] = "Errore nel caricamento del contenuto della pagina"; +App::$strings["New page"] = ""; +App::$strings["Revision Comparison"] = "Confronto tra revisioni"; +App::$strings["Revert"] = "Ripristina"; +App::$strings["Short description of your changes (optional)"] = ""; +App::$strings["Source"] = "Sorgente"; +App::$strings["New page name"] = ""; +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"] = ""; +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["Error creating wiki. Invalid name."] = "Errore nella creazione. Nome non valido."; +App::$strings["A wiki with this name already exists."] = ""; +App::$strings["Wiki created, but error creating Home page."] = ""; +App::$strings["Error creating wiki"] = ""; +App::$strings["Error updating wiki. Invalid name."] = ""; +App::$strings["Error updating wiki"] = ""; +App::$strings["Wiki delete permission denied."] = ""; +App::$strings["Error deleting wiki"] = ""; +App::$strings["New page created"] = ""; +App::$strings["Cannot delete Home"] = ""; +App::$strings["Current Revision"] = ""; +App::$strings["Selected Revision"] = ""; +App::$strings["You must be authenticated."] = ""; +App::$strings["toggle full screen mode"] = "attiva/disattiva schermo intero"; +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["(modified)"] = ""; +App::$strings["Reset"] = "Reimposta"; +App::$strings["Layout not found."] = "Layout non trovato."; +App::$strings["Module Name:"] = "Nome del modulo:"; +App::$strings["Layout Help"] = "Guida al layout"; +App::$strings["Edit another layout"] = ""; +App::$strings["System layout"] = ""; App::$strings["Poke"] = "Poke"; App::$strings["Poke somebody"] = "Manda un poke"; App::$strings["Poke/Prod"] = "Poke/Prod"; @@ -1030,110 +1086,305 @@ 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["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."; -App::$strings["Profile Visibility Editor"] = "Modifica la visibilità del profilo"; -App::$strings["Profile"] = "Profilo"; -App::$strings["Click on a contact to add or remove."] = "Clicca su un contatto per aggiungerlo o rimuoverlo."; -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["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"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Questo è un hub di \$Projectname - una rete cooperativa e decentralizzata di siti ad elevata privacy. "; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Ultima acquisizione:"; -App::$strings["Current load average: "] = "Carico medio attuale:"; -App::$strings["Running at web location"] = "In esecuzione sull'indirizzo web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Visita hubzilla.org per maggiori informazioni su \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Per segnalare bug e problemi: visita"; -App::$strings["\$projectname issues"] = "Problematiche note su \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Per consigli, ringraziamenti, ecc. - scrivi a \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Amministratori del sito"; -App::$strings["Blocks"] = "Block"; -App::$strings["Block Title"] = "Titolo del block"; +App::$strings["Image uploaded but image cropping failed."] = "L'immagine è stata caricata, ma il non è stato possibile ritagliarla."; +App::$strings["Profile Photos"] = "Foto del profilo"; +App::$strings["Image resize failed."] = "Il ridimensionamento dell'immagine è fallito."; +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["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["Photo not available."] = "Foto non disponibile."; +App::$strings["Upload File:"] = "Carica un file:"; +App::$strings["Select a profile:"] = "Seleziona un profilo:"; +App::$strings["Use Photo for Profile"] = "Usa la foto per il profilo"; +App::$strings["Change Profile Photo"] = ""; +App::$strings["Use"] = "Usa"; +App::$strings["Use a photo from your albums"] = ""; +App::$strings["Select existing photo"] = ""; +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["Away"] = "Assente"; +App::$strings["Online"] = "Online"; +App::$strings["Unable to locate original post."] = "Impossibile trovare il messaggio originale."; +App::$strings["Empty post discarded."] = "Il post vuoto è stato ignorato."; +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["Your comment is awaiting approval."] = ""; +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["sent you a private message"] = "ti ha inviato un messaggio privato"; +App::$strings["added your channel"] = "ha aggiunto il tuo canale"; +App::$strings["requires approval"] = ""; +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["shared a file with you"] = ""; +App::$strings["Invalid item."] = "Elemento non valido."; +App::$strings["Page not found."] = "Pagina non trovata."; +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["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["Refresh Photo"] = ""; +App::$strings["Fetch updated photo"] = ""; +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["Fetch Vcard"] = ""; +App::$strings["Fetch electronic calling card for this connection"] = ""; +App::$strings["Open Individual Permissions section by default"] = ""; +App::$strings["Affinity"] = ""; +App::$strings["Open Set Affinity section by default"] = ""; +App::$strings["Me"] = "Me"; +App::$strings["Family"] = "Famiglia"; +App::$strings["Acquaintances"] = "Conoscenti"; +App::$strings["Filter"] = ""; +App::$strings["Open Custom Filter section by default"] = ""; +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["This connection is unreachable from this location."] = ""; +App::$strings["This connection may be unreachable from other channel locations."] = ""; +App::$strings["Location independence is not supported by their network."] = ""; +App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = ""; +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["Permission role"] = ""; +App::$strings["Loading"] = ""; +App::$strings["Add permission role"] = ""; +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["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["Details"] = ""; +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["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["Photos"] = "Foto"; +App::$strings["Files"] = "Archivio file"; +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["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["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["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["# 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["Please refresh page"] = ""; +App::$strings["Unknown error"] = ""; +App::$strings["Token verification failed."] = ""; +App::$strings["Email Verification Required"] = ""; +App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = ""; +App::$strings["Resend Email"] = ""; +App::$strings["Validation token"] = ""; +App::$strings["Post not found."] = ""; +App::$strings["post"] = "il post"; +App::$strings["comment"] = "il commento"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$s"; +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["If enabled, connection requests will be approved without your interaction"] = ""; +App::$strings["Automatic approval settings"] = ""; +App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = ""; +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["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["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["Communications"] = ""; +App::$strings["Profile Image"] = "Immagine del profilo"; +App::$strings["Edit Profiles"] = "Modifica i tuoi profili"; +App::$strings["This page is available only to site members"] = ""; +App::$strings["Welcome"] = ""; +App::$strings["What would you like to do?"] = ""; +App::$strings["Please bookmark this page if you would like to return to it in the future"] = ""; +App::$strings["Upload a profile photo"] = ""; +App::$strings["Upload a cover photo"] = ""; +App::$strings["Edit your default profile"] = ""; +App::$strings["View friend suggestions"] = ""; +App::$strings["View the channel directory"] = ""; +App::$strings["View/edit your channel settings"] = ""; +App::$strings["View the site or project documentation"] = ""; +App::$strings["Visit your channel homepage"] = ""; +App::$strings["View your connections and/or add somebody whose address you already know"] = ""; +App::$strings["View your personal stream (this may be empty until you add some connections)"] = ""; +App::$strings["View the public stream. Warning: this content is not moderated"] = ""; +App::$strings["Page link"] = "Link alla pagina"; +App::$strings["Edit Webpage"] = "Modifica la pagina web"; +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["Cards"] = "Card"; +App::$strings["Add Card"] = ""; +App::$strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; +App::$strings["About this site"] = ""; +App::$strings["Site Name"] = ""; +App::$strings["Administrator"] = "Amministratore"; +App::$strings["Terms of Service"] = "Condizioni d'Uso"; +App::$strings["Software and Project information"] = ""; +App::$strings["This site is powered by \$Projectname"] = ""; +App::$strings["Federated and decentralised networking and identity services provided by Zot"] = ""; +App::$strings["Version %s"] = "Versione %s"; +App::$strings["Project homepage"] = ""; +App::$strings["Developer homepage"] = ""; 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["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["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"; -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["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["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"; @@ -1147,94 +1398,31 @@ 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"; -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."] = "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."; -App::$strings["Export your posts from a given year."] = "Esporta i tuoi post a partire dall'anno scelto."; -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."] = "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."; -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["Channel name changes are not allowed within 48 hours of changing the account password."] = ""; +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["Change channel nickname/address"] = ""; +App::$strings["Any/all connections on other networks will be lost!"] = ""; +App::$strings["New channel address"] = ""; +App::$strings["Rename Channel"] = ""; App::$strings["Item is not editable"] = "L'elemento non è modificabile"; -App::$strings["Items tagged with: %s"] = "Elementi taggati con: %s"; -App::$strings["Search results for: %s"] = "Risultati ricerca: %s"; -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["Edit event"] = "Modifica l'evento"; -App::$strings["Delete event"] = "Elimina l'evento"; -App::$strings["calendar"] = "calendario"; -App::$strings["Month"] = "Mese"; -App::$strings["Week"] = "Settimana"; -App::$strings["Day"] = "Giorno"; -App::$strings["Event removed"] = "Evento eliminato"; -App::$strings["Failed to remove event"] = "Impossibile eliminare l'evento"; -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"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostra l'oggetto"; -App::$strings["item not found."] = "non trovato."; -App::$strings["Edit Thing"] = "Modifica l'oggetto"; -App::$strings["Select a profile"] = "Scegli un profilo"; -App::$strings["Post an activity"] = "Pubblica un'attività"; -App::$strings["Only sends to viewers of the applicable profile"] = "Invia solo a chi può vedere il profilo scelto"; -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["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["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["Edit post"] = "Modifica post"; +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["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."; @@ -1247,43 +1435,29 @@ App::$strings["Only import content with these words (one per line)"] = "Importa App::$strings["Leave blank to import all public content"] = "Lascia vuoto per importare tutti i contenuti pubblici"; App::$strings["Channel Name"] = "Nome del canale"; App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "Aggiungi le seguenti categorie ai post importati da questa sorgente (separate da virgola)"; -App::$strings["Optional"] = "Facoltativo"; App::$strings["Source not found."] = "Sorgente non trovata."; App::$strings["Edit Source"] = "Modifica la sorgente"; App::$strings["Delete Source"] = "Elimina la sorgente"; App::$strings["Source removed"] = "Sorgente eliminata"; App::$strings["Unable to remove source."] = "Impossibile rimuovere la sorgente."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; -App::$strings["Ignore/Hide"] = "Ignora/nascondi"; -App::$strings["Channel Suggestions"] = "Canali suggeriti"; -App::$strings["post"] = "il post"; -App::$strings["comment"] = "il commento"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha taggato %3\$s di %2\$s con %4\$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["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["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["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["%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["%d rating"] = array( 0 => "%d valutazione", 1 => "%d valutazioni", @@ -1296,13 +1470,15 @@ 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["Common connections (estimated):"] = ""; 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"; @@ -1311,162 +1487,234 @@ 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."; -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["Xchan Lookup"] = "Ricerca canale"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Nessun suggerimento disponibile. Se questo sito è nuovo, riprova tra 24 ore."; +App::$strings["Ignore/Hide"] = "Ignora/nascondi"; +App::$strings["Unable to find your hub."] = "Impossibile raggiungere il tuo hub."; +App::$strings["Post successful."] = "Inviato!"; +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"] = ""; +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["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["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["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["Enter a folder name"] = ""; +App::$strings["or select an existing folder (doubleclick)"] = ""; +App::$strings["Save to Folder"] = "Salva nella cartella"; +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. Continue to create your first channel..."] = ""; +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["I accept the %s for this website"] = "Accetto le %s di questo sito"; +App::$strings["I am over %s years of age and accept the %s for this website"] = ""; +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 requires email verification. After completing this form, please check your email for further instructions."] = ""; +App::$strings["Cover Photos"] = "Copertine del canale"; +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["Change Cover Photo"] = ""; +App::$strings["Documentation Search"] = "Ricerca nella guida"; +App::$strings["About"] = "Informazioni"; +App::$strings["Administrators"] = ""; +App::$strings["Developers"] = ""; +App::$strings["Tutorials"] = ""; +App::$strings["\$Projectname Documentation"] = "Guida di \$Projectname"; +App::$strings["Contents"] = ""; +App::$strings["Article"] = ""; +App::$strings["Item has been removed."] = ""; +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["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["Invalid channel."] = ""; +App::$strings["network"] = "rete"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "%s ti dà il benvenuto"; +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["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["Show in your contacts shared folder"] = ""; +App::$strings["No channel."] = "Nessun canale."; +App::$strings["No connections in common."] = "Nessun contatto in comune."; +App::$strings["View Common Connections"] = ""; +App::$strings["Email verification resent"] = ""; +App::$strings["Unable to resend email verification message."] = ""; +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["Blocked accounts"] = ""; +App::$strings["Expired accounts"] = ""; +App::$strings["Expiring accounts"] = ""; +App::$strings["Clones"] = ""; +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["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["Edit Card"] = ""; +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["Mark all seen"] = "Marca tutto come letto"; +App::$strings["0. Beginner/Basic"] = ""; +App::$strings["1. Novice - not skilled but willing to learn"] = ""; +App::$strings["2. Intermediate - somewhat comfortable"] = ""; +App::$strings["3. Advanced - very comfortable"] = ""; +App::$strings["4. Expert - I can write computer code"] = ""; +App::$strings["5. Wizard - I probably know more than you do"] = ""; +App::$strings["Site Admin"] = "Amministrazione sito"; +App::$strings["Report Bug"] = "Segnala il bug"; +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["Activity"] = "Attività"; +App::$strings["Wiki"] = "Wiki"; +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["Undelete"] = ""; +App::$strings["Add to app-tray"] = ""; +App::$strings["Remove from app-tray"] = ""; +App::$strings["Pin to navbar"] = ""; +App::$strings["Unpin from navbar"] = ""; +App::$strings["__ctx:permcat__ default"] = ""; +App::$strings["__ctx:permcat__ follower"] = ""; +App::$strings["__ctx:permcat__ contributor"] = ""; +App::$strings["__ctx:permcat__ publisher"] = ""; +App::$strings["(No Title)"] = ""; +App::$strings["Wiki page create failed."] = ""; +App::$strings["Wiki not found."] = ""; +App::$strings["Destination name already exists"] = ""; +App::$strings["Page not found"] = ""; +App::$strings["Error reading page content"] = ""; +App::$strings["Error reading wiki"] = ""; +App::$strings["Page update failed."] = ""; +App::$strings["Nothing deleted"] = ""; +App::$strings["Compare: object not found."] = ""; +App::$strings["Page updated"] = ""; +App::$strings["Untitled"] = ""; +App::$strings["Wiki resource_id required for git commit"] = ""; +App::$strings["__ctx:wiki_history__ Message"] = ""; +App::$strings["Different viewers will see this text differently"] = "Ad altri questo testo potrebbe apparire in modo differente"; +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["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."; @@ -1476,18 +1724,29 @@ App::$strings["\$Projectname Notification"] = "Notifica \$Projectname"; App::$strings["\$projectname"] = "\$projectname"; App::$strings["Thank You,"] = "Grazie,"; App::$strings["%s Administrator"] = "L'amministratore di %s"; +App::$strings["This email was sent by %1\$s at %2\$s."] = ""; +App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = ""; +App::$strings["To stop receiving these messages, please adjust your %s."] = ""; App::$strings["%s "] = "%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"; App::$strings["Please visit %s to view and/or reply to your private messages."] = "Visita %s per leggere i tuoi messaggi privati e rispondere."; -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["commented on"] = ""; +App::$strings["liked"] = ""; +App::$strings["disliked"] = ""; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]a %5\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]%5\$s's %6\$s[/zrl]"] = ""; +App::$strings["%1\$s, %2\$s %3\$s [zrl=%4\$s]your %5\$s[/zrl]"] = ""; +App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = ""; 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["Please visit %s to approve or reject this comment."] = ""; +App::$strings["%1\$s, %2\$s liked [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ma messo un mi piace al [zrl=%3\$s]tuo %4\$s[/zrl]"; +App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[\$Projectname:Notify] Ricevuto un mi piace alla conversazione #%1\$d di %2\$s"; +App::$strings["%1\$s, %2\$s liked an item/conversation you created."] = "%1\$s, %2\$s ha messo un mi piace all'elemento/conversazione che hai creato"; 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]"; @@ -1514,187 +1773,960 @@ App::$strings["Please visit %s to approve or reject the suggestion."] = "Visita 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["edited a post dated %s"] = ""; +App::$strings["edited a comment dated %s"] = ""; +App::$strings["Wiki updated successfully"] = ""; +App::$strings["Wiki files deleted successfully"] = ""; +App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s"; +App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; App::$strings["Private Message"] = "Messaggio privato"; App::$strings["Select"] = "Scegli"; -App::$strings["Save to Folder"] = "Salva nella cartella"; App::$strings["I will attend"] = "Parteciperò"; App::$strings["I will not attend"] = "Non parteciperò"; App::$strings["I might attend"] = "Forse parteciperò"; App::$strings["I agree"] = "Sono d'accordo"; App::$strings["I disagree"] = "Non sono d'accordo"; -App::$strings["I abstain"] = "Mi astengo"; -App::$strings["Add Star"] = "Aggiungi ai preferiti"; -App::$strings["Remove Star"] = "Rimuovi dai preferiti"; -App::$strings["Toggle Star Status"] = "Attiva/disattiva preferito"; -App::$strings["starred"] = "preferito"; -App::$strings["Message signature validated"] = "Messaggio con firma verificata"; -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["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"; -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["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["I abstain"] = "Mi astengo"; +App::$strings["Add Star"] = "Aggiungi ai preferiti"; +App::$strings["Remove Star"] = "Rimuovi dai preferiti"; +App::$strings["Toggle Star Status"] = "Attiva/disattiva preferito"; +App::$strings["starred"] = "preferito"; +App::$strings["Message signature validated"] = "Messaggio con firma verificata"; +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["Attend"] = ""; +App::$strings["Attendance Options"] = ""; +App::$strings["Vote"] = ""; +App::$strings["Voting Options"] = ""; +App::$strings["Save Bookmarks"] = "Salva segnalibro"; +App::$strings["Add to Calendar"] = "Aggiungi al calendario"; +App::$strings["This is an unsaved preview"] = ""; +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["Attach File"] = ""; +App::$strings["Insert Link"] = "Collegamento"; +App::$strings["Video"] = "Video"; +App::$strings["Your full name (required)"] = ""; +App::$strings["Your email address (required)"] = ""; +App::$strings["Your website URL (optional)"] = ""; +App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "L'autenticazione tramite il tuo hub non è disponibile. Puoi provare a disconnetterti per tentare di nuovo."; +App::$strings["Welcome %s. Remote authentication successful."] = "Ciao %s. L'accesso tramite il tuo hub è avvenuto con successo."; +App::$strings["parent"] = "cartella superiore"; +App::$strings["Collection"] = "Cartella"; +App::$strings["Principal"] = "Principale"; +App::$strings["Addressbook"] = "Rubrica"; +App::$strings["Calendar"] = "Calendario"; +App::$strings["Schedule Inbox"] = "Appuntamenti ricevuti"; +App::$strings["Schedule Outbox"] = "Appuntamenti inviati"; +App::$strings["Total"] = "Totale"; +App::$strings["Shared"] = "Condiviso"; +App::$strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file."; +App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Stai usando %1\$s di %2\$s che hai a disposizione per i file. (%3\$s%)"; +App::$strings["WARNING:"] = "ATTENZIONE:"; +App::$strings["Create new folder"] = "Nuova cartella"; +App::$strings["Upload file"] = "Carica un file"; +App::$strings["Drop files here to immediately upload"] = "Trascina i file qui per caricarli al volo"; +App::$strings["Forums"] = "Forum"; +App::$strings["Select Channel"] = ""; +App::$strings["Read-write"] = ""; +App::$strings["Read-only"] = ""; +App::$strings["My Calendars"] = ""; +App::$strings["Shared Calendars"] = ""; +App::$strings["Share this calendar"] = ""; +App::$strings["Calendar name and color"] = ""; +App::$strings["Create new calendar"] = ""; +App::$strings["Calendar Name"] = ""; +App::$strings["Calendar Tools"] = ""; +App::$strings["Import calendar"] = ""; +App::$strings["Select a calendar to import to"] = ""; +App::$strings["Addressbooks"] = ""; +App::$strings["Addressbook name"] = ""; +App::$strings["Create new addressbook"] = ""; +App::$strings["Addressbook Name"] = ""; +App::$strings["Addressbook Tools"] = ""; +App::$strings["Import addressbook"] = ""; +App::$strings["Select an addressbook to import to"] = ""; +App::$strings["Categories"] = "Categorie"; +App::$strings["Everything"] = "Tutto"; +App::$strings["Events Tools"] = "Gestione eventi"; +App::$strings["Export Calendar"] = "Esporta calendario"; +App::$strings["Import Calendar"] = "Importa calendario"; +App::$strings["Suggested Chatrooms"] = "Chat suggerite"; +App::$strings["HQ Control Panel"] = ""; +App::$strings["Create a new post"] = ""; +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["Chatrooms"] = "Chat"; +App::$strings["Overview"] = "Riepilogo"; +App::$strings["Rating Tools"] = "Valutazione"; +App::$strings["Rate Me"] = "Valutami"; +App::$strings["View Ratings"] = "Vedi le valutazioni ricevute"; +App::$strings["__ctx:widget__ Activity"] = "Attività"; +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["Wiki List"] = "Elenco wiki"; +App::$strings["Archives"] = "Archivi"; +App::$strings["Received Messages"] = "Ricevuti"; +App::$strings["Sent Messages"] = "Inviati"; +App::$strings["Conversations"] = "Conversazioni"; +App::$strings["No messages."] = "Nessun messaggio."; +App::$strings["Delete conversation"] = "Elimina la conversazione"; +App::$strings["Chat Members"] = "Partecipanti"; +App::$strings["photo/image"] = "foto/immagine"; +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["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["add"] = "aggiungi"; +App::$strings["Notes"] = "Note"; +App::$strings["Add new page"] = ""; +App::$strings["Wiki Pages"] = "Pagine wiki"; +App::$strings["Page name"] = ""; +App::$strings["Refresh"] = "Aggiorna"; +App::$strings["Tasks"] = "Attività"; +App::$strings["Suggestions"] = "Suggerimenti"; +App::$strings["See more..."] = "Altro..."; 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["Click to show more"] = "Clicca per mostrare tutto"; +App::$strings["Profile Creation"] = ""; +App::$strings["Upload profile photo"] = ""; +App::$strings["Upload cover photo"] = ""; +App::$strings["Edit your profile"] = "Modifica il tuo profilo"; +App::$strings["Find and Connect with others"] = ""; +App::$strings["Manage your connections"] = ""; +App::$strings["Communicate"] = ""; +App::$strings["View your channel homepage"] = ""; +App::$strings["View your network stream"] = ""; +App::$strings["Documentation"] = ""; +App::$strings["View public stream. Warning: not moderated"] = ""; +App::$strings["New Member Links"] = ""; +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["Account settings"] = "Il tuo account"; +App::$strings["Channel settings"] = "Impostazioni del canale"; +App::$strings["Additional features"] = "Funzionalità opzionali"; +App::$strings["Addon settings"] = ""; +App::$strings["Display settings"] = "Aspetto"; +App::$strings["Manage locations"] = "Gestione cloni del tuo canale"; +App::$strings["Export channel"] = "Esporta il canale"; +App::$strings["Connected apps"] = "App connesse"; +App::$strings["Permission Groups"] = ""; +App::$strings["Premium Channel Settings"] = "Canale premium - impostazioni"; +App::$strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; +App::$strings["New Network Activity"] = "Nuova attività nella tua rete"; +App::$strings["New Network Activity Notifications"] = ""; +App::$strings["View your network activity"] = ""; +App::$strings["Mark all notifications read"] = ""; +App::$strings["Show new posts only"] = ""; +App::$strings["Filter by name"] = ""; +App::$strings["New Home Activity"] = ""; +App::$strings["New Home Activity Notifications"] = ""; +App::$strings["View your home activity"] = ""; +App::$strings["Mark all notifications seen"] = ""; +App::$strings["New Mails"] = ""; +App::$strings["New Mails Notifications"] = ""; +App::$strings["View your private mails"] = ""; +App::$strings["Mark all messages seen"] = ""; +App::$strings["New Events"] = ""; +App::$strings["New Events Notifications"] = ""; +App::$strings["View events"] = ""; +App::$strings["Mark all events seen"] = "Marca come letti tutti gli eventi"; +App::$strings["New Connections Notifications"] = ""; +App::$strings["View all connections"] = ""; +App::$strings["New Files"] = ""; +App::$strings["New Files Notifications"] = ""; +App::$strings["Notices"] = "Avvisi"; +App::$strings["View all notices"] = ""; +App::$strings["Mark all notices seen"] = ""; +App::$strings["New Registrations"] = ""; +App::$strings["New Registrations Notifications"] = ""; +App::$strings["Public Stream Notifications"] = ""; +App::$strings["View the public stream"] = ""; +App::$strings["Sorry, you have got no notifications at the moment"] = ""; +App::$strings["Source channel not found."] = ""; +App::$strings["Create an account to access services and applications"] = ""; +App::$strings["Logout"] = "Esci"; +App::$strings["Login/Email"] = "Login/Email"; +App::$strings["Password"] = "Password"; +App::$strings["Remember me"] = "Resta connesso"; +App::$strings["Forgot your password?"] = "Hai dimenticato la password?"; +App::$strings["[\$Projectname] Website SSL error for %s"] = ""; +App::$strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire."; +App::$strings["[\$Projectname] Cron tasks not running on %s"] = ""; +App::$strings["Cron/Scheduled tasks not running."] = "Processi cron non avviati."; +App::$strings["never"] = "mai"; +App::$strings["Focus (Hubzilla default)"] = "Focus (predefinito)"; +App::$strings["Theme settings"] = "Impostazioni del tema"; +App::$strings["Narrow navbar"] = "Barra di navigazione ristretta"; +App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; +App::$strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone"; +App::$strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva"; +App::$strings["Link color"] = ""; +App::$strings["Set font-color for banner"] = "Colore del font del banner"; +App::$strings["Set the background color"] = "Colore di sfondo"; +App::$strings["Set the background image"] = "Immagine di sfondo"; +App::$strings["Set the background color of items"] = "Colore di sfondo degli oggetti"; +App::$strings["Set the background color of comments"] = "Colore di sfondo dei commenti"; +App::$strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; +App::$strings["Examples: 1rem, 100%, 16px"] = ""; +App::$strings["Set font-color for posts and comments"] = "Colore del carattere per post e commenti"; +App::$strings["Set radius of corners"] = "Raggio degli angoli stondati"; +App::$strings["Example: 4px"] = ""; +App::$strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; +App::$strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel"; +App::$strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito"; +App::$strings["Left align page content"] = "Allinea a sinistra il contenuto della pagina"; +App::$strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione"; +App::$strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; +App::$strings["Errors encountered deleting database table "] = ""; +App::$strings["Submit Settings"] = ""; +App::$strings["Drop tables when uninstalling?"] = ""; +App::$strings["If checked, the Rendezvous database tables will be deleted when the plugin is uninstalled."] = ""; +App::$strings["Mapbox Access Token"] = ""; +App::$strings["If you enter a Mapbox access token, it will be used to retrieve map tiles from Mapbox instead of the default OpenStreetMap tile server."] = ""; +App::$strings["Rendezvous"] = ""; +App::$strings["This identity has been deleted by another member due to inactivity. Please press the \"New identity\" button or refresh the page to register a new identity. You may use the same name."] = ""; +App::$strings["Welcome to Rendezvous!"] = ""; +App::$strings["Enter your name to join this rendezvous. To begin sharing your location with the other members, tap the GPS control. When your location is discovered, a red dot will appear and others will be able to see you on the map."] = ""; +App::$strings["Let's meet here"] = ""; +App::$strings["New marker"] = ""; +App::$strings["Edit marker"] = ""; +App::$strings["New identity"] = ""; +App::$strings["Delete marker"] = ""; +App::$strings["Delete member"] = ""; +App::$strings["Edit proximity alert"] = ""; +App::$strings["A proximity alert will be issued when this member is within a certain radius of you.

Enter a radius in meters (0 to disable):"] = ""; +App::$strings["distance"] = ""; +App::$strings["Proximity alert distance (meters)"] = ""; +App::$strings["A proximity alert will be issued when you are within a certain radius of the marker location.

Enter a radius in meters (0 to disable):"] = ""; +App::$strings["Marker proximity alert"] = ""; +App::$strings["Reminder note"] = ""; +App::$strings["Enter a note to be displayed when you are within the specified proximity..."] = ""; +App::$strings["Add new rendezvous"] = ""; +App::$strings["Create a new rendezvous and share the access link with those you wish to invite to the group. Those who open the link become members of the rendezvous. They can view other member locations, add markers to the map, or share their own locations with the group."] = ""; +App::$strings["Some setting"] = ""; +App::$strings["A setting"] = ""; +App::$strings["Skeleton Settings"] = ""; +App::$strings["GNU-Social Protocol Settings updated."] = ""; +App::$strings["The GNU-Social protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Enable the GNU-Social protocol for this channel"] = ""; +App::$strings["GNU-Social Protocol Settings"] = ""; +App::$strings["Follow"] = ""; +App::$strings["%1\$s is now following %2\$s"] = ""; +App::$strings["Planets Settings updated."] = ""; +App::$strings["Enable Planets Plugin"] = ""; +App::$strings["Planets Settings"] = ""; +App::$strings["System defaults:"] = ""; +App::$strings["Preferred Clipart IDs"] = ""; +App::$strings["List of preferred clipart ids. These will be shown first."] = ""; +App::$strings["Default Search Term"] = ""; +App::$strings["The default search term. These will be shown second."] = ""; +App::$strings["Return After"] = ""; +App::$strings["Page to load after image selection."] = ""; +App::$strings["Edit Profile"] = "Modifica il profilo"; +App::$strings["Profile List"] = ""; +App::$strings["Order of Preferred"] = ""; +App::$strings["Sort order of preferred clipart ids."] = ""; +App::$strings["Newest first"] = ""; +App::$strings["As entered"] = ""; +App::$strings["Order of other"] = ""; +App::$strings["Sort order of other clipart ids."] = ""; +App::$strings["Most downloaded first"] = ""; +App::$strings["Most liked first"] = ""; +App::$strings["Preferred IDs Message"] = ""; +App::$strings["Message to display above preferred results."] = ""; +App::$strings["Uploaded by: "] = ""; +App::$strings["Drawn by: "] = ""; +App::$strings["Use this image"] = ""; +App::$strings["Or select from a free OpenClipart.org image:"] = ""; +App::$strings["Search Term"] = ""; +App::$strings["Unknown error. Please try again later."] = ""; +App::$strings["Profile photo updated successfully."] = ""; +App::$strings["Flag Adult Photos"] = "Marca le foto per adulti"; +App::$strings["Provide photo edit option to hide inappropriate photos from default album view"] = "Permetti di nascondere le foto inappropriate nella visualizzazione degli album"; +App::$strings["Post to WordPress"] = ""; +App::$strings["Enable WordPress Post Plugin"] = ""; +App::$strings["WordPress username"] = ""; +App::$strings["WordPress password"] = ""; +App::$strings["WordPress API URL"] = ""; +App::$strings["Typically https://your-blog.tld/xmlrpc.php"] = ""; +App::$strings["WordPress blogid"] = ""; +App::$strings["For multi-user sites such as wordpress.com, otherwise leave blank"] = ""; +App::$strings["Post to WordPress by default"] = ""; +App::$strings["Forward comments (requires hubzilla_wp plugin)"] = ""; +App::$strings["WordPress Post Settings"] = ""; +App::$strings["Wordpress Settings saved."] = ""; +App::$strings["This plugin looks in posts for the words/text you specify below, and collapses any content containing those keywords so it is not displayed at inappropriate times, such as sexual innuendo that may be improper in a work setting. It is polite and recommended to tag any content containing nudity with #NSFW. This filter can also match any other word/text you specify, and can thereby be used as a general purpose content filter."] = ""; +App::$strings["Enable Content filter"] = ""; +App::$strings["Comma separated list of keywords to hide"] = ""; +App::$strings["Word, /regular-expression/, lang=xx, lang!=xx"] = ""; +App::$strings["Not Safe For Work Settings"] = ""; +App::$strings["General Purpose Content Filter"] = ""; +App::$strings["NSFW Settings saved."] = ""; +App::$strings["Possible adult content"] = ""; +App::$strings["%s - view"] = ""; +App::$strings["Post to Insanejournal"] = ""; +App::$strings["Enable InsaneJournal Post Plugin"] = ""; +App::$strings["InsaneJournal username"] = ""; +App::$strings["InsaneJournal password"] = ""; +App::$strings["Post to InsaneJournal by default"] = ""; +App::$strings["InsaneJournal Post Settings"] = ""; +App::$strings["Insane Journal Settings saved."] = ""; +App::$strings["Post to Dreamwidth"] = ""; +App::$strings["Enable Dreamwidth Post Plugin"] = ""; +App::$strings["Dreamwidth username"] = ""; +App::$strings["Dreamwidth password"] = ""; +App::$strings["Post to Dreamwidth by default"] = ""; +App::$strings["Dreamwidth Post Settings"] = ""; +App::$strings["New registration"] = ""; +App::$strings["Message sent to %s. New account registration: %s"] = ""; +App::$strings["Hubzilla Directory Stats"] = ""; +App::$strings["Total Hubs"] = ""; +App::$strings["Hubzilla Hubs"] = ""; +App::$strings["Friendica Hubs"] = ""; +App::$strings["Diaspora Pods"] = ""; +App::$strings["Hubzilla Channels"] = ""; +App::$strings["Friendica Channels"] = ""; +App::$strings["Diaspora Channels"] = ""; +App::$strings["Aged 35 and above"] = ""; +App::$strings["Aged 34 and under"] = ""; +App::$strings["Average Age"] = ""; +App::$strings["Known Chatrooms"] = ""; +App::$strings["Known Tags"] = ""; +App::$strings["Please note Diaspora and Friendica statistics are merely those **this directory** is aware of, and not all those known in the network. This also applies to chatrooms,"] = ""; +App::$strings["Your Webbie:"] = ""; +App::$strings["Fontsize (px):"] = ""; +App::$strings["Link:"] = ""; +App::$strings["Like us on Hubzilla"] = "Metti un like su Hubzilla"; +App::$strings["Embed:"] = ""; +App::$strings["Photos imported"] = ""; +App::$strings["Redmatrix Photo Album Import"] = ""; +App::$strings["This will import all your Redmatrix photo albums to this channel."] = ""; +App::$strings["Redmatrix Server base URL"] = ""; +App::$strings["Redmatrix Login Username"] = ""; +App::$strings["Redmatrix Login Password"] = ""; +App::$strings["Import just this album"] = ""; +App::$strings["Leave blank to import all albums"] = ""; +App::$strings["Maximum count to import"] = ""; +App::$strings["0 or blank to import all available"] = ""; +App::$strings["Channels to auto connect"] = ""; +App::$strings["Comma separated list"] = ""; +App::$strings["Popular Channels"] = ""; +App::$strings["IRC Settings"] = ""; +App::$strings["IRC settings saved."] = ""; +App::$strings["IRC Chatroom"] = ""; +App::$strings["Post to LiveJournal"] = ""; +App::$strings["Enable LiveJournal Post Plugin"] = ""; +App::$strings["LiveJournal username"] = ""; +App::$strings["LiveJournal password"] = ""; +App::$strings["Post to LiveJournal by default"] = ""; +App::$strings["LiveJournal Post Settings"] = ""; +App::$strings["LiveJournal Settings saved."] = ""; +App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; +App::$strings["The error message was:"] = ""; +App::$strings["First Name"] = ""; +App::$strings["Last Name"] = ""; +App::$strings["Nickname"] = ""; +App::$strings["Full Name"] = ""; +App::$strings["Profile Photo 16px"] = ""; +App::$strings["Profile Photo 32px"] = ""; +App::$strings["Profile Photo 48px"] = ""; +App::$strings["Profile Photo 64px"] = ""; +App::$strings["Profile Photo 80px"] = ""; +App::$strings["Profile Photo 128px"] = ""; +App::$strings["Timezone"] = ""; +App::$strings["Birth Year"] = ""; +App::$strings["Birth Month"] = ""; +App::$strings["Birth Day"] = ""; +App::$strings["Birthdate"] = ""; +App::$strings["OpenID protocol error. No ID returned."] = ""; +App::$strings["Login failed."] = "Accesso fallito."; +App::$strings["Male"] = "Maschio"; +App::$strings["Female"] = "Femmina"; +App::$strings["You're welcome."] = ""; +App::$strings["Ah shucks..."] = ""; +App::$strings["Don't mention it."] = ""; +App::$strings["<blush>"] = ""; +App::$strings["Page to load after login"] = ""; +App::$strings["Examples: "apps", "network?f=&gid=37" (privacy collection), "channel" or "notifications/system" (leave blank for default network page (grid)."] = ""; +App::$strings["Startpage Settings"] = ""; +App::$strings["bitchslap"] = ""; +App::$strings["bitchslapped"] = ""; +App::$strings["shag"] = ""; +App::$strings["shagged"] = ""; +App::$strings["patent"] = ""; +App::$strings["patented"] = ""; +App::$strings["hug"] = ""; +App::$strings["hugged"] = ""; +App::$strings["murder"] = ""; +App::$strings["murdered"] = ""; +App::$strings["worship"] = ""; +App::$strings["worshipped"] = ""; +App::$strings["kiss"] = ""; +App::$strings["kissed"] = ""; +App::$strings["tempt"] = ""; +App::$strings["tempted"] = ""; +App::$strings["raise eyebrows at"] = ""; +App::$strings["raised their eyebrows at"] = ""; +App::$strings["insult"] = ""; +App::$strings["insulted"] = ""; +App::$strings["praise"] = ""; +App::$strings["praised"] = ""; +App::$strings["be dubious of"] = ""; +App::$strings["was dubious of"] = ""; +App::$strings["eat"] = ""; +App::$strings["ate"] = ""; +App::$strings["giggle and fawn at"] = ""; +App::$strings["giggled and fawned at"] = ""; +App::$strings["doubt"] = ""; +App::$strings["doubted"] = ""; +App::$strings["glare"] = ""; +App::$strings["glared at"] = ""; +App::$strings["fuck"] = ""; +App::$strings["fucked"] = ""; +App::$strings["bonk"] = ""; +App::$strings["bonked"] = ""; +App::$strings["declare undying love for"] = ""; +App::$strings["declared undying love for"] = ""; +App::$strings["Diaspora Protocol Settings updated."] = ""; +App::$strings["The Diaspora protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Enable the Diaspora protocol for this channel"] = ""; +App::$strings["Allow any Diaspora member to comment on your public posts"] = ""; +App::$strings["Prevent your hashtags from being redirected to other sites"] = ""; +App::$strings["Sign and forward posts and comments with no existing Diaspora signature"] = ""; +App::$strings["Followed hashtags (comma separated, do not include the #)"] = ""; +App::$strings["Diaspora Protocol Settings"] = ""; +App::$strings["No username found in import file."] = ""; +App::$strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; +App::$strings["Your account on %s will expire in a few days."] = ""; +App::$strings["Your $Productname test account is about to expire."] = ""; +App::$strings["Enable Rainbowtag"] = ""; +App::$strings["Rainbowtag Settings"] = ""; +App::$strings["Rainbowtag Settings saved."] = ""; +App::$strings["Show Upload Limits"] = ""; +App::$strings["Hubzilla configured maximum size: "] = ""; +App::$strings["PHP upload_max_filesize: "] = ""; +App::$strings["PHP post_max_size (must be larger than upload_max_filesize): "] = ""; +App::$strings["generic profile image"] = ""; +App::$strings["random geometric pattern"] = ""; +App::$strings["monster face"] = ""; +App::$strings["computer generated face"] = ""; +App::$strings["retro arcade style face"] = ""; +App::$strings["Hub default profile photo"] = ""; +App::$strings["Information"] = ""; +App::$strings["Libravatar addon is installed, too. Please disable Libravatar addon or this Gravatar addon.
The Libravatar addon will fall back to Gravatar if nothing was found at Libravatar."] = ""; +App::$strings["Save Settings"] = ""; +App::$strings["Default avatar image"] = ""; +App::$strings["Select default avatar image if none was found at Gravatar. See README"] = ""; +App::$strings["Rating of images"] = ""; +App::$strings["Select the appropriate avatar rating for your site. See README"] = ""; +App::$strings["Gravatar settings updated."] = ""; +App::$strings["Hubzilla File Storage Import"] = ""; +App::$strings["This will import all your cloud files from another server."] = ""; +App::$strings["Hubzilla Server base URL"] = ""; +App::$strings["Since modified date yyyy-mm-dd"] = ""; +App::$strings["Until modified date yyyy-mm-dd"] = ""; +App::$strings["Recent Channel/Profile Viewers"] = ""; +App::$strings["This plugin/addon has not been configured."] = ""; +App::$strings["Please visit the Visage settings on %s"] = ""; +App::$strings["your feature settings page"] = ""; +App::$strings["No entries."] = ""; +App::$strings["Enable Visage Visitor Logging"] = ""; +App::$strings["Visage Settings"] = ""; +App::$strings["Nsabait Settings updated."] = ""; +App::$strings["Enable NSAbait Plugin"] = ""; +App::$strings["NSAbait Settings"] = ""; +App::$strings["Send test email"] = ""; +App::$strings["No recipients found."] = ""; +App::$strings["Mail sent."] = ""; +App::$strings["Sending of mail failed."] = ""; +App::$strings["Mail Test"] = ""; +App::$strings["Message subject"] = ""; +App::$strings["Use markdown for editing posts"] = ""; +App::$strings["View Larger"] = ""; +App::$strings["Tile Server URL"] = ""; +App::$strings["A list of public tile servers"] = ""; +App::$strings["Nominatim (reverse geocoding) Server URL"] = ""; +App::$strings["A list of Nominatim servers"] = ""; +App::$strings["Default zoom"] = ""; +App::$strings["The default zoom level. (1:world, 18:highest, also depends on tile server)"] = ""; +App::$strings["Include marker on map"] = ""; +App::$strings["Include a marker on the map."] = ""; +App::$strings["text to include in all outgoing posts from this site"] = ""; +App::$strings["Post to Friendica"] = ""; +App::$strings["rtof Settings saved."] = ""; +App::$strings["Allow posting to Friendica"] = ""; +App::$strings["Send public postings to Friendica by default"] = ""; +App::$strings["Friendica API Path"] = ""; +App::$strings["https://{sitename}/api"] = ""; +App::$strings["Friendica login name"] = ""; +App::$strings["Friendica password"] = ""; +App::$strings["Hubzilla to Friendica Post Settings"] = ""; +App::$strings["Status:"] = "Stato:"; +App::$strings["Activate addon"] = ""; +App::$strings["Hide Jappixmini Chat-Widget from the webinterface"] = ""; +App::$strings["Jabber username"] = ""; +App::$strings["Jabber server"] = ""; +App::$strings["Jabber BOSH host URL"] = ""; +App::$strings["Jabber password"] = ""; +App::$strings["Encrypt Jabber password with Hubzilla password"] = ""; +App::$strings["Hubzilla password"] = ""; +App::$strings["Approve subscription requests from Hubzilla contacts automatically"] = ""; +App::$strings["Purge internal list of jabber addresses of contacts"] = ""; +App::$strings["Configuration Help"] = ""; +App::$strings["Jappix Mini Settings"] = ""; +App::$strings["Currently blocked"] = ""; +App::$strings["No channels currently blocked"] = ""; +App::$strings["\"Superblock\" Settings"] = ""; +App::$strings["Block Completely"] = ""; +App::$strings["superblock settings updated"] = ""; +App::$strings["Federate"] = ""; +App::$strings["nofed Settings saved."] = ""; +App::$strings["Allow Federation Toggle"] = ""; +App::$strings["Federate posts by default"] = ""; +App::$strings["NoFed Settings"] = ""; +App::$strings["Post to Red"] = ""; +App::$strings["Channel is required."] = ""; +App::$strings["redred Settings saved."] = ""; +App::$strings["Allow posting to another Hubzilla Channel"] = ""; +App::$strings["Send public postings to Hubzilla channel by default"] = ""; +App::$strings["Hubzilla API Path"] = ""; +App::$strings["Hubzilla login name"] = ""; +App::$strings["Hubzilla channel name"] = ""; +App::$strings["Hubzilla Crosspost Settings"] = ""; +App::$strings["Logfile archive directory"] = ""; +App::$strings["Directory to store rotated logs"] = ""; +App::$strings["Logfile size in bytes before rotating"] = ""; +App::$strings["Number of logfiles to retain"] = ""; +App::$strings["Friendica Photo Album Import"] = ""; +App::$strings["This will import all your Friendica photo albums to this Red channel."] = ""; +App::$strings["Friendica Server base URL"] = ""; +App::$strings["Friendica Login Username"] = ""; +App::$strings["Friendica Login Password"] = ""; +App::$strings["ActivityPub"] = ""; +App::$strings["ActivityPub Protocol Settings updated."] = ""; +App::$strings["The ActivityPub protocol does not support location independence. Connections you make within that network may be unreachable from alternate channel locations."] = ""; +App::$strings["Enable the ActivityPub protocol for this channel"] = ""; +App::$strings["Send multi-media HTML articles"] = ""; +App::$strings["Not supported by some microblog services such as Mastodon"] = ""; +App::$strings["ActivityPub Protocol Settings"] = ""; +App::$strings["Project Servers and Resources"] = ""; +App::$strings["Project Creator and Tech Lead"] = ""; +App::$strings["Admin, developer, directorymin, support bloke"] = ""; +App::$strings["And the hundreds of other people and organisations who helped make the Hubzilla possible."] = ""; +App::$strings["The Redmatrix/Hubzilla projects are provided primarily by volunteers giving their time and expertise - and often paying out of pocket for services they share with others."] = ""; +App::$strings["There is no corporate funding and no ads, and we do not collect and sell your personal information. (We don't control your personal information - you do.)"] = ""; +App::$strings["Help support our ground-breaking work in decentralisation, web identity, and privacy."] = ""; +App::$strings["Your donations keep servers and services running and also helps us to provide innovative new features and continued development."] = ""; +App::$strings["Donate"] = ""; +App::$strings["Choose a project, developer, or public hub to support with a one-time donation"] = ""; +App::$strings["Donate Now"] = ""; +App::$strings["Or become a project sponsor (Hubzilla Project only)"] = ""; +App::$strings["Please indicate if you would like your first name or full name (or nothing) to appear in our sponsor listing"] = ""; +App::$strings["Sponsor"] = ""; +App::$strings["Special thanks to: "] = ""; +App::$strings["This is a fairly comprehensive and complete guitar chord dictionary which will list most of the available ways to play a certain chord, starting from the base of the fingerboard up to a few frets beyond the twelfth fret (beyond which everything repeats). A couple of non-standard tunings are provided for the benefit of slide players, etc."] = "Questo è un dizionario piuttosto esteso e completo di accordi per chitarra che elenca quasi i tutti i modi possibili di suonare un certo accordo a partire dal tasto iniziale fino a circa il dodicesimo (dopo di cui si ripete tutto). Sono previste anche un paio di accordature non standard a beneficio di chi le usa."; +App::$strings["Chord names start with a root note (A-G) and may include sharps (#) and flats (b). This software will parse most of the standard naming conventions such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements."] = "I nomi degli accordi iniziano con la nota fondamentale (A-G) e possono includere diesis (#) e bemolle (b). Questo software gestisce gran parte delle notazioni convenzionali come maj, min, dim, sus(2 o 4), aug."; +App::$strings["Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."] = "Esempi validi includono A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, E7b13b11 ..."; +App::$strings["Guitar Chords"] = "Accordi per chitarra"; +App::$strings["The complete online chord dictionary"] = "Il dizionario completo degli accordi online"; +App::$strings["Tuning"] = "Accordatura"; +App::$strings["Chord name: example: Em7"] = "Nome accordo: per esempio Em7"; +App::$strings["Show for left handed stringing"] = "Mostra l'accordatura per mancini"; +App::$strings["Quick Reference"] = "Riferimento veloce"; +App::$strings["Post to Libertree"] = ""; +App::$strings["Enable Libertree Post Plugin"] = ""; +App::$strings["Libertree API token"] = ""; +App::$strings["Libertree site URL"] = ""; +App::$strings["Post to Libertree by default"] = ""; +App::$strings["Libertree Post Settings"] = ""; +App::$strings["Libertree Settings saved."] = ""; +App::$strings["Flattr this!"] = ""; +App::$strings["Flattr widget settings updated."] = ""; +App::$strings["Flattr user"] = ""; +App::$strings["URL of the Thing to flattr"] = ""; +App::$strings["If empty channel URL is used"] = ""; +App::$strings["Title of the Thing to flattr"] = ""; +App::$strings["If empty \"channel name on The Hubzilla\" will be used"] = ""; +App::$strings["Static or dynamic flattr button"] = ""; +App::$strings["static"] = ""; +App::$strings["dynamic"] = ""; +App::$strings["Alignment of the widget"] = ""; +App::$strings["left"] = ""; +App::$strings["right"] = ""; +App::$strings["Enable Flattr widget"] = ""; +App::$strings["Flattr Widget Settings"] = ""; +App::$strings["Post to GNU social"] = ""; +App::$strings["Please contact your site administrator.
The provided API URL is not valid."] = ""; +App::$strings["We could not contact the GNU social API with the Path you entered."] = ""; +App::$strings["GNU social settings updated."] = ""; +App::$strings["Globally Available GNU social OAuthKeys"] = ""; +App::$strings["There are preconfigured OAuth key pairs for some GNU social servers available. If you are using one of them, please use these credentials.
If not feel free to connect to any other GNU social instance (see below)."] = ""; +App::$strings["Provide your own OAuth Credentials"] = ""; +App::$strings["No consumer key pair for GNU social found. Register your Hubzilla Account as an desktop client on your GNU social account, copy the consumer key pair here and enter the API base root.
Before you register your own OAuth key pair ask the administrator if there is already a key pair for this Hubzilla installation at your favourite GNU social installation."] = ""; +App::$strings["OAuth Consumer Key"] = ""; +App::$strings["OAuth Consumer Secret"] = ""; +App::$strings["Base API Path"] = ""; +App::$strings["Remember the trailing /"] = ""; +App::$strings["GNU social application name"] = ""; +App::$strings["To connect to your GNU social account click the button below to get a security code from GNU social which you have to copy into the input box below and submit the form. Only your public posts will be posted to GNU social."] = ""; +App::$strings["Log in with GNU social"] = ""; +App::$strings["Copy the security code from GNU social here"] = ""; +App::$strings["Cancel Connection Process"] = ""; +App::$strings["Current GNU social API is"] = ""; +App::$strings["Cancel GNU social Connection"] = ""; +App::$strings["Currently connected to: "] = ""; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to GNU social will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +App::$strings["Allow posting to GNU social"] = ""; +App::$strings["If enabled your public postings can be posted to the associated GNU-social account"] = ""; +App::$strings["Post to GNU social by default"] = ""; +App::$strings["If enabled your public postings will be posted to the associated GNU-social account by default"] = ""; +App::$strings["Clear OAuth configuration"] = ""; +App::$strings["GNU social Post Settings"] = ""; +App::$strings["API URL"] = ""; +App::$strings["Application name"] = ""; +App::$strings["QR code"] = ""; +App::$strings["QR Generator"] = ""; +App::$strings["Enter some text"] = ""; +App::$strings["Invalid game."] = ""; +App::$strings["You are not a player in this game."] = ""; +App::$strings["You must be a local channel to create a game."] = ""; +App::$strings["You must select one opponent that is not yourself."] = ""; +App::$strings["Random color chosen."] = ""; +App::$strings["Error creating new game."] = ""; +App::$strings["Requested channel is not available."] = "Il canale che cerchi non è disponibile."; +App::$strings["You must select a local channel /chess/channelname"] = ""; +App::$strings["Enable notifications"] = ""; +App::$strings["Post to Twitter"] = ""; +App::$strings["Twitter settings updated."] = ""; +App::$strings["No consumer key pair for Twitter found. Please contact your site administrator."] = ""; +App::$strings["At this Hubzilla instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your public posts will be posted to Twitter."] = ""; +App::$strings["Log in with Twitter"] = ""; +App::$strings["Copy the PIN from Twitter here"] = ""; +App::$strings["Note: Due your privacy settings (Hide your profile details from unknown viewers?) the link potentially included in public postings relayed to Twitter will lead the visitor to a blank page informing the visitor that the access to your profile has been restricted."] = ""; +App::$strings["Allow posting to Twitter"] = ""; +App::$strings["If enabled your public postings can be posted to the associated Twitter account"] = ""; +App::$strings["Twitter post length"] = ""; +App::$strings["Maximum tweet length"] = ""; +App::$strings["Send public postings to Twitter by default"] = ""; +App::$strings["If enabled your public postings will be posted to the associated Twitter account by default"] = ""; +App::$strings["Twitter Post Settings"] = ""; +App::$strings["Deactivate the feature"] = ""; +App::$strings["Hide the button and show the smilies directly."] = ""; +App::$strings["Smileybutton Settings"] = ""; +App::$strings["This website is tracked using the Piwik analytics tool."] = ""; +App::$strings["If you do not want that your visits are logged this way you can set a cookie to prevent Piwik from tracking further visits of the site (opt-out)."] = ""; +App::$strings["Piwik Base URL"] = ""; +App::$strings["Absolute path to your Piwik installation. (without protocol (http/s), with trailing slash)"] = ""; +App::$strings["Site ID"] = ""; +App::$strings["Show opt-out cookie link?"] = ""; +App::$strings["Asynchronous tracking"] = ""; +App::$strings["Enable frontend JavaScript error tracking"] = ""; +App::$strings["This feature requires Piwik >= 2.2.0"] = ""; +App::$strings["Edit your profile and change settings."] = ""; +App::$strings["Click here to see activity from your connections."] = ""; +App::$strings["Click here to see your channel home."] = ""; +App::$strings["You can access your private messages from here."] = ""; +App::$strings["Create new events here."] = ""; +App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = ""; +App::$strings["System notifications will arrive here"] = ""; +App::$strings["Search for content and users"] = ""; +App::$strings["Browse for new contacts"] = ""; +App::$strings["Launch installed apps"] = ""; +App::$strings["Looking for help? Click here."] = ""; +App::$strings["New events have occurred in your network. Click here to see what has happened!"] = ""; +App::$strings["You have received a new private message. Click here to see from who!"] = ""; +App::$strings["There are events this week. Click here too see which!"] = ""; +App::$strings["You have received a new introduction. Click here to see who!"] = ""; +App::$strings["There is a new system notification. Click here to see what has happened!"] = ""; +App::$strings["Click here to share text, images, videos and sound."] = ""; +App::$strings["You can write an optional title for your update (good for long posts)."] = ""; +App::$strings["Entering some categories here makes it easier to find your post later."] = ""; +App::$strings["Share photos, links, location, etc."] = ""; +App::$strings["Only want to share content for a while? Make it expire at a certain date."] = ""; +App::$strings["You can password protect content."] = ""; +App::$strings["Choose who you share with."] = ""; +App::$strings["Click here when you are done."] = ""; +App::$strings["Adjust from which channels posts should be displayed."] = ""; +App::$strings["Only show posts from channels in the specified privacy group."] = ""; +App::$strings["Easily find posts containing tags (keywords preceded by the \"#\" symbol)."] = ""; +App::$strings["Easily find posts in given category."] = ""; +App::$strings["Easily find posts by date."] = ""; +App::$strings["Suggested users who have volounteered to be shown as suggestions, and who we think you might find interesting."] = ""; +App::$strings["Here you see channels you have connected to."] = ""; +App::$strings["Save your search so you can repeat it at a later date."] = ""; +App::$strings["If you see this icon you can be sure that the sender is who it say it is. It is normal that it is not always possible to verify the sender, so the icon will be missing sometimes. There is usually no need to worry about that."] = ""; +App::$strings["Danger! It seems someone tried to forge a message! This message is not necessarily from who it says it is from!"] = ""; +App::$strings["Welcome to Hubzilla! Would you like to see a tour of the UI?

You can pause it at any time and continue where you left off by reloading the page, or navigting to another page.

You can also advance by pressing the return key"] = "Benvenuto su Hubzilla! Vorresti vedere una panoramica sulla UI?

Puoi metterla in pausa in qualsiasi momento e continuare da dove hai interrorro ricaricando la pagina, o spostandoti su un'altra pagina.

Puoi anche andare avanti premendo il tasto invio"; +App::$strings["Extended Identity Sharing"] = ""; +App::$strings["Share your identity with all websites on the internet. When disabled, identity is only shared with \$Projectname sites."] = ""; +App::$strings["Three Dimensional Tic-Tac-Toe"] = ""; +App::$strings["3D Tic-Tac-Toe"] = ""; +App::$strings["New game"] = ""; +App::$strings["New game with handicap"] = ""; +App::$strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = ""; +App::$strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = ""; +App::$strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = ""; +App::$strings["You go first..."] = ""; +App::$strings["I'm going first this time..."] = ""; +App::$strings["You won!"] = ""; +App::$strings["\"Cat\" game!"] = ""; +App::$strings["I won!"] = ""; +App::$strings["Message to display on every page on this server"] = ""; +App::$strings["Pageheader Settings"] = ""; +App::$strings["pageheader Settings saved."] = ""; +App::$strings["Only authenticate automatically to sites of your friends"] = ""; +App::$strings["By default you are automatically authenticated anywhere in the network"] = ""; +App::$strings["Authchoose Settings"] = ""; +App::$strings["Atuhchoose Settings updated."] = ""; +App::$strings["lonely"] = ""; +App::$strings["drunk"] = ""; +App::$strings["horny"] = ""; +App::$strings["stoned"] = ""; +App::$strings["fucked up"] = ""; +App::$strings["clusterfucked"] = ""; +App::$strings["crazy"] = ""; +App::$strings["hurt"] = ""; +App::$strings["sleepy"] = ""; +App::$strings["grumpy"] = ""; +App::$strings["high"] = ""; +App::$strings["semi-conscious"] = ""; +App::$strings["in love"] = ""; +App::$strings["in lust"] = ""; +App::$strings["naked"] = ""; +App::$strings["stinky"] = ""; +App::$strings["sweaty"] = ""; +App::$strings["bleeding out"] = ""; +App::$strings["victorious"] = ""; +App::$strings["defeated"] = ""; +App::$strings["envious"] = ""; +App::$strings["jealous"] = ""; +App::$strings["XMPP settings updated."] = ""; +App::$strings["Enable Chat"] = ""; +App::$strings["Individual credentials"] = ""; +App::$strings["Jabber BOSH server"] = ""; +App::$strings["XMPP Settings"] = ""; +App::$strings["Jabber BOSH host"] = ""; +App::$strings["Use central userbase"] = ""; +App::$strings["If enabled, members will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = ""; +App::$strings["Who likes me?"] = "Chi mi ha messo un mi piace?"; +App::$strings["You are now authenticated to pumpio."] = ""; +App::$strings["return to the featured settings page"] = ""; +App::$strings["Post to Pump.io"] = ""; +App::$strings["Pump.io servername"] = ""; +App::$strings["Without \"http://\" or \"https://\""] = ""; +App::$strings["Pump.io username"] = ""; +App::$strings["Without the servername"] = ""; +App::$strings["You are not authenticated to pumpio"] = ""; +App::$strings["(Re-)Authenticate your pump.io connection"] = ""; +App::$strings["Enable pump.io Post Plugin"] = ""; +App::$strings["Post to pump.io by default"] = ""; +App::$strings["Should posts be public"] = ""; +App::$strings["Mirror all public posts"] = ""; +App::$strings["Pump.io Post Settings"] = ""; +App::$strings["PumpIO Settings saved."] = ""; +App::$strings["An account has been created for you."] = ""; +App::$strings["Authentication successful but rejected: account creation is disabled."] = ""; +App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Cerca %1\$s (%2\$s)"; +App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; +App::$strings["Search \$Projectname"] = ""; +App::$strings["Redmatrix File Storage Import"] = ""; +App::$strings["This will import all your Redmatrix cloud files to this channel."] = ""; +App::$strings["file"] = ""; +App::$strings["Send email to all members"] = ""; +App::$strings["%1\$d of %2\$d messages sent."] = ""; +App::$strings["Send email to all hub members."] = ""; +App::$strings["Sender Email address"] = ""; +App::$strings["Test mode (only send to hub administrator)"] = ""; +App::$strings["Frequently"] = "Frequentemente"; +App::$strings["Hourly"] = "Ogni ora"; +App::$strings["Twice daily"] = "Due volte al giorno"; +App::$strings["Daily"] = "Ogni giorno"; +App::$strings["Weekly"] = "Ogni settimana"; +App::$strings["Monthly"] = "Ogni mese"; +App::$strings["Currently Male"] = "Al momento maschio"; +App::$strings["Currently Female"] = "Al momento femmina"; +App::$strings["Mostly Male"] = "Prevalentemente maschio"; +App::$strings["Mostly Female"] = "Prevalentemente femmina"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Intersex"; +App::$strings["Transsexual"] = "Transessuale"; +App::$strings["Hermaphrodite"] = "Ermafrodito"; +App::$strings["Neuter"] = "Neutro"; +App::$strings["Non-specific"] = "Non specificato"; +App::$strings["Undecided"] = "Indeciso"; +App::$strings["Males"] = "Maschi"; +App::$strings["Females"] = "Femmine"; +App::$strings["Gay"] = "Gay"; +App::$strings["Lesbian"] = "Lesbica"; +App::$strings["No Preference"] = "Senza preferenza"; +App::$strings["Bisexual"] = "Bisessuale"; +App::$strings["Autosexual"] = "Autosessuale"; +App::$strings["Abstinent"] = "Astinente"; +App::$strings["Virgin"] = "Vergine"; +App::$strings["Deviant"] = "Deviato"; +App::$strings["Fetish"] = "Feticista"; +App::$strings["Oodles"] = "Un sacco"; +App::$strings["Nonsexual"] = "Asessuato"; +App::$strings["Single"] = "Single"; +App::$strings["Lonely"] = "Da solo"; +App::$strings["Available"] = "Disponibile"; +App::$strings["Unavailable"] = "Non disponibile"; +App::$strings["Has crush"] = "Ha una cotta"; +App::$strings["Infatuated"] = "Infatuato/a"; +App::$strings["Dating"] = "Disponibile a un incontro"; +App::$strings["Unfaithful"] = "Infedele"; +App::$strings["Sex Addict"] = "Sesso-dipendente"; +App::$strings["Friends/Benefits"] = "Amici con qualcosa in più"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Impegnato"; +App::$strings["Married"] = "Sposato/a"; +App::$strings["Imaginarily married"] = "Con matrimonio immaginario"; +App::$strings["Partners"] = "Partner"; +App::$strings["Cohabiting"] = "Convivente"; +App::$strings["Common law"] = "Matrimonio regolare"; +App::$strings["Happy"] = "Felice"; +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["likes %1\$s's %2\$s"] = "ha messo mi piace al %2\$s di %1\$s"; +App::$strings["doesn't like %1\$s's %2\$s"] = "ha messo non mi piace al %2\$s di %1\$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"; +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["Choose a different album..."] = "Scegli un altro album..."; +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["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["Profile Details"] = "Dettagli del profilo"; +App::$strings["Photo Albums"] = "Album foto"; +App::$strings["Files and Storage"] = "Archivio file"; +App::$strings["Bookmarks"] = "Segnalibri"; +App::$strings["Saved Bookmarks"] = "Segnalibri salvati"; +App::$strings["View Cards"] = ""; +App::$strings["articles"] = ""; +App::$strings["View Articles"] = ""; +App::$strings["View Webpages"] = ""; +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["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["%1\$s's bookmarks"] = "I segnalibri di %1\$s"; +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["Cloned channel not found. Import failed."] = "Impossibile trovare il canale clonato. L'importazione è fallita."; App::$strings["prev"] = "prec"; App::$strings["first"] = "inizio"; App::$strings["last"] = "fine"; @@ -1704,7 +2736,6 @@ 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"; @@ -1759,12 +2790,16 @@ 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["Download binary/encrypted content"] = ""; 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["HTML"] = ""; +App::$strings["Comanche Layout"] = ""; +App::$strings["PHP"] = ""; 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["a-z, 0-9, -, and _ only"] = ""; App::$strings["Design Tools"] = "Strumenti di design"; App::$strings["Pages"] = "Pagine"; App::$strings["Import website..."] = "Importazione sito web..."; @@ -1773,213 +2808,37 @@ 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."; -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["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."; -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"; -App::$strings["Daily"] = "Ogni giorno"; -App::$strings["Weekly"] = "Ogni settimana"; -App::$strings["Monthly"] = "Ogni mese"; -App::$strings["Male"] = "Maschio"; -App::$strings["Female"] = "Femmina"; -App::$strings["Currently Male"] = "Al momento maschio"; -App::$strings["Currently Female"] = "Al momento femmina"; -App::$strings["Mostly Male"] = "Prevalentemente maschio"; -App::$strings["Mostly Female"] = "Prevalentemente femmina"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Intersex"; -App::$strings["Transsexual"] = "Transessuale"; -App::$strings["Hermaphrodite"] = "Ermafrodito"; -App::$strings["Neuter"] = "Neutro"; -App::$strings["Non-specific"] = "Non specificato"; -App::$strings["Undecided"] = "Indeciso"; -App::$strings["Males"] = "Maschi"; -App::$strings["Females"] = "Femmine"; -App::$strings["Gay"] = "Gay"; -App::$strings["Lesbian"] = "Lesbica"; -App::$strings["No Preference"] = "Senza preferenza"; -App::$strings["Bisexual"] = "Bisessuale"; -App::$strings["Autosexual"] = "Autosessuale"; -App::$strings["Abstinent"] = "Astinente"; -App::$strings["Virgin"] = "Vergine"; -App::$strings["Deviant"] = "Deviato"; -App::$strings["Fetish"] = "Feticista"; -App::$strings["Oodles"] = "Un sacco"; -App::$strings["Nonsexual"] = "Asessuato"; -App::$strings["Single"] = "Single"; -App::$strings["Lonely"] = "Da solo"; -App::$strings["Available"] = "Disponibile"; -App::$strings["Unavailable"] = "Non disponibile"; -App::$strings["Has crush"] = "Ha una cotta"; -App::$strings["Infatuated"] = "Infatuato/a"; -App::$strings["Dating"] = "Disponibile a un incontro"; -App::$strings["Unfaithful"] = "Infedele"; -App::$strings["Sex Addict"] = "Sesso-dipendente"; -App::$strings["Friends/Benefits"] = "Amici con qualcosa in più"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Impegnato"; -App::$strings["Married"] = "Sposato/a"; -App::$strings["Imaginarily married"] = "Con matrimonio immaginario"; -App::$strings["Partners"] = "Partner"; -App::$strings["Cohabiting"] = "Convivente"; -App::$strings["Common law"] = "Matrimonio regolare"; -App::$strings["Happy"] = "Felice"; -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["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["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 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["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["%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["Common Connections"] = ""; +App::$strings["View all %d common connections"] = ""; +App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; +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["Remote channel or protocol unavailable."] = ""; +App::$strings["Channel discovery failed."] = "La ricerca del canale non ha avuto successo."; +App::$strings["Protocol disabled."] = "Protocollo disabilitato."; +App::$strings["Cannot connect to yourself."] = "Non puoi connetterti a te stesso."; App::$strings["Delete this item?"] = "Eliminare questo elemento?"; App::$strings["%s show less"] = "%s riduci"; App::$strings["%s expand"] = "%s mostra tutto"; @@ -1998,8 +2857,8 @@ 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["timeago.suffixAgo"] = ""; +App::$strings["timeago.suffixFromNow"] = ""; App::$strings["less than a minute"] = "meno di un minuto"; App::$strings["about a minute"] = "circa un minuto"; App::$strings["%d minutes"] = "%d minuti"; @@ -2038,113 +2897,240 @@ 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["Unable to determine sender."] = "Impossibile determinare il mittente."; +App::$strings["No recipient provided."] = "Devi scegliere un destinatario."; +App::$strings["[no subject]"] = "[nessun titolo]"; +App::$strings["Stored post could not be verified."] = "Non è stato possibile verificare il post."; +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["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["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["(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["[Edited %s]"] = ""; +App::$strings["__ctx:edit_activity__ Post"] = ""; +App::$strings["__ctx:edit_activity__ Comment"] = ""; +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["Unable to retrieve created identity"] = "Impossibile caricare l'identità creata"; +App::$strings["Default Profile"] = "Profilo predefinito"; +App::$strings["Unable to retrieve modified identity"] = ""; +App::$strings["Create New Profile"] = "Crea un nuovo profilo"; +App::$strings["Visible to everybody"] = "Visibile a tutti"; +App::$strings["Gender:"] = "Sesso:"; +App::$strings["Homepage:"] = "Home page:"; +App::$strings["Online Now"] = "Online adesso"; +App::$strings["Change your profile photo"] = ""; +App::$strings["Trans"] = ""; +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["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["Home, Voice"] = ""; +App::$strings["Home, Fax"] = ""; +App::$strings["Work, Voice"] = ""; +App::$strings["Work, Fax"] = ""; +App::$strings["view full size"] = "guarda nelle dimensioni reali"; +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["Select an alternate language"] = "Seleziona una lingua diversa"; +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["Cannot locate DNS info for database server '%s'"] = "Non trovo le informazioni DNS per il database server '%s'"; App::$strings["Image/photo"] = "Immagine"; App::$strings["Encrypted content"] = "Contenuto cifrato"; -App::$strings["Install %s element: "] = "Installa l'elemento %s:"; +App::$strings["Install %1\$s element %2\$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["card"] = ""; +App::$strings["article"] = ""; App::$strings["Click to open/close"] = "Clicca per aprire/chiudere"; App::$strings["spoiler"] = "spoiler"; +App::$strings["View article"] = ""; +App::$strings["View summary"] = ""; 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["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["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[" by "] = "di"; +App::$strings[" on "] = "su"; +App::$strings["Embedded content"] = "Contenuti incorporati"; +App::$strings["Embedding disabled"] = "Disabilita la creazione di contenuti incorporati"; +App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = ""; +App::$strings["General Features"] = "Funzionalità di base"; +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["Create personal planning cards"] = ""; +App::$strings["Create interactive articles"] = ""; +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["Event Timezone Selection"] = ""; +App::$strings["Allow event creation in timezones other than your own."] = ""; +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["Access Control and Permissions"] = ""; +App::$strings["Privacy Groups"] = "Gruppi di canali"; +App::$strings["Enable management and selection of privacy groups"] = "Abilita i gruppi di canali"; +App::$strings["Multiple Profiles"] = "Profili multipli"; +App::$strings["Ability to create multiple profiles"] = "Abilitazione a creare profili multipli"; +App::$strings["Provide alternate connection permission roles."] = ""; +App::$strings["OAuth Clients"] = ""; +App::$strings["Manage authenticatication tokens for mobile and remote apps."] = ""; +App::$strings["Access Tokens"] = ""; +App::$strings["Create access tokens so that non-members can access private content."] = ""; +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["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["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["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["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( @@ -2177,191 +3163,45 @@ 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["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["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["Manage Your Channels"] = "Gestisci i tuoi canali"; +App::$strings["Account/Channel Settings"] = "Impostazioni dell'account e del canale"; +App::$strings["End this session"] = "Chiudi questa sessione"; +App::$strings["Your profile page"] = "Il tuo profilo"; +App::$strings["Manage/Edit profiles"] = "Gestisci i tuoi profili"; +App::$strings["Sign in"] = "Accedi"; +App::$strings["Take me home"] = ""; +App::$strings["Log me out of this site"] = ""; +App::$strings["Create an account"] = "Crea un account"; +App::$strings["Help and documentation"] = "Guida e documentazione"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Cerca nel sito per @nome, #tag, ?guida o per contenuto"; +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["Add Apps"] = ""; +App::$strings["Arrange Apps"] = ""; +App::$strings["Toggle System Apps"] = ""; +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["Upload New Photos"] = "Carica nuove foto"; +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["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["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["Logged out."] = "Uscita effettuata."; +App::$strings["Email validation is incomplete. Please check your email."] = ""; 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"; -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["%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"; -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["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 del tuo canale"; -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["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"; -App::$strings["Navigation bar background color"] = "Barra di navigazione: Colore di sfondo"; -App::$strings["Navigation bar gradient top color"] = "Barra di navigazione: Gradiente superiore"; -App::$strings["Navigation bar gradient bottom color"] = "Barra di navigazione: Gradiente inferiore"; -App::$strings["Navigation active button gradient top color"] = "Bottone di navigazione attivo: Gradiente superiore"; -App::$strings["Navigation active button gradient bottom color"] = "Bottone di navigazione attivo: Gradiente inferiore"; -App::$strings["Navigation bar border color "] = "Barra di navigazione: Colore del bordo"; -App::$strings["Navigation bar icon color "] = "Barra di navigazione: Colore delle icone"; -App::$strings["Navigation bar active icon color "] = "Barra di navigazione: Colore dell'icona attiva"; -App::$strings["link color"] = "colore del link"; -App::$strings["Set font-color for banner"] = "Colore del font del banner"; -App::$strings["Set the background color"] = "Colore di sfondo"; -App::$strings["Set the background image"] = "Immagine di sfondo"; -App::$strings["Set the background color of items"] = "Colore di sfondo degli oggetti"; -App::$strings["Set the background color of comments"] = "Colore di sfondo dei commenti"; -App::$strings["Set the border color of comments"] = "Colore del bordo dei commenti"; -App::$strings["Set the indent for comments"] = "Spostamento a destra dei commenti"; -App::$strings["Set the basic color for item icons"] = "Colore di base per le icone"; -App::$strings["Set the hover color for item icons"] = "Colore per le icone in mouse-over"; -App::$strings["Set font-size for the entire application"] = "Dimensione font per tutto il sito"; -App::$strings["Example: 14px"] = "Esempio: 14px"; -App::$strings["Set font-size for posts and comments"] = "Dimensioni del carattere per post e commenti"; -App::$strings["Set font-color for posts and comments"] = "Colore del carattere per post e commenti"; -App::$strings["Set radius of corners"] = "Raggio degli angoli stondati"; -App::$strings["Set shadow depth of photos"] = "Profondità dell'ombra delle foto"; -App::$strings["Set maximum width of content region in pixel"] = "Larghezza massima dell'area dei contenuti in pixel"; -App::$strings["Leave empty for default width"] = "Lascia vuoto per usare il valore predefinito"; -App::$strings["Left align page content"] = "Allinea a sinistra il contenuto della pagina"; -App::$strings["Set minimum opacity of nav bar - to hide it"] = "Opacità minima della barra di navigazione - per nasconderla"; -App::$strings["Set size of conversation author photo"] = "Dimensione foto dell'autore della conversazione"; -App::$strings["Set size of followup author photos"] = "Dimensione foto dei partecipanti alla conversazione"; -App::$strings["__ctx:opensearch__ Search %1\$s (%2\$s)"] = "Cerca %1\$s (%2\$s)"; -App::$strings["__ctx:opensearch__ \$Projectname"] = "\$Projectname"; -App::$strings["Update %s failed. See error logs."] = "%s: aggiornamento fallito. Controlla i log di errore."; -App::$strings["Update Error at %s"] = "Errore di aggiornamento su %s"; -App::$strings["Create an account to access services and applications within the Hubzilla"] = "Registrati per accedere ai servizi e alle applicazioni di Hubzilla"; -App::$strings["Login/Email"] = "Login/Email"; -App::$strings["Password"] = "Password"; -App::$strings["Remember me"] = "Resta connesso"; -App::$strings["Forgot your password?"] = "Hai dimenticato la password?"; -App::$strings["toggle mobile"] = "attiva/disattiva versione mobile"; -App::$strings["Website SSL certificate is not valid. Please correct."] = "Il certificato SSL del sito non è valido. Si prega di intervenire."; -App::$strings["[hubzilla] Website SSL error for %s"] = "[hubzilla] Errore SSL su %s"; -App::$strings["Cron/Scheduled tasks not running."] = "Processi cron non avviati."; -App::$strings["[hubzilla] Cron tasks not running on %s"] = "[hubzilla] Cron non è stato eseguito %s"; +App::$strings["Help:"] = "Guida:"; +App::$strings["Not Found"] = "Non disponibile"; -- cgit v1.2.3 From a0e0b8206722aa98994ea02e7c4768db19d7932a Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 5 Mar 2018 22:39:27 +0100 Subject: update redbasic theme screenshot --- view/theme/redbasic/img/screenshot.jpg | Bin 199131 -> 0 bytes view/theme/redbasic/img/screenshot.png | Bin 0 -> 131184 bytes 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 view/theme/redbasic/img/screenshot.jpg create mode 100644 view/theme/redbasic/img/screenshot.png (limited to 'view') diff --git a/view/theme/redbasic/img/screenshot.jpg b/view/theme/redbasic/img/screenshot.jpg deleted file mode 100644 index ac9258bd6..000000000 Binary files a/view/theme/redbasic/img/screenshot.jpg and /dev/null differ diff --git a/view/theme/redbasic/img/screenshot.png b/view/theme/redbasic/img/screenshot.png new file mode 100644 index 000000000..60d7e23f6 Binary files /dev/null and b/view/theme/redbasic/img/screenshot.png differ -- cgit v1.2.3 From bae2af09a0c2bc0d733e586aec156d5f1a270a92 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 5 Mar 2018 22:59:05 +0100 Subject: fix javascript error if there are no notifications --- view/tpl/notifications_widget.tpl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'view') diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 18250cf97..215fddd08 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -1,3 +1,4 @@ +{{if $notifications}} - -{{if $notifications}}

{{$no_notifications}}... -- cgit v1.2.3 From c462d2f15eb2d463706403676b00bbd7bd111443 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Mon, 5 Mar 2018 23:03:58 +0100 Subject: add pdl file for mod moderate --- view/pdl/mod_moderate.pdl | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 view/pdl/mod_moderate.pdl (limited to 'view') diff --git a/view/pdl/mod_moderate.pdl b/view/pdl/mod_moderate.pdl new file mode 100644 index 000000000..95f069031 --- /dev/null +++ b/view/pdl/mod_moderate.pdl @@ -0,0 +1,4 @@ +[region=right_aside] +[widget=notifications][/widget] +[widget=newmember][/widget] +[/region] -- cgit v1.2.3 From 99247d0c592658d2ebce549c97c06080e98c584f Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Mon, 5 Mar 2018 20:42:06 -0500 Subject: Improve rendering of Readme files in plugin settings --- view/css/mod_admin.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'view') diff --git a/view/css/mod_admin.css b/view/css/mod_admin.css index 409744402..5e22fc90c 100644 --- a/view/css/mod_admin.css +++ b/view/css/mod_admin.css @@ -70,3 +70,21 @@ margin-top: 0px !important; margin-left: 0px !important; } + +pre code { + background: #F5F5F5; + font-family: Courier, monospace; + font-size: 1em; + padding: 1em 1.5em; + display: block; + white-space: pre-wrap; +} + +code { + background: #F5F5F5; + font-family: Courier, monospace; + font-size: 1em; + display: inline; + padding: 0.2em 0.2em; + white-space: pre-wrap; +} \ No newline at end of file -- cgit v1.2.3 From 04f7f99fc3ac68b5cea357b35a7d755f62fb999b Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 7 Mar 2018 20:29:37 +0100 Subject: we do not support separate mobile themes anymore --- view/tpl/admin_site.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 78e3ee245..10b367810 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -55,7 +55,7 @@ {{include file="field_select.tpl" field=$language}} {{include file="field_select.tpl" field=$theme}} - {{include file="field_select.tpl" field=$theme_mobile}} + {{* include file="field_select.tpl" field=$theme_mobile *}} {{include file="field_input.tpl" field=$frontpage}} {{include file="field_checkbox.tpl" field=$mirror_frontpage}} {{include file="field_checkbox.tpl" field=$login_on_homepage}} -- cgit v1.2.3 From d6812cf75e40ca5a364c5832929b2eaf62c0d2f5 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 7 Mar 2018 20:47:18 +0100 Subject: more bootstrap accordion fixes --- view/tpl/admin_settings_features.tpl | 4 ++-- view/tpl/profile_edit.tpl | 16 ++++++++-------- 2 files changed, 10 insertions(+), 10 deletions(-) (limited to 'view') diff --git a/view/tpl/admin_settings_features.tpl b/view/tpl/admin_settings_features.tpl index 2d5cf7e0b..86f978e08 100644 --- a/view/tpl/admin_settings_features.tpl +++ b/view/tpl/admin_settings_features.tpl @@ -9,12 +9,12 @@
-
+
{{foreach $f.1 as $fcat}} {{include file="field_checkbox.tpl" field=$fcat.0}} diff --git a/view/tpl/profile_edit.tpl b/view/tpl/profile_edit.tpl index 05137479f..95183fdf4 100755 --- a/view/tpl/profile_edit.tpl +++ b/view/tpl/profile_edit.tpl @@ -49,12 +49,12 @@
-
+
{{include file="field_input.tpl" field=$profile_name}} @@ -215,12 +215,12 @@
-
+
{{if $fields.address}} {{include file="field_input.tpl" field=$address}} @@ -260,12 +260,12 @@
-
+
{{if $fields.marital }}
@@ -307,12 +307,12 @@
-
+
{{if $fields.homepage}} {{include file="field_input.tpl" field=$homepage}} -- cgit v1.2.3 From 17c102ebe115bd8272da830bf9523b691ce115ee Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 7 Mar 2018 21:11:57 +0100 Subject: we need the javascript in the template since strings are involved --- view/js/mod_cover_photo.js | 80 ----------------------------------------- view/js/mod_profile_photo.js | 82 ------------------------------------------ view/tpl/cover_photo.tpl | 83 ++++++++++++++++++++++++++++++++++++++++++ view/tpl/profile_photo.tpl | 86 ++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 169 insertions(+), 162 deletions(-) delete mode 100644 view/js/mod_cover_photo.js delete mode 100644 view/js/mod_profile_photo.js (limited to 'view') diff --git a/view/js/mod_cover_photo.js b/view/js/mod_cover_photo.js deleted file mode 100644 index 5b64b8b91..000000000 --- a/view/js/mod_cover_photo.js +++ /dev/null @@ -1,80 +0,0 @@ - var initializeEmbedPhotoDialog = function () { - $('.embed-photo-selected-photo').each(function (index) { - $(this).removeClass('embed-photo-selected-photo'); - }); - getPhotoAlbumList(); - $('#embedPhotoModalBodyAlbumDialog').off('click'); - $('#embedPhotoModal').modal('show'); - }; - - var choosePhotoFromAlbum = function (album) { - $.post("embedphotos/album", {name: album}, - function(data) { - if (data['status']) { - $('#embedPhotoModalLabel').html("{{$modalchooseimages}}"); - $('#embedPhotoModalBodyAlbumDialog').html('\ - ') - $('#embedPhotoModalBodyAlbumDialog').append(data['content']); - $('#embedPhotoModalBodyAlbumDialog').click(function (evt) { - evt.preventDefault(); - var image = document.getElementById(evt.target.id); - if (typeof($(image).parent()[0]) !== 'undefined') { - var imageparent = document.getElementById($(image).parent()[0].id); - $(imageparent).toggleClass('embed-photo-selected-photo'); - var href = $(imageparent).attr('href'); - $.post("embedphotos/photolink", {href: href}, - function(ddata) { - if (ddata['status']) { - window.location.href = 'cover_photo/use/' + ddata['resource_id']; - } else { - window.console.log("{{$modalerrorlink}}" + ':' + ddata['errormsg']); - } - return false; - }, - 'json'); - $('#embedPhotoModalBodyAlbumDialog').html(''); - $('#embedPhotoModalBodyAlbumDialog').off('click'); - $('#embedPhotoModal').modal('hide'); - } - }); - - $('#embedPhotoModalBodyAlbumListDialog').addClass('d-none'); - $('#embedPhotoModalBodyAlbumDialog').removeClass('d-none'); - } else { - window.console.log("{{$modalerroralbum}} " + JSON.stringify(album) + ':' + data['errormsg']); - } - return false; - }, - 'json'); - }; - - var getPhotoAlbumList = function () { - $.post("embedphotos/albumlist", {}, - function(data) { - if (data['status']) { - var albums = data['albumlist']; //JSON.parse(data['albumlist']); - $('#embedPhotoModalLabel').html("{{$modalchoosealbum}}"); - $('#embedPhotoModalBodyAlbumList').html(''); - for(var i=0; i' + albumName + ''; - albumLink += ''; - $('#embedPhotoModalBodyAlbumList').find('ul').append(albumLink); - } - $('#embedPhotoModalBodyAlbumDialog').addClass('d-none'); - $('#embedPhotoModalBodyAlbumListDialog').removeClass('d-none'); - } else { - window.console.log("{{$modalerrorlist}}" + ':' + data['errormsg']); - } - return false; - }, - 'json'); - }; diff --git a/view/js/mod_profile_photo.js b/view/js/mod_profile_photo.js deleted file mode 100644 index c05c8e25e..000000000 --- a/view/js/mod_profile_photo.js +++ /dev/null @@ -1,82 +0,0 @@ - var initializeEmbedPhotoDialog = function () { - $('.embed-photo-selected-photo').each(function (index) { - $(this).removeClass('embed-photo-selected-photo'); - }); - getPhotoAlbumList(); - $('#embedPhotoModalBodyAlbumDialog').off('click'); - $('#embedPhotoModal').modal('show'); - }; - - var choosePhotoFromAlbum = function (album) { - $.post("embedphotos/album", {name: album}, - function(data) { - if (data['status']) { - $('#embedPhotoModalLabel').html("{{$modalchooseimages}}"); - $('#embedPhotoModalBodyAlbumDialog').html('\ - ') - $('#embedPhotoModalBodyAlbumDialog').append(data['content']); - $('#embedPhotoModalBodyAlbumDialog').click(function (evt) { - evt.preventDefault(); - var image = document.getElementById(evt.target.id); - if (typeof($(image).parent()[0]) !== 'undefined') { - var imageparent = document.getElementById($(image).parent()[0].id); - $(imageparent).toggleClass('embed-photo-selected-photo'); - var href = $(imageparent).attr('href'); - $.post("embedphotos/photolink", {href: href}, - function(ddata) { - if (ddata['status']) { - var pf = $('#profile-photo-profiles').val(); - var prof = ((typeof pf !== 'undefined') ? '?f=&pf=' + pf : ''); - window.location.href = 'profile_photo/use/' + ddata['resource_id'] + prof; - } else { - window.console.log("{{$modalerrorlink}}" + ':' + ddata['errormsg']); - } - return false; - }, - 'json'); - $('#embedPhotoModalBodyAlbumDialog').html(''); - $('#embedPhotoModalBodyAlbumDialog').off('click'); - $('#embedPhotoModal').modal('hide'); - } - }); - - $('#embedPhotoModalBodyAlbumListDialog').addClass('d-none'); - $('#embedPhotoModalBodyAlbumDialog').removeClass('d-none'); - } else { - window.console.log("{{$modalerroralbum}} " + JSON.stringify(album) + ':' + data['errormsg']); - } - return false; - }, - 'json'); - }; - - var getPhotoAlbumList = function () { - $.post("embedphotos/albumlist", {}, - function(data) { - if (data['status']) { - var albums = data['albumlist']; //JSON.parse(data['albumlist']); - $('#embedPhotoModalLabel').html("{{$modalchoosealbum}}"); - $('#embedPhotoModalBodyAlbumList').html(''); - for(var i=0; i' + albumName + ''; - albumLink += ''; - $('#embedPhotoModalBodyAlbumList').find('ul').append(albumLink); - } - $('#embedPhotoModalBodyAlbumDialog').addClass('d-none'); - $('#embedPhotoModalBodyAlbumListDialog').removeClass('d-none'); - } else { - window.console.log("{{$modalerrorlist}}" + ':' + data['errormsg']); - } - return false; - }, - 'json'); - }; diff --git a/view/tpl/cover_photo.tpl b/view/tpl/cover_photo.tpl index cbcf46320..829a3a556 100755 --- a/view/tpl/cover_photo.tpl +++ b/view/tpl/cover_photo.tpl @@ -1,3 +1,86 @@ + +

{{$title}}

diff --git a/view/tpl/profile_photo.tpl b/view/tpl/profile_photo.tpl index edde6af3f..e48d05330 100755 --- a/view/tpl/profile_photo.tpl +++ b/view/tpl/profile_photo.tpl @@ -1,3 +1,89 @@ + + +

{{$title}}

-- cgit v1.2.3 From 48b1042347d098672e583010fe9dbf71eb81623c Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 7 Mar 2018 16:59:55 -0800 Subject: hashtag autocomplete --- view/js/autocomplete.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 01def9900..2d017db18 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -74,6 +74,10 @@ function bbco_format(item) { return ""; } +function tag_format(item) { + return ""; +} + function editor_replace(item) { if(typeof item.replace !== 'undefined') { return '$1$2' + item.replace; @@ -202,6 +206,16 @@ function string2bb(element) { }; + // Autocomplete hashtags + tags = { + match: /(^|\s)(\#)([^ \n]{2,})$/, + index: 3, + search: function(term, callback) { $.getJSON('/hashtags/' + '$f=&t=' + term).done(function(data) { callback($.map(data, function(entry) { return entry.text.indexOf(term) === 0 ? entry : null; })); }); }, + replace: function(item) { return "$1$2" + item.text + ' '; }, + template: tag_format + }; + + smilies = { match: /(^|\s)(:[a-z_:]{2,})$/, index: 2, @@ -211,7 +225,7 @@ function string2bb(element) { template: smiley_format }; this.attr('autocomplete','off'); - this.textcomplete([contacts,forums,smilies], {className:'acpopup', zIndex:1020}); + this.textcomplete([contacts,forums,smilies,tags], {className:'acpopup', zIndex:1020}); }; })( jQuery ); -- cgit v1.2.3 From 7ac70e1f2375b4a320c27ca4e50f75ee0b958fe4 Mon Sep 17 00:00:00 2001 From: "Mathieu \"Thrar\" Bacou" Date: Thu, 8 Mar 2018 20:14:44 +0100 Subject: Fix code background in wiki pages Fix needed after commit c444e40c016c0faaec604335093b19661b3585b7 --- view/theme/redbasic/schema/dark.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view') diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index 0a142a07f..98e2bac9a 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -343,6 +343,10 @@ pre { border:1px solid #090909; } +#wiki-content-container code { + background: #000; +} + .notif-item a { color: #ccc; } -- cgit v1.2.3 From 76a80060034b381ac14d9d897b18c9d650347dd8 Mon Sep 17 00:00:00 2001 From: "Mathieu \"Matbac\" Bacou" Date: Thu, 8 Mar 2018 20:56:23 +0100 Subject: Fix background of tags field --- view/theme/redbasic/schema/dark.css | 38 ++++++++++++++++++++++--------------- 1 file changed, 23 insertions(+), 15 deletions(-) (limited to 'view') diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index 98e2bac9a..edc6e5f65 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -20,8 +20,18 @@ textarea, input, select margin-bottom: 5px; } +#jot-category-wrap { + background: #000; + border-bottom: none; + margin-bottom: 5px; +} + +.bootstrap-tagsinput { + background: #333; +} + optgroup { - color: #CCC !important; + color: #CCC !important; } option { @@ -132,7 +142,7 @@ option { .abook-self { border: 1px solid #222; color: #555; - background-color:#111; + background-color:#111; } .modal-content { @@ -208,7 +218,7 @@ a.btn, aside a { } .btn-danger:hover, .btn-danger:focus, form#chat-destroy > input:hover, form#chat-destroy > input:focus { color: #FFF !important; - background-color: #C9302C !important; + background-color: #C9302C !important; border-color: #AC2925 !important; } @@ -278,7 +288,7 @@ nav .dropdown-menu { border-bottom:1px solid #333; } -.nav-tabs .nav-link.active { +.nav-tabs .nav-link.active { color: #fff; background-color: #111; border-color: #333; @@ -297,7 +307,7 @@ aside .nav > li > a:hover, aside .nav > li > a:focus { background-color: #222; } -a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { +a, a:visited, a:link, .fakelink, .fakelink:visited, .fakelink:link { font-weight: bold; } @@ -356,23 +366,23 @@ pre { } .dropdown-menu { - background-color: #222; + background-color: #222; } .dropdown-menu >li > a { - color: #ccc; + color: #ccc; } .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus { - color: #ddd; - background-color: #333; + color: #ddd; + background-color: #333; background-image: none; } .open .dropdown-toggle.btn-default, .open .dropdown-toggle.btn-default:focus { - color: #ccc; - background-color: #222; - border-color: #222; + color: #ccc; + background-color: #222; + border-color: #222; } .pmenu-item:hover a { @@ -448,7 +458,7 @@ pre { .profile-match-wrapper { - width: 150px; + width: 150px; height: 120px; border: none; } @@ -466,5 +476,3 @@ pre { .widget-nav-pills-checkbox:hover + a { background-color: #222; } - - -- cgit v1.2.3 From f9cca2422adb05db69c13ebd48d79e6108291d8f Mon Sep 17 00:00:00 2001 From: "Mathieu \"Matbac\" Bacou" Date: Thu, 8 Mar 2018 21:02:51 +0100 Subject: Remove useless background spec for category field --- view/theme/redbasic/schema/dark.css | 1 - 1 file changed, 1 deletion(-) (limited to 'view') diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index edc6e5f65..ebcfcdd13 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -21,7 +21,6 @@ textarea, input, select } #jot-category-wrap { - background: #000; border-bottom: none; margin-bottom: 5px; } -- cgit v1.2.3 From 500b141341451b5dcf31b7818c2e085cd7a98303 Mon Sep 17 00:00:00 2001 From: "Mathieu \"Matbac\" Bacou" Date: Thu, 8 Mar 2018 21:12:33 +0100 Subject: Uniformize title input with other input fields Add rounded corners to mimic categories input field and main text area. --- view/theme/redbasic/schema/dark.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'view') diff --git a/view/theme/redbasic/schema/dark.css b/view/theme/redbasic/schema/dark.css index ebcfcdd13..d0154bfb1 100644 --- a/view/theme/redbasic/schema/dark.css +++ b/view/theme/redbasic/schema/dark.css @@ -15,6 +15,10 @@ textarea, input, select padding: 10px 0; } +#jot-title { + border-radius: 3px; +} + #jot-title-wrap { border-bottom: none; margin-bottom: 5px; -- cgit v1.2.3 From 3ee35b83c2651b9c9ab6a27cab4ea6517375744f Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 8 Mar 2018 14:23:34 -0800 Subject: notifications-btn-1 does not actually require the text-white class and this is known to cause issues on dark themes --- view/tpl/navbar_default.tpl | 2 +- view/tpl/navbar_tucson.tpl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/tpl/navbar_default.tpl b/view/tpl/navbar_default.tpl index b0b3198c6..92b067bcb 100755 --- a/view/tpl/navbar_default.tpl +++ b/view/tpl/navbar_default.tpl @@ -80,7 +80,7 @@ {{if $localuser || $nav.pubs}} - {{/if}} diff --git a/view/tpl/navbar_tucson.tpl b/view/tpl/navbar_tucson.tpl index b0b3198c6..92b067bcb 100755 --- a/view/tpl/navbar_tucson.tpl +++ b/view/tpl/navbar_tucson.tpl @@ -80,7 +80,7 @@ {{if $localuser || $nav.pubs}} - {{/if}} -- cgit v1.2.3 From a417389934933af64e631c6372d410cbf864450a Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sat, 10 Mar 2018 13:20:20 -0800 Subject: trim expects error ... in admin/site --- view/tpl/admin_site.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index 78e3ee245..9481d70e4 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -74,7 +74,7 @@ {{include file="field_select.tpl" field=$access_policy}} {{include file="field_input.tpl" field=$location}} {{include file="field_input.tpl" field=$sellpage}} - {{include file="field_input.tpl" field=$firstpage}} + {{include file="field_input.tpl" field=$first_page}}
-- cgit v1.2.3 From ec12b78ddfe0a70e05920cf96d51979eb1e47b2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Sun, 11 Mar 2018 13:07:11 +0100 Subject: =?UTF-8?q?Spanish=20translation:=20added=20el=20before=20art?= =?UTF-8?q?=C3=ADculo,=20which=20is=20the=20correct=20construction.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/es-es/hmessages.po | 6 +++--- view/es-es/hstrings.php | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index b6104c8f7..2321b2819 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-01 08:51+0100\n" -"PO-Revision-Date: 2018-03-02 17:15+0000\n" +"PO-Revision-Date: 2018-03-10 11:43+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" @@ -13331,7 +13331,7 @@ msgstr "ficha" #: ../../include/bbcode.php:337 msgid "article" -msgstr "artículo" +msgstr "el artículo" #: ../../include/bbcode.php:420 ../../include/bbcode.php:428 msgid "Click to open/close" @@ -13343,7 +13343,7 @@ msgstr "spoiler" #: ../../include/bbcode.php:441 msgid "View article" -msgstr "Ver artículo" +msgstr "Ver el artículo" #: ../../include/bbcode.php:441 msgid "View summary" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index 3c9946ebb..a28b0e3e9 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -3012,10 +3012,10 @@ App::$strings["Encrypted content"] = "Contenido cifrado"; App::$strings["Install %1\$s element %2\$s"] = "Instalar el elemento de%1\$s%2\$s"; App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "Esta entrada contiene el elemento instalable %s, sin embargo le faltan permisos para instalarlo en este sitio."; App::$strings["card"] = "ficha"; -App::$strings["article"] = "artículo"; +App::$strings["article"] = "el artículo"; App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; App::$strings["spoiler"] = "spoiler"; -App::$strings["View article"] = "Ver artículo"; +App::$strings["View article"] = "Ver el artículo"; App::$strings["View summary"] = "Ver sumario"; App::$strings["$1 wrote:"] = "$1 escribió:"; App::$strings[" by "] = "por"; -- cgit v1.2.3 From 2bcfa0c12687d47c11e8c445a5a38ffe96d5c135 Mon Sep 17 00:00:00 2001 From: mrjive Date: Tue, 13 Mar 2018 02:57:08 -0700 Subject: small work on connections page --- view/tpl/connections.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/connections.tpl b/view/tpl/connections.tpl index 32973353e..0bf88b818 100755 --- a/view/tpl/connections.tpl +++ b/view/tpl/connections.tpl @@ -9,7 +9,7 @@
-- cgit v1.2.3 From 46c67e7f2fd49d34989f0fe2a9365346d486c5ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Jim=C3=A9nez=20Friaza?= Date: Tue, 13 Mar 2018 11:20:08 +0100 Subject: Spanish translation: adapted the new timeago's stuff --- view/es-es/hmessages.po | 10 +++++----- view/es-es/hstrings.php | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'view') diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 2321b2819..542aa9fa6 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -15,7 +15,7 @@ msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2018-03-01 08:51+0100\n" -"PO-Revision-Date: 2018-03-10 11:43+0000\n" +"PO-Revision-Date: 2018-03-13 09:54+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" @@ -12662,19 +12662,19 @@ msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" #: ../../include/js_strings.php:31 msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +msgstr "hace " #: ../../include/js_strings.php:32 msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +msgstr "en " #: ../../include/js_strings.php:33 msgid "timeago.suffixAgo" -msgstr "timeago.suffixAgo" +msgstr "NONE" #: ../../include/js_strings.php:34 msgid "timeago.suffixFromNow" -msgstr "timeago.suffixFromNow" +msgstr "NONE" #: ../../include/js_strings.php:37 msgid "less than a minute" diff --git a/view/es-es/hstrings.php b/view/es-es/hstrings.php index a28b0e3e9..610776816 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -2855,10 +2855,10 @@ App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto 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["timeago.suffixAgo"] = "timeago.suffixAgo"; -App::$strings["timeago.suffixFromNow"] = "timeago.suffixFromNow"; +App::$strings["timeago.prefixAgo"] = "hace "; +App::$strings["timeago.prefixFromNow"] = "en "; +App::$strings["timeago.suffixAgo"] = "NONE"; +App::$strings["timeago.suffixFromNow"] = "NONE"; 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"; -- cgit v1.2.3 From fa3e7a574fdfef87f86dc89fbb30bbfef7e98463 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 14 Mar 2018 10:03:17 +0100 Subject: show site registration notifications setting only to site admin --- view/tpl/settings.tpl | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 130dc6918..0055fa265 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -138,7 +138,9 @@ {{include file="field_intcheckbox.tpl" field=$vnotify7}} {{include file="field_intcheckbox.tpl" field=$vnotify8}} {{include file="field_intcheckbox.tpl" field=$vnotify9}} - {{include file="field_intcheckbox.tpl" field=$vnotify11}} + {{if $vnotify11}} + {{include file="field_intcheckbox.tpl" field=$vnotify11}} + {{/if}} {{include file="field_intcheckbox.tpl" field=$vnotify12}} {{if $vnotify13}} {{include file="field_intcheckbox.tpl" field=$vnotify13}} -- cgit v1.2.3 From 75721b7e8242701cc690a635175b8ef63ddba4fe Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 14 Mar 2018 10:24:08 +0100 Subject: reveal the profile name field only if multi prifiles feature is enabled --- view/tpl/profile_edit.tpl | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/tpl/profile_edit.tpl b/view/tpl/profile_edit.tpl index 95183fdf4..c967fa02c 100755 --- a/view/tpl/profile_edit.tpl +++ b/view/tpl/profile_edit.tpl @@ -4,7 +4,7 @@ - -- cgit v1.2.3 From 1c3e6697615b70d2528856b6c8e69962a14763dc Mon Sep 17 00:00:00 2001 From: zotlabs Date: Fri, 30 Mar 2018 16:47:47 -0700 Subject: Hubzilla issue #1022 - improve the usability --- view/tpl/wiki.tpl | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'view') diff --git a/view/tpl/wiki.tpl b/view/tpl/wiki.tpl index 1a83179a3..6ca4b0c77 100644 --- a/view/tpl/wiki.tpl +++ b/view/tpl/wiki.tpl @@ -11,13 +11,11 @@ {{if $renamePage}}  {{$renamePage}} {{/if}} - {{if $sharePage}} - - {{/if}}  Embed Image
{{/if}} +
-- cgit v1.2.3 From 0e09dca9529ee15ad8457353391a9c97de6aeaf1 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Sun, 1 Apr 2018 20:19:56 +0200 Subject: fix missing login/out buttons for medium screensize --- view/tpl/navbar_default.tpl | 6 +++--- view/tpl/navbar_tucson.tpl | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'view') diff --git a/view/tpl/navbar_default.tpl b/view/tpl/navbar_default.tpl index 92b067bcb..532e10f22 100755 --- a/view/tpl/navbar_default.tpl +++ b/view/tpl/navbar_default.tpl @@ -91,7 +91,7 @@ diff --git a/view/tpl/photos_recent.tpl b/view/tpl/photos_recent.tpl index a9574aade..d24b362f8 100755 --- a/view/tpl/photos_recent.tpl +++ b/view/tpl/photos_recent.tpl @@ -2,7 +2,7 @@
{{if $can_post}} - + {{/if}}

{{$title}}

-- cgit v1.2.3 From 43cafcc761bc12f442c30ab952164736aa18f9d8 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 8 Apr 2018 14:18:10 -0400 Subject: Auto-save post and comment entry using localStorage in browser. --- view/js/main.js | 29 ++++++++++++++++++++++++++ view/tpl/jot-header.tpl | 55 +++++++++++++++++++++++++++++++++++++++++++++++++ view/tpl/jot.tpl | 32 ---------------------------- 3 files changed, 84 insertions(+), 32 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index e700c4e6e..d09615f3c 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -166,6 +166,12 @@ function handle_comment_form(e) { $('#' + commentElm).addClass('expanded').removeAttr('placeholder'); $('#' + commentElm).attr('tabindex','9'); $('#' + submitElm).attr('tabindex','10'); + + var commentBody = localStorage.getItem("comment_body"); + if(commentBody && $('#' + commentElm).val() === '') { + $('#' + commentElm).val(commentBody); + } + form.find(':not(:visible)').show(); } @@ -185,6 +191,28 @@ function handle_comment_form(e) { form.find(':not(.comment-edit-text)').hide(); } }); + + var commentSaveTimer = null; + var emptyCommentElm = form.find('.comment-edit-text').attr('id'); + $(document).on('focusout','#' + emptyCommentElm,function(e){ + if(commentSaveTimer) + clearTimeout(commentSaveTimer); + commentSaveChanges(true); + commentSaveTimer = null; + }); + + $(document).on('focusin','#' + emptyCommentElm,function(e){ + commentSaveTimer = setTimeout(function () { + commentSaveChanges(false); + },10000); + }); + + function commentSaveChanges(isFinal = false, type) { + localStorage.setItem("comment_body", $('#' + emptyCommentElm).val()); + if( !isFinal) { + commentSaveTimer = setTimeout(commentSaveChanges,10000); + } + } } function commentClose(obj, id) { @@ -1106,6 +1134,7 @@ function post_comment(id) { $("#comment-edit-form-" + id).serialize(), function(data) { if(data.success) { + localStorage.removeItem("comment_body"); $("#comment-edit-preview-" + id).hide(); $("#comment-edit-wrapper-" + id).hide(); $("#comment-edit-text-" + id).val(''); diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index c1dab52d5..2b4284ade 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -560,3 +560,58 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del } }); + + + \ No newline at end of file diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 90058ab30..bc9339d4c 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -40,38 +40,6 @@
{{/if}} - -
-- cgit v1.2.3 From f9ec3c66ff1305ca0647454d27793ac5365f7f4a Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Sun, 8 Apr 2018 19:44:21 -0400 Subject: Added feature setting for auto-save, defaulting to enabled. --- view/js/main.js | 20 +++++++++------ view/tpl/comment_item.tpl | 3 +++ view/tpl/jot-header.tpl | 62 ++++++++++++++++++++++++++--------------------- 3 files changed, 51 insertions(+), 34 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index d09615f3c..c3c2c850f 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -167,9 +167,13 @@ function handle_comment_form(e) { $('#' + commentElm).attr('tabindex','9'); $('#' + submitElm).attr('tabindex','10'); - var commentBody = localStorage.getItem("comment_body"); - if(commentBody && $('#' + commentElm).val() === '') { - $('#' + commentElm).val(commentBody); + if(auto_save_draft) { + var commentBody = localStorage.getItem("comment_body"); + if(commentBody && $('#' + commentElm).val() === '') { + $('#' + commentElm).val(commentBody); + } + } else { + localStorage.removeItem("comment_body"); } form.find(':not(:visible)').show(); @@ -207,10 +211,12 @@ function handle_comment_form(e) { },10000); }); - function commentSaveChanges(isFinal = false, type) { - localStorage.setItem("comment_body", $('#' + emptyCommentElm).val()); - if( !isFinal) { - commentSaveTimer = setTimeout(commentSaveChanges,10000); + function commentSaveChanges(isFinal = false) { + if(auto_save_draft) { + localStorage.setItem("comment_body", $('#' + emptyCommentElm).val()); + if( !isFinal) { + commentSaveTimer = setTimeout(commentSaveChanges,10000); + } } } } diff --git a/view/tpl/comment_item.tpl b/view/tpl/comment_item.tpl index 3b51971ec..23594677c 100755 --- a/view/tpl/comment_item.tpl +++ b/view/tpl/comment_item.tpl @@ -1,3 +1,6 @@ + {{if $threaded}}
{{else}} diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 2b4284ade..7af344681 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -580,37 +580,45 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del }); function postSaveChanges(isFinal = false, type) { - localStorage.setItem("post_title", $("#jot-title").val()); - localStorage.setItem("post_body", $("#profile-jot-text").val()); - localStorage.setItem("post_category", $("#jot-category").val()); - if( !isFinal) { - postSaveTimer = setTimeout(postSaveChanges,10000); - } + if({{$auto_save_draft}}) { + localStorage.setItem("post_title", $("#jot-title").val()); + localStorage.setItem("post_body", $("#profile-jot-text").val()); + localStorage.setItem("post_category", $("#jot-category").val()); + if( !isFinal) { + postSaveTimer = setTimeout(postSaveChanges,10000); + } + } } $(document).ready(function() { - var postTitle = localStorage.getItem("post_title"); - var postBody = localStorage.getItem("post_body"); - var postCategory = localStorage.getItem("post_category"); - var openEditor = false; - if(postTitle) { - $('#jot-title').val(postTitle); - openEditor = true; - } - if(postBody) { - $('#profile-jot-text').val(postBody); - openEditor = true; - } - if(postCategory) { - var categories = postCategory.split(','); - categories.forEach(function(cat) { - $('#jot-category').tagsinput('add', cat); - }); - openEditor = true; - } - if(openEditor) { - initEditor(); + if({{$auto_save_draft}}) { + var postTitle = localStorage.getItem("post_title"); + var postBody = localStorage.getItem("post_body"); + var postCategory = localStorage.getItem("post_category"); + var openEditor = false; + if(postTitle) { + $('#jot-title').val(postTitle); + openEditor = true; + } + if(postBody) { + $('#profile-jot-text').val(postBody); + openEditor = true; + } + if(postCategory) { + var categories = postCategory.split(','); + categories.forEach(function(cat) { + $('#jot-category').tagsinput('add', cat); + }); + openEditor = true; + } + if(openEditor) { + initEditor(); + } + } else { + localStorage.removeItem("post_title"); + localStorage.removeItem("post_body"); + localStorage.removeItem("post_category"); } }); -- cgit v1.2.3 From c3cd613f427b6aef483fce0c5bd1cebcefba8891 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 8 Apr 2018 17:30:46 -0700 Subject: extend AC --- view/js/autocomplete.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/js/autocomplete.js b/view/js/autocomplete.js index 07b9bc449..69ccd1fe5 100644 --- a/view/js/autocomplete.js +++ b/view/js/autocomplete.js @@ -243,8 +243,19 @@ function string2bb(element) { replace: basic_replace, template: contact_format, }; + + // Autocomplete forums + forums = { + match: /(^\!)([^\n]{3,})$/, + index: 2, + search: function(term, callback) { contact_search(term, callback, backend_url, 'f', [], spinelement='#nav-search-spinner'); }, + replace: basic_replace, + template: contact_format + }; + + this.attr('autocomplete', 'off'); - var a = this.textcomplete([contacts], {className:'acpopup', maxCount:100, zIndex: 1020, appendTo:'nav'}); + var a = this.textcomplete([contacts,forums], {className:'acpopup', maxCount:100, zIndex: 1020, appendTo:'nav'}); a.on('textComplete:select', function(e, value, strategy) { submit_form(this); }); }; })( jQuery ); -- cgit v1.2.3 From e0255c0dc45d8c670b865087336b4807d831e0fb Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 8 Apr 2018 20:05:30 -0700 Subject: first cut of feature/techlevel merge --- view/tpl/settings_features.tpl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'view') diff --git a/view/tpl/settings_features.tpl b/view/tpl/settings_features.tpl index f8c162e17..0b65e2524 100755 --- a/view/tpl/settings_features.tpl +++ b/view/tpl/settings_features.tpl @@ -4,6 +4,13 @@
+ {{if ! $techlock}} +
+ {{include file="field_select.tpl" field=$techlevel}} +
+ {{else}} + + {{/if}}
{{foreach $features as $g => $f}}
-- cgit v1.2.3 From e4ee165e296404b5ff6ed8ee252c98313f84de91 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 8 Apr 2018 22:02:48 -0700 Subject: more work merging techlevels and features --- view/tpl/settings_features.tpl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'view') diff --git a/view/tpl/settings_features.tpl b/view/tpl/settings_features.tpl index 0b65e2524..998199c8e 100755 --- a/view/tpl/settings_features.tpl +++ b/view/tpl/settings_features.tpl @@ -1,3 +1,12 @@ + +

{{$title}}

@@ -11,6 +20,12 @@ {{else}} {{/if}} + + {{if $hiddens}} + {{foreach $hiddens as $k => $v}} + + {{/foreach}} + {{/if}}
{{foreach $features as $g => $f}}
-- cgit v1.2.3 From 1aba495a1c1feae2a02275d2db5dcd10c877d859 Mon Sep 17 00:00:00 2001 From: Andrew Manning Date: Mon, 9 Apr 2018 20:50:41 -0400 Subject: Replace pushState with replaceState to prevent browser history clutter in Help pages. --- view/js/mod_help.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'view') diff --git a/view/js/mod_help.js b/view/js/mod_help.js index 8ee89dd61..a37207807 100644 --- a/view/js/mod_help.js +++ b/view/js/mod_help.js @@ -53,7 +53,7 @@ $(document).ready(function () { .removeClass('selected-doco-nav') .eq(i).addClass('selected-doco-nav'); if (typeof ($('#doco-side-toc li').eq(i).find('a').attr('href').split('#')[1]) !== 'undefined') { - window.history.pushState({}, '', location.href.split('#')[0] + '#' + $('#doco-side-toc li').eq(i).find('a').attr('href').split('#')[1]); + window.history.replaceState({}, '', location.href.split('#')[0] + '#' + $('#doco-side-toc li').eq(i).find('a').attr('href').split('#')[1]); } } }); @@ -100,7 +100,7 @@ $(document).ready(function () { } // Update the address bar to reflect the loaded language - window.history.pushState({}, '', '/' + pathParts.join('/')); + window.history.replaceState({}, '', '/' + pathParts.join('/')); // Highlight the language in the language selector that is currently viewed $('.lang-selector').find('.lang-choice:contains("' + help_language + '")').addClass('active'); -- cgit v1.2.3 From 887a59066bafeb3061091515970359e702443654 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Tue, 10 Apr 2018 00:05:20 -0700 Subject: last commented expiration setting in admin --- view/tpl/admin_site.tpl | 1 + 1 file changed, 1 insertion(+) (limited to 'view') diff --git a/view/tpl/admin_site.tpl b/view/tpl/admin_site.tpl index fb96ef2cf..7e99b2c86 100755 --- a/view/tpl/admin_site.tpl +++ b/view/tpl/admin_site.tpl @@ -101,6 +101,7 @@ {{include file="field_input.tpl" field=$maxloadavg}} {{include file="field_input.tpl" field=$abandon_days}} {{include file="field_input.tpl" field=$default_expire_days}} + {{include file="field_input.tpl" field=$active_expire_days}}
-- cgit v1.2.3 From 91aeb2552308d782970ccff2eaa2ac814bc4a223 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 10 Apr 2018 11:17:20 +0200 Subject: fix autosave content not cleaned after post submission --- view/tpl/jot-header.tpl | 71 ++++++++++++++++++++++++++++++++----------------- 1 file changed, 47 insertions(+), 24 deletions(-) (limited to 'view') diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 7af344681..68f7e7a41 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -563,35 +563,43 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del \ No newline at end of file + $(document).on('submit', '#profile-jot-form', function() { + postSaveChanges('clean'); + cleaned = true; + }); + + $(document).on('focusout',"#profile-jot-wrapper",function(e){ + if(! cleaned) + postSaveChanges('stop'); + }); + + $(document).on('focusin',"#profile-jot-wrapper",function(e){ + postSaveTimer = setTimeout(function () { + postSaveChanges('start'); + },10000); + }); + + + }); + -- cgit v1.2.3 From a2cb7b9ca4e4dabb59f43c9dd0d610792fbd0e63 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 10 Apr 2018 11:37:57 +0200 Subject: do not get or set post category if the field is not available. remove logging. --- view/tpl/jot-header.tpl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'view') diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 68f7e7a41..d6d93a863 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -567,11 +567,12 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del function postSaveChanges(action, type) { if({{$auto_save_draft}}) { - console.log(action); + if(action != 'clean') { localStorage.setItem("post_title", $("#jot-title").val()); localStorage.setItem("post_body", $("#profile-jot-text").val()); - localStorage.setItem("post_category", $("#jot-category").val()); + if($("#jot-category").length) + localStorage.setItem("post_category", $("#jot-category").val()); } if(action == 'start') { @@ -603,8 +604,9 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del if({{$auto_save_draft}}) { var postTitle = localStorage.getItem("post_title"); var postBody = localStorage.getItem("post_body"); - var postCategory = localStorage.getItem("post_category"); + var postCategory = (($("#jot-category").length) ? localStorage.getItem("post_category") : ''); var openEditor = false; + if(postTitle) { $('#jot-title').val(postTitle); openEditor = true; -- cgit v1.2.3 From 90580a860b45629f510c0cf6871fe312a9693a77 Mon Sep 17 00:00:00 2001 From: Galette Saucisse Date: Tue, 10 Apr 2018 09:54:26 +0200 Subject: Update French hstrings.php added some missing strings --- view/fr/hstrings.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'view') diff --git a/view/fr/hstrings.php b/view/fr/hstrings.php index d883cc240..fd8676826 100644 --- a/view/fr/hstrings.php +++ b/view/fr/hstrings.php @@ -3046,3 +3046,22 @@ App::$strings["Logged out."] = "Deconnecté."; App::$strings["Failed authentication"] = "Échec de l'authentification"; App::$strings["Help:"] = "Aide :"; App::$strings["Not Found"] = "Introuvable"; +App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "Ce site nécessite une vérification par courriel. Après avoir rempli ce formulaire, veuillez consulter votre courriel pour obtenir des instructions supplémentaires."; +App::$strings["New Member Links"] = "Liens pour les nouveaux membres"; +App::$strings["Profile Creation"] = "Création de profil"; +App::$strings["Upload profile photo"] = "Téléverser la photo du profil"; +App::$strings["Upload cover photo"] = "Téléverser la photo de couverture"; +App::$strings["Find and Connect with others"] = "Trouver et contacter d'autres personnes"; +App::$strings["View the directory"] = "Voir l'annuaire"; +App::$strings["View friend suggestions"] = "Voir les suggestions d'amis"; +App::$strings["Manage your connections"] = "Gérez vos connexions"; +App::$strings["Communicate"] = "Communiquer"; +App::$strings["View your channel homepage"] = "Voir la page d'accueil de votre canal"; +App::$strings["View your network stream"] = "Visualisez votre flux réseau"; +App::$strings["View public stream"] = "Voir le flux public"; +App::$strings["Activity"] = "Activité"; +App::$strings["Public Stream"] = "Flux public"; +App::$strings["New Events"] = "Nouveaux événements"; +App::$strings["Add Apps"] = "Ajouter des applications"; +App::$strings["Arrange Apps"] = "Organiser les applications"; + -- cgit v1.2.3 From e294dfa7602d6283a776625167deeb84d11cf2e0 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 11 Apr 2018 08:17:30 +0200 Subject: wrong function --- view/tpl/jot-header.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'view') diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index d6d93a863..991a4c8b1 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -626,7 +626,7 @@ $( document ).on( "click", ".wall-item-delete-link,.page-delete-link,.layout-del initEditor(); } } else { - autoSaveCleanup(); + postSaveChanges('clean'); } $(document).on('submit', '#profile-jot-form', function() { -- cgit v1.2.3 From fee258edbe0fe20b9c5ba66968fabe15699c6458 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 11 Apr 2018 11:49:33 +0200 Subject: allow to toggle visibility of likes/dislikes in notifications --- view/tpl/settings.tpl | 1 + 1 file changed, 1 insertion(+) (limited to 'view') diff --git a/view/tpl/settings.tpl b/view/tpl/settings.tpl index 0055fa265..d258f1992 100755 --- a/view/tpl/settings.tpl +++ b/view/tpl/settings.tpl @@ -145,6 +145,7 @@ {{if $vnotify13}} {{include file="field_intcheckbox.tpl" field=$vnotify13}} {{/if}} + {{include file="field_intcheckbox.tpl" field=$vnotify14}} {{include file="field_intcheckbox.tpl" field=$always_show_in_notices}} {{include file="field_input.tpl" field=$evdays}}
-- cgit v1.2.3 From 3bd645033330c2db0952e57db1516274487c0712 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Wed, 11 Apr 2018 12:37:25 +0200 Subject: also clean localStorage upon logout or channel switch --- view/js/main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index c3c2c850f..ab950e4fb 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -25,13 +25,14 @@ var liveRecurse = 0; var savedTitle = ''; var initialLoad = true; -// Clear the session storage if we switch channel or log out +// Clear the session and local storage if we switch channel or log out var cache_uid = ''; if(sessionStorage.getItem('uid') !== null) { cache_uid = sessionStorage.getItem('uid'); } if(cache_uid !== localUser.toString()) { sessionStorage.clear(); + localStorage.clear(); sessionStorage.setItem('uid', localUser.toString()); } -- cgit v1.2.3 From 2fa9645dfc4dc640d7460f069fc9536cce1e4fd2 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Wed, 11 Apr 2018 17:40:04 -0700 Subject: channel delegation: push current identity and pop it on logout from the delegated channel. This fixes the known issue of being forced to log back in after leaving the delegated channel. --- 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 c3c2c850f..dd7b81ad4 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1465,7 +1465,6 @@ function b2h(s) { rep(/\[img=(.*?)x(.*?)\](.*?)\[\/img\]/gi,""); rep(/\[img\](.*?)\[\/img\]/gi,""); - // FIXME - add zid() rep(/\[zrl=([^\]]+)\](.*?)\[\/zrl\]/gi,"$2"); rep(/\[zrl\](.*?)\[\/zrl\]/gi,"$1"); rep(/\[zmg=(.*?)x(.*?)\](.*?)\[\/zmg\]/gi,""); -- cgit v1.2.3 From 09a8b4b379d91dd62f38c116c99187a404d7e774 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 12 Apr 2018 10:58:31 +0200 Subject: fix issue #1047 --- view/theme/redbasic/css/style.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'view') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index dfd03707f..b7b739969 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -121,6 +121,8 @@ a:focus, input, optgroup, select, textarea { font-size: 0.9rem !important; resize: vertical; + background-color: $comment_item_colour; + color: $font_colour; } .selected-doco-nav { @@ -1334,7 +1336,7 @@ img.mail-conv-sender-photo { .section-content-tools-wrapper { padding: 7px 10px; background-color: $comment_item_colour; - border-bottom: 3px solid comment_item_colour; + border-bottom: 3px solid $comment_item_colour; } .section-content-info-wrapper { -- cgit v1.2.3 From b0396cd646040facbe719d08183d326ccba1b53f Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 12 Apr 2018 21:44:06 -0700 Subject: work on autosave --- view/js/main.js | 45 ++++++++++++++++++++++++++++++--------------- 1 file changed, 30 insertions(+), 15 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 02f2f6a3d..66a1452e3 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -168,15 +168,6 @@ function handle_comment_form(e) { $('#' + commentElm).attr('tabindex','9'); $('#' + submitElm).attr('tabindex','10'); - if(auto_save_draft) { - var commentBody = localStorage.getItem("comment_body"); - if(commentBody && $('#' + commentElm).val() === '') { - $('#' + commentElm).val(commentBody); - } - } else { - localStorage.removeItem("comment_body"); - } - form.find(':not(:visible)').show(); } @@ -199,24 +190,25 @@ function handle_comment_form(e) { var commentSaveTimer = null; var emptyCommentElm = form.find('.comment-edit-text').attr('id'); + var convId = emptyCommentElm.replace(/comment-edit-text-/,''); $(document).on('focusout','#' + emptyCommentElm,function(e){ if(commentSaveTimer) clearTimeout(commentSaveTimer); - commentSaveChanges(true); + commentSaveChanges(convId,true); commentSaveTimer = null; }); $(document).on('focusin','#' + emptyCommentElm,function(e){ commentSaveTimer = setTimeout(function () { - commentSaveChanges(false); + commentSaveChanges(convId,false); },10000); }); - function commentSaveChanges(isFinal = false) { + function commentSaveChanges(convId,isFinal = false) { if(auto_save_draft) { - localStorage.setItem("comment_body", $('#' + emptyCommentElm).val()); + localStorage.setItem("comment_body" + convId, $('#' + emptyCommentElm).val()); if( !isFinal) { - commentSaveTimer = setTimeout(commentSaveChanges,10000); + commentSaveTimer = setTimeout(commentSaveChanges,10000,convId); } } } @@ -600,8 +592,12 @@ function updateConvItems(mode,data) { $('.thread-wrapper.toplevel_item',data).each(function() { var ident = $(this).attr('id'); - + var convId = ident.replace('thread-wrapper-',''); var commentWrap = $('#'+ident+' .collapsed-comments').attr('id'); + + + + var itmId = 0; var isVisible = false; @@ -612,6 +608,9 @@ function updateConvItems(mode,data) { if($('#collapsed-comments-'+itmId).is(':visible')) isVisible = true; + + + // insert the content according to the mode and first_page // and whether or not the content exists already (overwrite it) @@ -633,6 +632,22 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); + var commentBody = localStorage.getItem("comment_body" + convId); + + if(commentBody) { + var commentElm = $('#comment-edit-text' + convId); + if(auto_save_draft) { + if(commentBody && $('#' + commentElm).val() === '') { + $('#comment-edit-form-' + convId).show(); + $('#' + commentElm).val(commentBody); + } + } else { + localStorage.removeItem("comment_body" + convId); + } + } + + + // trigger the autotime function on all newly created content $("> .wall-item-outside-wrapper .autotime, > .thread-wrapper .autotime",this).timeago(); -- cgit v1.2.3 From 7fd882a088b55ccbe16b3f9cc076f916ddb90341 Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 12 Apr 2018 22:24:25 -0700 Subject: autosave comment enhancements --- view/js/main.js | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 66a1452e3..c1e7bd4ec 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -190,7 +190,7 @@ function handle_comment_form(e) { var commentSaveTimer = null; var emptyCommentElm = form.find('.comment-edit-text').attr('id'); - var convId = emptyCommentElm.replace(/comment-edit-text-/,''); + var convId = emptyCommentElm.replace('comment-edit-text-',''); $(document).on('focusout','#' + emptyCommentElm,function(e){ if(commentSaveTimer) clearTimeout(commentSaveTimer); @@ -206,7 +206,13 @@ function handle_comment_form(e) { function commentSaveChanges(convId,isFinal = false) { if(auto_save_draft) { - localStorage.setItem("comment_body" + convId, $('#' + emptyCommentElm).val()); + tmp = $('#' + emptyCommentElm).val(); + if(tmp) { + localStorage.setItem("comment_body-" + convId, tmp); + } + else { + localStorage.removeItem("comment_body-" + convId); + } if( !isFinal) { commentSaveTimer = setTimeout(commentSaveChanges,10000,convId); } @@ -596,8 +602,6 @@ function updateConvItems(mode,data) { var commentWrap = $('#'+ident+' .collapsed-comments').attr('id'); - - var itmId = 0; var isVisible = false; @@ -632,17 +636,19 @@ function updateConvItems(mode,data) { if(isVisible) showHideComments(itmId); - var commentBody = localStorage.getItem("comment_body" + convId); + var commentBody = localStorage.getItem("comment_body-" + convId); if(commentBody) { - var commentElm = $('#comment-edit-text' + convId); + var commentElm = $('#comment-edit-text-' + convId); if(auto_save_draft) { - if(commentBody && $('#' + commentElm).val() === '') { + if($(commentElm).val() === '') { $('#comment-edit-form-' + convId).show(); - $('#' + commentElm).val(commentBody); + $(commentElm).addClass("expanded"); + openMenu("comment-tools-" + convId); + $(commentElm).val(commentBody); } } else { - localStorage.removeItem("comment_body" + convId); + localStorage.removeItem("comment_body-" + convId); } } -- cgit v1.2.3 From 4aaea422bc78b351f055df66b1491e476bf65e12 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 13 Apr 2018 10:12:57 +0200 Subject: move the thread author menu to to the wall item photo. the menu list was getting too long. --- view/tpl/conv_item.tpl | 19 +++++++++++-------- view/tpl/conv_list.tpl | 15 +++++++++------ 2 files changed, 20 insertions(+), 14 deletions(-) (limited to 'view') diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index e9f507f1e..7b3d545ac 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -28,8 +28,16 @@ {{/if}}
-
+
{{$item.name}} + {{if $item.thread_author_menu}} + + {{/if}}
{{if $item.lock}} @@ -40,7 +48,7 @@ {{/if}}
{{if $item.previewing}} {{/if}} - {{$item.name}}{{if $item.owner_url}} {{$item.via}} {{$item.owner_name}}{{/if}} + {{$item.name}}{{if $item.owner_url}} {{$item.via}} {{$item.owner_name}}{{/if}}
{{if $item.verified}} {{elseif $item.forged}} {{/if}}{{if $item.location}}{{$item.location}}, {{/if}}{{if $item.editedtime}} {{$item.editedtime}}{{/if}}{{if $item.expiretime}} {{$item.expiretime}}{{/if}}{{if $item.editedtime}} {{/if}} {{if $item.app}}{{$item.str_app}}{{/if}} @@ -189,13 +197,8 @@ {{if $item.drop.dropping}} {{$item.drop.delete}} {{/if}} - {{if $item.thread_author_menu}} - - {{foreach $item.thread_author_menu as $mitem}} - {{$mitem.title}} - {{/foreach}} - {{/if}} {{if $item.edpost && $item.dreport}} + {{$item.dreport}} {{/if}}
diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index 97fd50d01..5bfc10bf8 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -28,8 +28,16 @@ {{/if}}
-
+
{{$item.name}} + {{if $item.thread_author_menu}} + + {{/if}}
{{if $item.lock}} @@ -181,12 +189,7 @@ {{if $item.drop.dropping}} {{$item.drop.delete}} {{/if}} - {{if $item.thread_author_menu}} - {{foreach $item.thread_author_menu as $mitem}} - {{$mitem.title}} - {{/foreach}} - {{/if}} {{if $item.edpost && $item.dreport}} {{$item.dreport}} {{/if}} -- cgit v1.2.3 From e04d3c45a4fe7e503ea727c54e4c541d40e14661 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Fri, 13 Apr 2018 11:58:12 +0200 Subject: provide visible star status for starred posts --- view/js/main.js | 7 +++++-- view/tpl/conv_item.tpl | 40 +++++++++++----------------------------- view/tpl/conv_list.tpl | 37 ++++++++++--------------------------- 3 files changed, 26 insertions(+), 58 deletions(-) (limited to 'view') diff --git a/view/js/main.js b/view/js/main.js index 02f2f6a3d..6493d2f0f 100644 --- a/view/js/main.js +++ b/view/js/main.js @@ -1075,18 +1075,21 @@ function dostar(ident) { if(data.result == 1) { $('#starred-' + ident).addClass('starred'); $('#starred-' + ident).removeClass('unstarred'); - $('#starred-' + ident).addClass('fa-star-full'); + $('#starred-' + ident).addClass('fa-star'); $('#starred-' + ident).removeClass('fa-star-o'); $('#star-' + ident).addClass('hidden'); $('#unstar-' + ident).removeClass('hidden'); + var btn_tpl = '
' + $('#wall-item-tools-left-' + ident).prepend(btn_tpl); } else { $('#starred-' + ident).addClass('unstarred'); $('#starred-' + ident).removeClass('starred'); $('#starred-' + ident).addClass('fa-star-o'); - $('#starred-' + ident).removeClass('fa-star-full'); + $('#starred-' + ident).removeClass('fa-star'); $('#star-' + ident).removeClass('hidden'); $('#unstar-' + ident).addClass('hidden'); + $('#star-button-' + ident).remove(); } $('#like-rotator-' + ident).hide(); }); diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 7b3d545ac..cfafa5ffd 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -27,9 +27,9 @@ {{/if}} {{/if}}
-
-
- {{$item.name}} +
+
+ {{$item.name}} {{if $item.thread_author_menu}}