diff options
39 files changed, 2223 insertions, 1956 deletions
@@ -937,26 +937,6 @@ class App { return $this->groups; } - function set_widget($title,$html, $location = 'aside') { - $this->widgets[] = array('title' => $title, 'html' => $html, 'location' => $location); - } - - function get_widgets($location = '') { - if($location && count($this->widgets)) { - $ret = array(); - foreach($this->widgets as $w) { - if ($w['location'] == $location) - $ret[] = $w; - } - $arr = array('location' => $location, 'widgets' => $ret); - call_hooks('get_widgets', $arr); - return $arr['widgets']; - } - $arr = array('location' => $location, 'widgets' => $this->widgets); - call_hooks('get_widgets', $arr); - return $arr['widgets']; - } - function set_pager_total($n) { $this->pager['total'] = intval($n); } @@ -2076,17 +2056,6 @@ function construct_page(&$a) { $a->build_pagehead(); - $arr = $a->get_widgets(); - ksort($arr, SORT_NUMERIC); - if(count($arr)) { - foreach($arr as $x) { - if(! array_key_exists($x['location'], $a->page)) - $a->page[$x['location']] = ''; - - $a->page[$x['location']] .= $x['html']; - } - } - // Let's say we have a comanche declaration '[region=nav][/region][region=content]$nav $content[/region]'. // The text 'region=' identifies a section of the layout by that name. So what we want to do here is leave // $a->page['nav'] empty and put the default content from $a->page['nav'] and $a->page['section'] diff --git a/doc/bbcode.html b/doc/bbcode.html index 4fe47842f..3e9bda1d9 100644 --- a/doc/bbcode.html +++ b/doc/bbcode.html @@ -7,11 +7,11 @@ <li>[u]underlined[/u] - <u>underlined</u><br /> <li>[s]strike[/s] - <strike>strike</strike><br /> <li>[color=red]red[/color] - <span style="color: red;">red</span><br /> -<li>[url=https://redmatrix.me]$Projectname[/url] <a href="https://redmatrix.me">$Projectname</a><br /> -<li>[img]https://redmatrix.me/images/default_profile_photos/rainbow_man/48.jpg[/img] <img src="https://redmatrix.me/images/default_profile_photos/rainbow_man/48.jpg" alt="Image/photo" /><br /> -<li>[img float=left]https://redmatrix.me/images/default_profile_photos/rainbow_man/48.jpg[/img] <img src="https://redmatrix.me/images/default_profile_photos/rainbow_man/48.jpg" style="float:left;" alt="Image/photo" /><br /> +<li>[url=https://zothub.com]$Projectname[/url] <a href="https://zothub.com">$Projectname</a><br /> +<li>[img]https://zothub.com/images/default_profile_photos/rainbow_man/48.jpg[/img] <img src="https://zothub.com/images/default_profile_photos/rainbow_man/48.jpg" alt="Image/photo" /><br /> +<li>[img float=left]https://zothub.com/images/default_profile_photos/rainbow_man/48.jpg[/img] <img src="https://zothub.com/images/default_profile_photos/rainbow_man/48.jpg" style="float:left;" alt="Image/photo" /><br /> <div style="clear:both;"></div> -<li>[img float=right]https://redmatrix.me/images/default_profile_photos/rainbow_man/48.jpg[/img] <img src="https://redmatrix.me/images/default_profile_photos/rainbow_man/48.jpg" style="float:right;" alt="Image/photo" /><br /> +<li>[img float=right]https://zothub.com/images/default_profile_photos/rainbow_man/48.jpg[/img] <img src="https://zothub.com/images/default_profile_photos/rainbow_man/48.jpg" style="float:right;" alt="Image/photo" /><br /> <div style="clear:both;"></div> <li>[code]code[/code] <code>code</code><br /> <li>[quote]quote[/quote] <blockquote>quote</blockquote><br /> @@ -50,8 +50,8 @@ <p>$Projectname specific codes</p> <ul class="listbullet" style="list-style-type: circle;"> <li>[&copy;] © This works for many HTML entities</li> -<li>[zrl]https://redmatrix.me[/zrl] Magic-auth version of [url] tag</li> -<li>[zmg]https://redmatrix.me/some/photo.jpg[/zmg] Magic-auth version of [img] tag<br /></li> +<li>[zrl]https://zothub.com[/zrl] Magic-auth version of [url] tag</li> +<li>[zmg]https://zothub.com/some/photo.jpg[/zmg] Magic-auth version of [img] tag<br /></li> <li>[observer=1]Text to display if observer is authenticated in the matrix[/observer]</li> <li>[observer=0]Text to display if observer is <strong>not</strong> authenticated in the matrix[/observer]</li> diff --git a/doc/database/db_conv.bb b/doc/database/db_conv.bb index ba1ba7f01..5adfa8c80 100644 --- a/doc/database/db_conv.bb +++ b/doc/database/db_conv.bb @@ -1,21 +1,24 @@ + +Used in Diaspora private mails + [table] [tr][th]Field[/th][th]Description[/th][th]Type[/th][th]Null[/th][th]Key[/th][th]Default[/th][th]Extra [/th][/tr] -[tr][td]id[/td][td][/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment +[tr][td]id[/td][td]sequential ID[/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment [/td][/tr] -[tr][td]guid[/td][td][/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]guid[/td][td]A unique identifier for this conversation[/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] -[tr][td]recips[/td][td][/td][td]mediumtext[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]recips[/td][td]sender_handle;recipient_handle[/td][td]mediumtext[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] -[tr][td]uid[/td][td][/td][td]int(11)[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]uid[/td][td]channel.channel_id of the owner of this data[/td][td]int(11)[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] -[tr][td]creator[/td][td][/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]creator[/td][td]handle of creator[/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] -[tr][td]created[/td][td][/td][td]datetime[/td][td]NO[/td][td]MUL[/td][td]0000-00-00 00:00:00[/td][td] +[tr][td]created[/td][td]creation timestamp[/td][td]datetime[/td][td]NO[/td][td]MUL[/td][td]0000-00-00 00:00:00[/td][td] [/td][/tr] -[tr][td]updated[/td][td][/td][td]datetime[/td][td]NO[/td][td]MUL[/td][td]0000-00-00 00:00:00[/td][td] +[tr][td]updated[/td][td]edited timestamp[/td][td]datetime[/td][td]NO[/td][td]MUL[/td][td]0000-00-00 00:00:00[/td][td] [/td][/tr] -[tr][td]subject[/td][td][/td][td]mediumtext[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]subject[/td][td]subject of initial message (obscured for privacy)[/td][td]mediumtext[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] [/table] diff --git a/doc/database/db_group_member.bb b/doc/database/db_group_member.bb index d31fa1edb..b9ab8171d 100644 --- a/doc/database/db_group_member.bb +++ b/doc/database/db_group_member.bb @@ -1,13 +1,13 @@ [table] [tr][th]Field[/th][th]Description[/th][th]Type[/th][th]Null[/th][th]Key[/th][th]Default[/th][th]Extra [/th][/tr] -[tr][td]id[/td][td][/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment +[tr][td]id[/td][td]sequential ID[/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment [/td][/tr] -[tr][td]uid[/td][td][/td][td]int(10) unsigned[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]uid[/td][td]channel.channel_id of the owner of this data[/td][td]int(10) unsigned[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] -[tr][td]gid[/td][td][/td][td]int(10) unsigned[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]gid[/td][td]groups.id of the associated group[/td][td]int(10) unsigned[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] -[tr][td]xchan[/td][td][/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td][/td][td] +[tr][td]xchan[/td][td]xchan.xchan_hash of the member assigned to the associated group[/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td][/td][td] [/td][/tr] [/table] diff --git a/doc/database/db_groups.bb b/doc/database/db_groups.bb index 03e4fe2d7..078d96464 100644 --- a/doc/database/db_groups.bb +++ b/doc/database/db_groups.bb @@ -1,17 +1,17 @@ [table] [tr][th]Field[/th][th]Description[/th][th]Type[/th][th]Null[/th][th]Key[/th][th]Default[/th][th]Extra [/th][/tr] -[tr][td]id[/td][td][/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment +[tr][td]id[/td][td]sequential ID[/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment [/td][/tr] -[tr][td]hash[/td][td][/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td][/td][td] +[tr][td]hash[/td][td]unique hash representing this group with the group name appended[/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td][/td][td] [/td][/tr] -[tr][td]uid[/td][td][/td][td]int(10) unsigned[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]uid[/td][td]channel.channel_id owning this data[/td][td]int(10) unsigned[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] -[tr][td]visible[/td][td][/td][td]tinyint(1)[/td][td]NO[/td][td]MUL[/td][td]0[/td][td] +[tr][td]visible[/td][td]1 indicates the member list is not private[/td][td]tinyint(1)[/td][td]NO[/td][td]MUL[/td][td]0[/td][td] [/td][/tr] -[tr][td]deleted[/td][td][/td][td]tinyint(1)[/td][td]NO[/td][td]MUL[/td][td]0[/td][td] +[tr][td]deleted[/td][td]1 indicates the group has been deleted[/td][td]tinyint(1)[/td][td]NO[/td][td]MUL[/td][td]0[/td][td] [/td][/tr] -[tr][td]name[/td][td][/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]name[/td][td]human readable name of group[/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] [/table] diff --git a/doc/database/db_hook.bb b/doc/database/db_hook.bb index 6e8e907a1..0812b1b41 100644 --- a/doc/database/db_hook.bb +++ b/doc/database/db_hook.bb @@ -1,15 +1,15 @@ [table] [tr][th]Field[/th][th]Description[/th][th]Type[/th][th]Null[/th][th]Key[/th][th]Default[/th][th]Extra [/th][/tr] -[tr][td]id[/td][td][/td][td]int(11)[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment +[tr][td]id[/td][td]sequential ID[/td][td]int(11)[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment [/td][/tr] -[tr][td]hook[/td][td][/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]hook[/td][td]name of hook[/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] -[tr][td]file[/td][td][/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]file[/td][td]relative filename of hook handler[/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] -[tr][td]function[/td][td][/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] +[tr][td]function[/td][td]function name of hook handler[/td][td]char(255)[/td][td]NO[/td][td][/td][td]NULL[/td][td] [/td][/tr] -[tr][td]priority[/td][td][/td][td]int(11) unsigned[/td][td]NO[/td][td][/td][td]0[/td][td] +[tr][td]priority[/td][td]not yet implemented - can be used to sort conflicts in hook handling by calling handlers in priority order[/td][td]int(11) unsigned[/td][td]NO[/td][td][/td][td]0[/td][td] [/td][/tr] [/table] diff --git a/doc/database/db_item_id.bb b/doc/database/db_item_id.bb index b77ae2d1a..ba4cca247 100644 --- a/doc/database/db_item_id.bb +++ b/doc/database/db_item_id.bb @@ -1,15 +1,15 @@ [table] [tr][th]Field[/th][th]Description[/th][th]Type[/th][th]Null[/th][th]Key[/th][th]Default[/th][th]Extra [/th][/tr] -[tr][td]id[/td][td][/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment +[tr][td]id[/td][td]sequential ID[/td][td]int(10) unsigned[/td][td]NO[/td][td]PRI[/td][td]NULL[/td][td]auto_increment [/td][/tr] -[tr][td]iid[/td][td][/td][td]int(11)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]iid[/td][td]item.id of the referenced item[/td][td]int(11)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] -[tr][td]uid[/td][td][/td][td]int(11)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]uid[/td][td]channel.channel_id of the owner of this data[/td][td]int(11)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] -[tr][td]sid[/td][td][/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]sid[/td][td]an additional identifier to attach or link to the referenced item (often used to store a message_id from another system in order to suppress duplicates)[/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] -[tr][td]service[/td][td][/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] +[tr][td]service[/td][td]the name or description of the service which generated this identifier[/td][td]char(255)[/td][td]NO[/td][td]MUL[/td][td]NULL[/td][td] [/td][/tr] [/table] diff --git a/doc/hook/app_menu.bb b/doc/hook/app_menu.bb deleted file mode 100644 index 0458a692a..000000000 --- a/doc/hook/app_menu.bb +++ /dev/null @@ -1 +0,0 @@ -[h2]app_menu[/h2] diff --git a/doc/hook/avatar_lookup.bb b/doc/hook/avatar_lookup.bb deleted file mode 100644 index abd84de5e..000000000 --- a/doc/hook/avatar_lookup.bb +++ /dev/null @@ -1 +0,0 @@ -[h2]avatar_lookup[/h2] diff --git a/doc/hook/cron.bb b/doc/hook/cron.bb index ebbb64d50..55120b6c2 100644 --- a/doc/hook/cron.bb +++ b/doc/hook/cron.bb @@ -1 +1,5 @@ [h2]cron[/h2] + +Called when cron task (include/poller.php) is executed. The hook data is a string representing the current time (UTC). + + diff --git a/doc/hook/cron_daily.bb b/doc/hook/cron_daily.bb index c5062330a..802bea5e4 100644 --- a/doc/hook/cron_daily.bb +++ b/doc/hook/cron_daily.bb @@ -1 +1,3 @@ [h2]cron_daily[/h2] + +Called when cron task (include/poller.php) performs a cron_daily operation. The hook data is a string representing the current time (UTC). diff --git a/doc/hook/cron_weekly.bb b/doc/hook/cron_weekly.bb index 8dc85e494..c01bf9611 100644 --- a/doc/hook/cron_weekly.bb +++ b/doc/hook/cron_weekly.bb @@ -1 +1,3 @@ [h2]cron_weekly[/h2] + +Called when cron task (include/poller.php) performs a cron_weekly operation. The hook data is a string representing the current time (UTC). diff --git a/doc/hook/get_widgets.bb b/doc/hook/get_widgets.bb deleted file mode 100644 index 54b43858a..000000000 --- a/doc/hook/get_widgets.bb +++ /dev/null @@ -1 +0,0 @@ -[h2]get_widgets[/h2] diff --git a/doc/hook/probe_well_known.bb b/doc/hook/probe_well_known.bb index eff690f31..62898c536 100644 --- a/doc/hook/probe_well_known.bb +++ b/doc/hook/probe_well_known.bb @@ -1 +1,3 @@ [h2]probe_well_known[/h2] + +This hook is under construction and not currently used - see include/probe.php
\ No newline at end of file diff --git a/doc/hook/smilie.bb b/doc/hook/smilie.bb index cea3e0c94..575acc178 100644 --- a/doc/hook/smilie.bb +++ b/doc/hook/smilie.bb @@ -1 +1,19 @@ [h2]smilie[/h2] + + +Called when processing translation of emoticons. It is passed an array containing two sub-arrays: + + array( + 'texts' => array('text1','text2',...), + 'icons' => array('icon1','icon2',...) + ); + + texts is the emoticon text - for example ':-)' for a traditional smile face. + icons is the HTML used as a replacement. For example + '<img class="smiley" src="https://localhost/images/smiley-smile.gif" alt=":-)" />' + + If adding or removing an entry from either array, the corresponding element from the matching array must also + be added or removed. Emoticons less than three characters in length or not recommended as they get triggered + incorrectly quite often. Extended emoticons are indicated by convention using a preceding colon, for example + + :walrus_kissing_a_baby
\ No newline at end of file diff --git a/doc/hook/tagged.bb b/doc/hook/tagged.bb index 5add76713..05d081d07 100644 --- a/doc/hook/tagged.bb +++ b/doc/hook/tagged.bb @@ -1 +1,16 @@ [h2]tagged[/h2] + + +This hook is called when a delivery is made which results in the recipient being tagged. + +The hook data is an array containing + + array( + 'channel_id' => int, + 'item' => item structure of the delivered item from database, + 'body' => the body of the referenced item + + ); + + Note: This hook is called before secondary delivery chains are invoked in the case of tagging a forum. This means that permissions and some item attributes will be those of the item before being re-packaged and before ownership of this item is given to the forum. + diff --git a/doc/hook/validate_channelname.bb b/doc/hook/validate_channelname.bb index c78961017..2ab12bbec 100644 --- a/doc/hook/validate_channelname.bb +++ b/doc/hook/validate_channelname.bb @@ -1 +1,23 @@ [h2]validate_channelname[/h2] + +Called when creating a new channel or changing the channel name in mod/settings.php + +Hook data consists of an array + + array( + 'name' => supplied name + ); + + If the hook handler determines the name is valid, do nothing. If there is an issue with the name, + set $hook_data['message'] to the message text which should be displayed to the member - and the name will + not be accepted. + + + Example: + [code] + if(mb_strlen($hook_data['name']) < 3) + $hook_data['message'] = t('Name too short.'); + [/code] + + +
\ No newline at end of file diff --git a/doc/hooklist.bb b/doc/hooklist.bb index 171885851..2285ef1cf 100644 --- a/doc/hooklist.bb +++ b/doc/hooklist.bb @@ -40,9 +40,6 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/api_perm_is_allowed]api_perm_is_allowed[/zrl] Called when perm_is_allowed() is executed from an API call. -[zrl=[baseurl]/help/hook/app_menu]app_menu[/zrl] - Used to register plugins as apps - [zrl=[baseurl]/help/hook/atom_author]atom_author[/zrl] Called when generating an author or owner element for an Atom ActivityStream feed @@ -61,9 +58,6 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/authenticate]authenticate[/zrl] Can provide alternate authentication mechanisms -[zrl=[baseurl]/help/hook/avatar_lookup]avatar_lookup[/zrl] - Used for "gravatar" or libravatar profile photo lookup. - [zrl=[baseurl]/help/hook/bb2diaspora]bb2diaspora[/zrl] called when converting bbcode to markdown @@ -212,9 +206,6 @@ Hooks allow plugins/addons to "hook into" the code at many points and alter the [zrl=[baseurl]/help/hook/get_role_perms]get_role_perms[/zrl] Called when get_role_perms() is called to obtain permissions for named permission roles -[zrl=[baseurl]/help/hook/get_widgets]get_widgets[/zrl] - No longer used - now widget placement is managed by Comanche - [zrl=[baseurl]/help/hook/global_permissions]global_permissions[/zrl] Called when the global permissions list is generated diff --git a/hubzilla_er/Makefile b/hubzilla_er/Makefile new file mode 100644 index 000000000..f36f01007 --- /dev/null +++ b/hubzilla_er/Makefile @@ -0,0 +1,17 @@ +#makefile for schemaspy + + +#NOTE: This makefile sucks. It needs to have all run the script, and check that schemaspy and mysqlconn are present. + +schemaspy:: + wget "http://downloads.sourceforge.net/project/schemaspy/schemaspy/SchemaSpy%205.0.0/schemaSpy_5.0.0.jar?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fschemaspy%2F&ts=1447051240&use_mirror=iweb" + +mysqlconn:: + wget http://central.maven.org/maven2/mysql/mysql-connector-java/5.1.17/mysql-connector-java-5.1.17.jar + +#TODO: install java and graphviz or check it is there + +install: schemaspy mysqlconn + +run: + ../util/schemaspy diff --git a/hubzilla_er/zot.xml b/hubzilla_er/zot.xml index f33e273eb..c1450b4fc 100644 --- a/hubzilla_er/zot.xml +++ b/hubzilla_er/zot.xml @@ -328,7 +328,9 @@ <child column="channel_id" foreignKey="Implied Constraint" implied="true" onDeleteCascade="false" table="mail"/> <child column="channel_id" foreignKey="Implied Constraint" implied="true" onDeleteCascade="false" table="profext"/> </column> - <column autoUpdated="false" defaultValue="0" digits="0" id="1" name="channel_account_id" nullable="false" remarks="" size="10" type="INT UNSIGNED"/> + <column autoUpdated="false" defaultValue="0" digits="0" id="1" name="channel_account_id" nullable="false" remarks="" size="10" type="INT UNSIGNED"> + <foreignKey table="account" column="account_id"/> + </column> <column autoUpdated="false" defaultValue="0" digits="0" id="2" name="channel_primary" nullable="false" remarks="" size="0" type="BIT"/> <column autoUpdated="false" defaultValue="" digits="0" id="3" name="channel_name" nullable="false" remarks="" size="255" type="CHAR"/> <column autoUpdated="false" defaultValue="" digits="0" id="4" name="channel_address" nullable="false" remarks="" size="255" type="CHAR"/> diff --git a/include/RedDAV/RedDirectory.php b/include/RedDAV/RedDirectory.php index 87bdf8f13..8d8af5bd3 100644 --- a/include/RedDAV/RedDirectory.php +++ b/include/RedDAV/RedDirectory.php @@ -363,6 +363,27 @@ class RedDirectory extends DAV\Node implements DAV\ICollection, DAV\IQuota { } /** + * @brief delete directory + */ + + public function delete() { + logger('delete file ' . basename($this->red_path), LOGGER_DEBUG); + + if ((! $this->auth->owner_id) || (! perm_is_allowed($this->auth->owner_id, $this->auth->observer, 'write_storage'))) { + throw new DAV\Exception\Forbidden('Permission denied.'); + } + + if ($this->auth->owner_id !== $this->auth->channel_id) { + if (($this->auth->observer !== $this->data['creator']) || intval($this->data['is_dir'])) { + throw new DAV\Exception\Forbidden('Permission denied.'); + } + } + + attach_delete($this->auth->owner_id, $this->folder_hash); + } + + + /** * @brief Checks if a child exists. * * @param string $name diff --git a/include/acl_selectors.php b/include/acl_selectors.php index cb2266473..4d44ec12e 100644 --- a/include/acl_selectors.php +++ b/include/acl_selectors.php @@ -231,6 +231,7 @@ function populate_acl($defaults = null,$show_jotnets = true) { $jotnets = ''; if($show_jotnets) { +logger('jot_networks'); call_hooks('jot_networks', $jotnets); } @@ -243,6 +244,7 @@ function populate_acl($defaults = null,$show_jotnets = true) { '$allowgid' => json_encode($allow_gid), '$denycid' => json_encode($deny_cid), '$denygid' => json_encode($deny_gid), + '$jnetModalTitle' => t('Other networks and post services'), '$jotnets' => $jotnets, '$aclModalTitle' => t('Permissions'), '$aclModalDismiss' => t('Close') diff --git a/include/api.php b/include/api.php index b51bcc5f0..875bf121f 100644 --- a/include/api.php +++ b/include/api.php @@ -2416,6 +2416,96 @@ logger('Req: ' . var_export($req,true)); api_register_func('api/oauth/request_token', 'api_oauth_request_token', false); api_register_func('api/oauth/access_token', 'api_oauth_access_token', false); + + +function api_export_users(&$a,$type) { + + if (! is_site_admin()){ + header('HTTP/1.0 401 Unauthorized'); + die('Only admin accounts may use this endpoint.'); + } + + $r = q("SELECT * FROM account"); + + // TODO: paginating! + + $ret = array(); + foreach($r as $u){ + $ret[] = $u; + } + + json_return_and_die(array('status' => 'OK', + 'users' => $u)); +} +api_register_func('api/export/users','api_export_users', true); + + + +function api_export_channel_hashes(&$a, $type) { + + if (! is_site_admin()){ + header('HTTP/1.0 401 Unauthorized'); + die('Only admin accounts may use this endpoint.'); + } + + if( $_REQUEST['account_id'] == ''){ + header('HTTP/1.0 422 Unprocessable Entity'); + die('Must supply account_id parameter.'); + + } + + $c = q("select * from channel where channel_account_id = '%d'", + intval($_REQUEST['account_id'])); + + if(! $c){ + header('HTTP/1.0 404 Not Found'); + die('No such account_id '. $_REQUEST['account_id']); + + } + + $ret = array(); + foreach ($c as $r){ + $ret[] = $r['channel_hash']; + } + json_return_and_die(array('status' => 'OK', + 'channel_hashes' => $ret)); +} +api_register_func('api/export/channels','api_export_channel_hashes', true); + + + + +function api_export_identity(&$a, $type) { + + if (! is_site_admin()){ + header('HTTP/1.0 401 Unauthorized'); + die('Only admin accounts may use this endpoint.'); + } + + if( $_REQUEST['channel_hash'] == ''){ + header('HTTP/1.0 422 Unprocessable Entity'); + die('Must supply channel_hash parameter.'); + + } + + require_once('include/identity.php'); + + $c = q("select channel_id from channel where channel_hash = '%s' LIMIT 1", + dbesc($_REQUEST['channel_hash'])); + + if(! $c){ + header('HTTP/1.0 404 Not Found'); + die('No such channel '. $_REQUEST['channel_hash']); + + } + json_return_and_die( + identity_basic_export($c[0]['channel_id'], + (($_REQUEST['posts']) ? intval($_REQUEST['posts']) : 0 ))); +} +api_register_func('api/export/identity','api_export_identity', true); + + + /* Not implemented by now: statuses/retweets_of_me diff --git a/include/conversation.php b/include/conversation.php index a5fe573cd..c278dcf12 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1024,8 +1024,8 @@ function builtin_activity_puller($item, &$conv_responses) { if((activity_match($item['verb'], $verb)) && ($item['id'] != $item['parent'])) { $name = (($item['author']['xchan_name']) ? $item['author']['xchan_name'] : t('Unknown')); - $url = (($item['author']['xchan_url']) - ? '<a href="' . chanlink_url($item['author']['xchan_url']) . '">' . $name . '</a>' + $url = (($item['author']['xchan_url'] && $item['author']['xchan_photo_s']) + ? '<a href="' . chanlink_url($item['author']['xchan_url']) . '">' . '<img class="response-photo" src="' . zid($item['author']['xchan_photo_s']) . ' alt="' . urlencode($name) . '" /> ' . $name . '</a>' : '<a href="#" class="disabled">' . $name . '</a>' ); diff --git a/include/dir_fns.php b/include/dir_fns.php index e5f0e1e2b..398f43d00 100644 --- a/include/dir_fns.php +++ b/include/dir_fns.php @@ -15,6 +15,19 @@ function find_upstream_directory($dirmode) { global $DIRECTORY_FALLBACK_SERVERS; $preferred = get_config('system','directory_server'); + + // Thwart attempts to use a private directory + + if(($preferred) && ($prefered != z_root())) { + $r = q("select * from site where site_url = '%s' limit 1", + dbesc($preferred) + ); + if(($r) && ($r[0]['site_flags'] & DIRECTORY_MODE_STADALONE)) { + $preferred = ''; + } + } + + if (! $preferred) { /* diff --git a/include/identity.php b/include/identity.php index 0c4a9df45..21d919508 100644 --- a/include/identity.php +++ b/include/identity.php @@ -904,19 +904,6 @@ function profile_load(&$a, $nickname, $profile = '') { } /** - * @brief - * - * @param App &$a - * @param boolean $connect - */ -function profile_create_sidebar(&$a, $connect = true) { - - $block = (((get_config('system', 'block_public')) && (! local_channel()) && (! remote_channel())) ? true : false); - - $a->set_widget('profile', profile_sidebar($a->profile, $block, $connect)); -} - -/** * @brief Formats a profile for display in the sidebar. * * It is very difficult to templatise the HTML completely diff --git a/include/network.php b/include/network.php index c67c019ef..65599bd05 100644 --- a/include/network.php +++ b/include/network.php @@ -526,28 +526,6 @@ function allowed_email($email) { -function avatar_img($email) { - - $avatar = array(); - $a = get_app(); - - $avatar['size'] = 300; - $avatar['email'] = $email; - $avatar['url'] = ''; - $avatar['success'] = false; - - call_hooks('avatar_lookup', $avatar); - - if (! $avatar['success']) - $avatar['url'] = $a->get_baseurl() . '/' . get_default_profile_photo(); - - logger('Avatar: ' . $avatar['email'] . ' ' . $avatar['url'], LOGGER_DEBUG); - - return $avatar['url']; -} - - - function parse_xml_string($s,$strict = true) { if($strict) { if(! strstr($s,'<?xml')) diff --git a/include/text.php b/include/text.php index c2573da0c..edaa8dcd3 100644 --- a/include/text.php +++ b/include/text.php @@ -872,15 +872,17 @@ function searchbox($s,$id='search-box',$url='/search',$save = false) { )); } +function valid_email_regex($x){ + if(preg_match('/^[_a-zA-Z0-9\-\+]+(\.[_a-zA-Z0-9\-\+]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/',$x)) + return true; + return false; +} function valid_email($x){ if(get_config('system','disable_email_validation')) return true; - if(preg_match('/^[_a-zA-Z0-9\-\+]+(\.[_a-zA-Z0-9\-\+]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)+$/',$x)) - return true; - - return false; + return valid_email_regex($x); } /** diff --git a/mod/attach.php b/mod/attach.php index ad5dead07..306e39519 100644 --- a/mod/attach.php +++ b/mod/attach.php @@ -37,7 +37,10 @@ function attach_init(&$a) { header('Content-disposition: attachment; filename="' . $r['data']['filename'] . '"'); if(intval($r['data']['os_storage'])) { $fname = dbunescbin($r['data']['data']); - $istream = fopen('store/' . $c[0]['channel_address'] . '/' . $fname,'rb'); + if(strpos($fname,'store') !== false) + $istream = fopen($fname,'rb'); + else + $istream = fopen('store/' . $c[0]['channel_address'] . '/' . $fname,'rb'); $ostream = fopen('php://output','wb'); if($istream && $ostream) { pipe_streams($istream,$ostream); diff --git a/mod/connedit.php b/mod/connedit.php index 877c12dc7..9c46fa999 100644 --- a/mod/connedit.php +++ b/mod/connedit.php @@ -177,16 +177,21 @@ function connedit_post(&$a) { if(($_REQUEST['pending']) && intval($orig_record[0]['abook_pending'])) { $new_friend = true; - if(! $abook_my_perms) { - $abook_my_perms = get_channel_default_perms(local_channel()); + // @fixme it won't be common, but when you accept a new connection request + // the permissions will now be that of your permissions role and ignore + // any you may have set manually on the form. We'll probably see a bug if somebody + // tries to set the permissions *and* approve the connection in the same + // request. The workaround is to approve the connection, then go back and + // adjust permissions as desired. - $role = get_pconfig(local_channel(),'system','permissions_role'); - if($role) { - $x = get_role_perms($role); - if($x['perms_accept']) - $abook_my_perms = $x['perms_accept']; - } + $abook_my_perms = get_channel_default_perms(local_channel()); + + $role = get_pconfig(local_channel(),'system','permissions_role'); + if($role) { + $x = get_role_perms($role); + if($x['perms_accept']) + $abook_my_perms = $x['perms_accept']; } } @@ -661,6 +666,10 @@ function connedit_content(&$a) { if($locs) { foreach($locs as $l) { + if(!($l['location'])) + continue; + if(strpos($locstr,$l['location']) !== false) + continue; if(strlen($locstr)) $locstr .= ', '; $locstr .= $l['location']; diff --git a/tests/text_test.php b/tests/text_test.php new file mode 100644 index 000000000..d1e210b68 --- /dev/null +++ b/tests/text_test.php @@ -0,0 +1,31 @@ +<?php +/** + * this file contains tests for text.php + * + * @package test.util + */ + +/** required, it is the file under test */ +require_once('include/text.php'); + +/** + * TestCase for the texter + * + * @author ken restivo + * @package test.util + */ +class TextTest extends PHPUnit_Framework_TestCase { + public function testGoodEmail() { + $this->assertTrue(valid_email_regex('ken@spaz.org')); + } + public function testGoodEmail2() { + $this->assertTrue(valid_email_regex('ken@restivo.org')); + } + public function testGoodEmail3() { + $this->assertTrue(valid_email_regex('nobody@hubzilla.com')); + } + public function testBadEmail() { + $this->assertFalse(valid_email_regex('nobody!uses!these!any.more')); + } + +}
\ No newline at end of file diff --git a/util/schemaspy b/util/schemaspy new file mode 100755 index 000000000..fdae74965 --- /dev/null +++ b/util/schemaspy @@ -0,0 +1,9 @@ +#!/usr/bin/env php +<?php + + +@include("../.htconfig.php"); + +# -port is useless, ignored +exec("java -jar schemaSpy_5.0.0.jar -t mysql -host $db_host -port $db_port -db $db_data -u $db_user -p $db_pass -dp mysql-connector-java-5.1.17.jar -meta zot.xml -o ."); + diff --git a/version.inc b/version.inc index 30304c72c..11ca984f2 100644 --- a/version.inc +++ b/version.inc @@ -1 +1,2 @@ -2015-11-06.1208 +2015-11-09.1211 + diff --git a/view/css/conversation.css b/view/css/conversation.css index 6f1d4b899..dc74dbbeb 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -246,3 +246,9 @@ a.wall-item-name-link { color: #FF0000; font-size: 1em !important; } + +.response-photo { + height: 18px !important; + width: 18px !important; +} + diff --git a/view/it/hmessages.po b/view/it/hmessages.po index 5d1014fad..e0509b758 100644 --- a/view/it/hmessages.po +++ b/view/it/hmessages.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-10-30 00:03-0700\n" -"PO-Revision-Date: 2015-11-04 13:49+0000\n" +"POT-Creation-Date: 2015-11-06 00:02-0800\n" +"PO-Revision-Date: 2015-11-09 07:51+0000\n" "Last-Translator: tuscanhobbit <pynolo@tarine.net>\n" "Language-Team: Italian (http://www.transifex.com/Friendica/red-matrix/language/it/)\n" "MIME-Version: 1.0\n" @@ -19,6 +19,672 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" +#: ../../include/conversation.php:120 ../../include/text.php:1863 +#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:77 +msgid "photo" +msgstr "la foto" + +#: ../../include/conversation.php:123 ../../include/event.php:896 +#: ../../include/text.php:1866 ../../mod/like.php:363 ../../mod/tagger.php:47 +#: ../../mod/events.php:245 +msgid "event" +msgstr "l'evento" + +#: ../../include/conversation.php:126 ../../mod/like.php:113 +msgid "channel" +msgstr "il canale" + +#: ../../include/conversation.php:148 ../../include/text.php:1869 +#: ../../mod/like.php:361 ../../mod/subthread.php:77 +msgid "status" +msgstr "il messaggio di stato" + +#: ../../include/conversation.php:150 ../../include/text.php:1871 +#: ../../mod/tagger.php:53 +msgid "comment" +msgstr "il commento" + +#: ../../include/conversation.php:164 ../../mod/like.php:410 +#, php-format +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s piace %3$s di %2$s" + +#: ../../include/conversation.php:167 ../../mod/like.php:412 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s non piace %3$s di %2$s" + +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s adesso è connesso con %2$s" + +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha mandato un poke a %2$s" + +#: ../../include/conversation.php:243 ../../include/text.php:942 +msgid "poked" +msgstr "ha ricevuto un poke" + +#: ../../include/conversation.php:260 ../../mod/mood.php:63 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s è %2$s" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1063 +msgctxt "title" +msgid "Likes" +msgstr "Mi piace" + +#: ../../include/conversation.php:574 ../../mod/photos.php:1063 +msgctxt "title" +msgid "Dislikes" +msgstr "Non mi piace" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1064 +msgctxt "title" +msgid "Agree" +msgstr "D'accordo" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1064 +msgctxt "title" +msgid "Disagree" +msgstr "Non d'accordo" + +#: ../../include/conversation.php:575 ../../mod/photos.php:1064 +msgctxt "title" +msgid "Abstain" +msgstr "Astenuti" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1065 +msgctxt "title" +msgid "Attending" +msgstr "Partecipano" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1065 +msgctxt "title" +msgid "Not attending" +msgstr "Non partecipano" + +#: ../../include/conversation.php:576 ../../mod/photos.php:1065 +msgctxt "title" +msgid "Might attend" +msgstr "Forse partecipano" + +#: ../../include/conversation.php:656 ../../include/ItemObject.php:126 +msgid "Select" +msgstr "Scegli" + +#: ../../include/conversation.php:657 ../../include/RedDAV/RedBrowser.php:241 +#: ../../include/apps.php:260 ../../include/ItemObject.php:120 +#: ../../mod/connedit.php:546 ../../mod/photos.php:1129 +#: ../../mod/editblock.php:181 ../../mod/admin.php:808 ../../mod/admin.php:967 +#: ../../mod/webpages.php:183 ../../mod/blocks.php:155 ../../mod/thing.php:258 +#: ../../mod/settings.php:647 ../../mod/editlayout.php:179 +#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 +msgid "Delete" +msgstr "Elimina" + +#: ../../include/conversation.php:664 ../../include/ItemObject.php:89 +msgid "Private Message" +msgstr "Messaggio privato" + +#: ../../include/conversation.php:671 ../../include/ItemObject.php:227 +msgid "Message signature validated" +msgstr "Messaggio con firma verificata" + +#: ../../include/conversation.php:672 ../../include/ItemObject.php:228 +msgid "Message signature incorrect" +msgstr "Massaggio con firma non corretta" + +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Vedi il profilo di %s @ %s" + +#: ../../include/conversation.php:709 +msgid "Categories:" +msgstr "Categorie:" + +#: ../../include/conversation.php:710 +msgid "Filed under:" +msgstr "Classificato come:" + +#: ../../include/conversation.php:718 ../../include/ItemObject.php:321 +#, php-format +msgid "from %s" +msgstr "da %s" + +#: ../../include/conversation.php:721 ../../include/ItemObject.php:324 +#, php-format +msgid "last edited: %s" +msgstr "ultima modifica: %s" + +#: ../../include/conversation.php:722 ../../include/ItemObject.php:325 +#, php-format +msgid "Expires: %s" +msgstr "Scadenza: %s" + +#: ../../include/conversation.php:737 +msgid "View in context" +msgstr "Vedi nel contesto" + +#: ../../include/conversation.php:739 ../../include/conversation.php:1221 +#: ../../include/ItemObject.php:375 ../../mod/photos.php:1029 +#: ../../mod/editblock.php:150 ../../mod/editpost.php:129 +#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 +msgid "Please wait" +msgstr "Attendere" + +#: ../../include/conversation.php:849 +msgid "remove" +msgstr "rimuovi" + +#: ../../include/conversation.php:853 ../../include/nav.php:241 +msgid "Loading..." +msgstr "Caricamento in corso..." + +#: ../../include/conversation.php:854 +msgid "Delete Selected Items" +msgstr "Elimina gli oggetti selezionati" + +#: ../../include/conversation.php:945 +msgid "View Source" +msgstr "Vedi il sorgente" + +#: ../../include/conversation.php:946 +msgid "Follow Thread" +msgstr "Segui la discussione" + +#: ../../include/conversation.php:947 +msgid "Stop Following" +msgstr "Non seguire più la discussione" + +#: ../../include/conversation.php:948 +msgid "View Status" +msgstr "Bacheca" + +#: ../../include/conversation.php:949 ../../include/nav.php:86 +#: ../../mod/connedit.php:493 +msgid "View Profile" +msgstr "Profilo" + +#: ../../include/conversation.php:950 +msgid "View Photos" +msgstr "Foto" + +#: ../../include/conversation.php:951 +msgid "Activity/Posts" +msgstr "Attività e Post" + +#: ../../include/conversation.php:952 ../../include/Contact.php:101 +#: ../../include/identity.php:965 ../../include/widgets.php:136 +#: ../../include/widgets.php:174 ../../mod/directory.php:316 +#: ../../mod/match.php:64 ../../mod/suggest.php:52 +msgid "Connect" +msgstr "Aggiungi" + +#: ../../include/conversation.php:953 +msgid "Edit Connection" +msgstr "Modifica il contatto" + +#: ../../include/conversation.php:954 +msgid "Send PM" +msgstr "Messaggio privato" + +#: ../../include/conversation.php:955 ../../include/apps.php:145 +msgid "Poke" +msgstr "Poke" + +#: ../../include/conversation.php:1026 ../../include/RedDAV/RedBrowser.php:164 +#: ../../include/apps.php:360 ../../include/apps.php:415 +#: ../../mod/photos.php:759 ../../mod/photos.php:1198 +msgid "Unknown" +msgstr "Sconosciuto" + +#: ../../include/conversation.php:1069 +#, php-format +msgid "%s likes this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1069 +#, php-format +msgid "%s doesn't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1073 +#, php-format +msgid "<span %1$s>%2$d people</span> like this." +msgid_plural "<span %1$s>%2$d people</span> like this." +msgstr[0] "" +msgstr[1] "Piace a <span %1$s>%2$d persone</span>." + +#: ../../include/conversation.php:1075 +#, php-format +msgid "<span %1$s>%2$d people</span> don't like this." +msgid_plural "<span %1$s>%2$d people</span> don't like this." +msgstr[0] "" +msgstr[1] "Non piace a <span %1$s>%2$d persone</span>." + +#: ../../include/conversation.php:1081 +msgid "and" +msgstr "e" + +#: ../../include/conversation.php:1084 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] "" +msgstr[1] "e altre %d persone" + +#: ../../include/conversation.php:1085 +#, php-format +msgid "%s like this." +msgstr "Piace a %s." + +#: ../../include/conversation.php:1085 +#, php-format +msgid "%s don't like this." +msgstr "Non piace a %s." + +#: ../../include/conversation.php:1148 +msgid "Visible to <strong>everybody</strong>" +msgstr "Visibile a <strong>tutti</strong>" + +#: ../../include/conversation.php:1149 ../../mod/mail.php:194 +#: ../../mod/mail.php:308 +msgid "Please enter a link URL:" +msgstr "Inserisci l'indirizzo del link:" + +#: ../../include/conversation.php:1150 +msgid "Please enter a video link/URL:" +msgstr "Inserisci l'indirizzo del video:" + +#: ../../include/conversation.php:1151 +msgid "Please enter an audio link/URL:" +msgstr "Inserisci l'indirizzo dell'audio:" + +#: ../../include/conversation.php:1152 +msgid "Tag term:" +msgstr "Tag:" + +#: ../../include/conversation.php:1153 ../../mod/filer.php:48 +msgid "Save to Folder:" +msgstr "Salva nella cartella:" + +#: ../../include/conversation.php:1154 +msgid "Where are you right now?" +msgstr "Dove sei ora?" + +#: ../../include/conversation.php:1155 ../../mod/editpost.php:54 +#: ../../mod/mail.php:195 ../../mod/mail.php:309 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Scade il YYYY-MM-DD HH:MM" + +#: ../../include/conversation.php:1163 ../../include/page_widgets.php:40 +#: ../../include/ItemObject.php:692 ../../mod/photos.php:1049 +#: ../../mod/editblock.php:171 ../../mod/editpost.php:149 +#: ../../mod/events.php:707 ../../mod/webpages.php:188 +#: ../../mod/editwebpage.php:212 +msgid "Preview" +msgstr "Anteprima" + +#: ../../include/conversation.php:1186 ../../mod/layouts.php:184 +#: ../../mod/photos.php:1028 ../../mod/webpages.php:182 +#: ../../mod/blocks.php:154 +msgid "Share" +msgstr "Condividi" + +#: ../../include/conversation.php:1188 +msgid "Page link name" +msgstr "Nome del link alla pagina" + +#: ../../include/conversation.php:1191 +msgid "Post as" +msgstr "Pubblica come " + +#: ../../include/conversation.php:1193 ../../include/ItemObject.php:684 +#: ../../mod/editblock.php:136 ../../mod/editpost.php:113 +#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 +msgid "Bold" +msgstr "Grassetto" + +#: ../../include/conversation.php:1194 ../../include/ItemObject.php:685 +#: ../../mod/editblock.php:137 ../../mod/editpost.php:114 +#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 +msgid "Italic" +msgstr "Corsivo" + +#: ../../include/conversation.php:1195 ../../include/ItemObject.php:686 +#: ../../mod/editblock.php:138 ../../mod/editpost.php:115 +#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 +msgid "Underline" +msgstr "Sottolineato" + +#: ../../include/conversation.php:1196 ../../include/ItemObject.php:687 +#: ../../mod/editblock.php:139 ../../mod/editpost.php:116 +#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 +msgid "Quote" +msgstr "Citazione" + +#: ../../include/conversation.php:1197 ../../include/ItemObject.php:688 +#: ../../mod/editblock.php:140 ../../mod/editpost.php:117 +#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 +msgid "Code" +msgstr "Codice" + +#: ../../include/conversation.php:1198 ../../mod/editblock.php:142 +#: ../../mod/editpost.php:118 ../../mod/editlayout.php:140 +#: ../../mod/editwebpage.php:182 +msgid "Upload photo" +msgstr "Carica foto" + +#: ../../include/conversation.php:1199 +msgid "upload photo" +msgstr "carica foto" + +#: ../../include/conversation.php:1200 ../../mod/editblock.php:143 +#: ../../mod/editpost.php:119 ../../mod/mail.php:240 ../../mod/mail.php:369 +#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:183 +msgid "Attach file" +msgstr "Allega file" + +#: ../../include/conversation.php:1201 +msgid "attach file" +msgstr "allega file" + +#: ../../include/conversation.php:1202 ../../mod/editblock.php:144 +#: ../../mod/editpost.php:120 ../../mod/mail.php:241 ../../mod/mail.php:370 +#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:184 +msgid "Insert web link" +msgstr "Inserisci un indirizzo web" + +#: ../../include/conversation.php:1203 +msgid "web link" +msgstr "link web" + +#: ../../include/conversation.php:1204 +msgid "Insert video link" +msgstr "Inserisci l'indirizzo del video" + +#: ../../include/conversation.php:1205 +msgid "video link" +msgstr "link video" + +#: ../../include/conversation.php:1206 +msgid "Insert audio link" +msgstr "Inserisci l'indirizzo dell'audio" + +#: ../../include/conversation.php:1207 +msgid "audio link" +msgstr "link audio" + +#: ../../include/conversation.php:1208 ../../mod/editblock.php:148 +#: ../../mod/editpost.php:124 ../../mod/editlayout.php:146 +#: ../../mod/editwebpage.php:188 +msgid "Set your location" +msgstr "La tua località" + +#: ../../include/conversation.php:1209 +msgid "set location" +msgstr "la tua località" + +#: ../../include/conversation.php:1210 ../../mod/editpost.php:126 +msgid "Toggle voting" +msgstr "Abilita/disabilita il voto" + +#: ../../include/conversation.php:1213 ../../mod/editblock.php:149 +#: ../../mod/editpost.php:125 ../../mod/editlayout.php:147 +#: ../../mod/editwebpage.php:189 +msgid "Clear browser location" +msgstr "Rimuovi la località data dal browser" + +#: ../../include/conversation.php:1214 +msgid "clear location" +msgstr "rimuovi la località" + +#: ../../include/conversation.php:1216 ../../mod/editblock.php:162 +#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205 +msgid "Title (optional)" +msgstr "Titolo (facoltativo)" + +#: ../../include/conversation.php:1220 ../../mod/editblock.php:165 +#: ../../mod/editpost.php:143 ../../mod/editlayout.php:163 +#: ../../mod/editwebpage.php:207 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorie (facoltative, lista separata da virgole)" + +#: ../../include/conversation.php:1222 ../../mod/editblock.php:151 +#: ../../mod/editpost.php:130 ../../mod/editlayout.php:149 +#: ../../mod/editwebpage.php:191 +msgid "Permission settings" +msgstr "Permessi dei tuoi contatti" + +#: ../../include/conversation.php:1223 +msgid "permissions" +msgstr "permessi" + +#: ../../include/conversation.php:1231 ../../mod/editblock.php:159 +#: ../../mod/editpost.php:138 ../../mod/editlayout.php:156 +#: ../../mod/editwebpage.php:200 +msgid "Public post" +msgstr "Post pubblico" + +#: ../../include/conversation.php:1233 ../../mod/editblock.php:166 +#: ../../mod/editpost.php:144 ../../mod/editlayout.php:164 +#: ../../mod/editwebpage.php:208 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Per esempio: mario@esempio.com, simona@esempio.com" + +#: ../../include/conversation.php:1246 ../../mod/editblock.php:176 +#: ../../mod/editpost.php:155 ../../mod/mail.php:245 ../../mod/mail.php:374 +#: ../../mod/editlayout.php:173 ../../mod/editwebpage.php:217 +msgid "Set expiration date" +msgstr "Data di scadenza" + +#: ../../include/conversation.php:1249 +msgid "Set publish date" +msgstr "Data di uscita programmata" + +#: ../../include/conversation.php:1251 ../../include/ItemObject.php:695 +#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:376 +msgid "Encrypt text" +msgstr "Cifratura del messaggio" + +#: ../../include/conversation.php:1253 ../../mod/editpost.php:159 +#: ../../mod/events.php:691 +msgid "OK" +msgstr "OK" + +#: ../../include/conversation.php:1254 ../../mod/fbrowser.php:82 +#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 +#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 +#: ../../mod/settings.php:585 ../../mod/settings.php:611 +msgid "Cancel" +msgstr "Annulla" + +#: ../../include/conversation.php:1497 +msgid "Discover" +msgstr "Scopri" + +#: ../../include/conversation.php:1500 +msgid "Imported public streams" +msgstr "Contenuti pubblici importati" + +#: ../../include/conversation.php:1505 +msgid "Commented Order" +msgstr "Ultimi commenti" + +#: ../../include/conversation.php:1508 +msgid "Sort by Comment Date" +msgstr "Per data del commento" + +#: ../../include/conversation.php:1512 +msgid "Posted Order" +msgstr "Ultimi post" + +#: ../../include/conversation.php:1515 +msgid "Sort by Post Date" +msgstr "Per data di creazione" + +#: ../../include/conversation.php:1520 ../../include/widgets.php:94 +msgid "Personal" +msgstr "Personali" + +#: ../../include/conversation.php:1523 +msgid "Posts that mention or involve you" +msgstr "Post che ti riguardano" + +#: ../../include/conversation.php:1529 ../../mod/menu.php:112 +#: ../../mod/connections.php:72 ../../mod/connections.php:82 +msgid "New" +msgstr "Novità" + +#: ../../include/conversation.php:1532 +msgid "Activity Stream - by date" +msgstr "Elenco attività - per data" + +#: ../../include/conversation.php:1538 +msgid "Starred" +msgstr "Preferiti" + +#: ../../include/conversation.php:1541 +msgid "Favourite Posts" +msgstr "Post preferiti" + +#: ../../include/conversation.php:1548 +msgid "Spam" +msgstr "Spam" + +#: ../../include/conversation.php:1551 +msgid "Posts flagged as SPAM" +msgstr "Post marcati come spam" + +#: ../../include/conversation.php:1595 ../../mod/admin.php:972 +msgid "Channel" +msgstr "Canale" + +#: ../../include/conversation.php:1598 +msgid "Status Messages and Posts" +msgstr "Post e messaggi di stato" + +#: ../../include/conversation.php:1607 +msgid "About" +msgstr "Informazioni" + +#: ../../include/conversation.php:1610 +msgid "Profile Details" +msgstr "Dettagli del profilo" + +#: ../../include/conversation.php:1616 ../../include/apps.php:139 +#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 +msgid "Photos" +msgstr "Foto" + +#: ../../include/conversation.php:1619 ../../include/photos.php:483 +msgid "Photo Albums" +msgstr "Album foto" + +#: ../../include/conversation.php:1623 ../../include/RedDAV/RedBrowser.php:226 +#: ../../include/apps.php:135 ../../include/nav.php:93 +#: ../../mod/fbrowser.php:114 +msgid "Files" +msgstr "Archivio file" + +#: ../../include/conversation.php:1626 +msgid "Files and Storage" +msgstr "Archivio file" + +#: ../../include/conversation.php:1636 ../../include/conversation.php:1639 +msgid "Chatrooms" +msgstr "Chat" + +#: ../../include/conversation.php:1649 ../../include/apps.php:129 +#: ../../include/nav.php:103 +msgid "Bookmarks" +msgstr "Segnalibri" + +#: ../../include/conversation.php:1652 +msgid "Saved Bookmarks" +msgstr "Segnalibri salvati" + +#: ../../include/conversation.php:1659 ../../include/apps.php:136 +#: ../../include/nav.php:107 ../../mod/webpages.php:178 +msgid "Webpages" +msgstr "Pagine web" + +#: ../../include/conversation.php:1662 +msgid "Manage Webpages" +msgstr "Gestisci le pagine web" + +#: ../../include/conversation.php:1691 ../../include/ItemObject.php:175 +#: ../../include/ItemObject.php:187 ../../mod/photos.php:1082 +#: ../../mod/photos.php:1094 +msgid "View all" +msgstr "Vedi tutto" + +#: ../../include/conversation.php:1715 ../../include/ItemObject.php:179 +#: ../../include/identity.php:1276 ../../include/taxonomy.php:403 +#: ../../mod/photos.php:1086 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Mi piace" +msgstr[1] "Mi piace" + +#: ../../include/conversation.php:1718 ../../include/ItemObject.php:184 +#: ../../mod/photos.php:1091 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "Non mi piace" +msgstr[1] "Non mi piace" + +#: ../../include/conversation.php:1721 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Partecipa" +msgstr[1] "Partecipano" + +#: ../../include/conversation.php:1724 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "Non partecipa" +msgstr[1] "Non partecipano" + +#: ../../include/conversation.php:1727 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso" +msgstr[1] "Indecisi" + +#: ../../include/conversation.php:1730 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "D'accordo" +msgstr[1] "D'accordo" + +#: ../../include/conversation.php:1733 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "Non d'accordo" +msgstr[1] "Non d'accordo" + +#: ../../include/conversation.php:1736 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "Astenuto" +msgstr[1] "Astenuti" + #: ../../include/Import/import_diaspora.php:17 msgid "No username found in import file." msgstr "Impossibile trovare il nome utente nel file da importare." @@ -60,18 +726,6 @@ msgstr "Appuntamenti ricevuti" msgid "Schedule Outbox" msgstr "Appuntamenti inviati" -#: ../../include/RedDAV/RedBrowser.php:164 ../../include/apps.php:360 -#: ../../include/apps.php:415 ../../include/conversation.php:1023 -#: ../../mod/photos.php:759 ../../mod/photos.php:1198 -msgid "Unknown" -msgstr "Sconosciuto" - -#: ../../include/RedDAV/RedBrowser.php:226 ../../include/apps.php:135 -#: ../../include/conversation.php:1620 ../../include/nav.php:93 -#: ../../mod/fbrowser.php:114 -msgid "Files" -msgstr "Archivio file" - #: ../../include/RedDAV/RedBrowser.php:227 msgid "Total" msgstr "Totale" @@ -93,8 +747,8 @@ msgstr "Crea" msgid "Upload" msgstr "Carica" -#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:948 -#: ../../mod/settings.php:585 ../../mod/settings.php:611 +#: ../../include/RedDAV/RedBrowser.php:235 ../../mod/admin.php:973 +#: ../../mod/settings.php:586 ../../mod/settings.php:612 #: ../../mod/sharedwithme.php:95 msgid "Name" msgstr "Nome" @@ -103,7 +757,8 @@ msgstr "Nome" msgid "Type" msgstr "Tipo" -#: ../../include/RedDAV/RedBrowser.php:237 ../../mod/sharedwithme.php:97 +#: ../../include/RedDAV/RedBrowser.php:237 ../../include/text.php:1236 +#: ../../mod/sharedwithme.php:97 msgid "Size" msgstr "Dimensione" @@ -117,22 +772,12 @@ msgstr "Ultima modifica" #: ../../mod/layouts.php:183 ../../mod/editblock.php:135 #: ../../mod/editpost.php:112 ../../mod/menu.php:108 #: ../../mod/webpages.php:181 ../../mod/blocks.php:153 ../../mod/thing.php:257 -#: ../../mod/settings.php:645 ../../mod/connections.php:235 +#: ../../mod/settings.php:646 ../../mod/connections.php:235 #: ../../mod/connections.php:248 ../../mod/connections.php:267 #: ../../mod/editlayout.php:134 ../../mod/editwebpage.php:176 msgid "Edit" msgstr "Modifica" -#: ../../include/RedDAV/RedBrowser.php:241 ../../include/apps.php:260 -#: ../../include/ItemObject.php:120 ../../include/conversation.php:657 -#: ../../mod/connedit.php:546 ../../mod/photos.php:1129 -#: ../../mod/editblock.php:181 ../../mod/admin.php:783 ../../mod/admin.php:942 -#: ../../mod/webpages.php:183 ../../mod/blocks.php:155 ../../mod/thing.php:258 -#: ../../mod/settings.php:646 ../../mod/editlayout.php:179 -#: ../../mod/editwebpage.php:223 ../../mod/group.php:173 -msgid "Delete" -msgstr "Elimina" - #: ../../include/RedDAV/RedBrowser.php:282 #, php-format msgid "You are using %1$s of your available file storage." @@ -301,7 +946,7 @@ msgstr "Il nome della chat non è valido." msgid "Room not found." msgstr "Chat non trovata." -#: ../../include/chat.php:133 ../../include/items.php:4377 +#: ../../include/chat.php:133 ../../include/items.php:4390 #: ../../include/photos.php:29 ../../include/attach.php:140 #: ../../include/attach.php:188 ../../include/attach.php:251 #: ../../include/attach.php:265 ../../include/attach.php:272 @@ -317,28 +962,28 @@ msgstr "Chat non trovata." #: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 #: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 #: ../../mod/poke.php:133 ../../mod/network.php:12 ../../mod/chat.php:94 -#: ../../mod/chat.php:99 ../../mod/rate.php:111 ../../mod/mail.php:118 -#: ../../mod/photos.php:70 ../../mod/editblock.php:65 -#: ../../mod/editpost.php:13 ../../mod/appman.php:66 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/menu.php:74 ../../mod/page.php:31 -#: ../../mod/page.php:86 ../../mod/new_channel.php:68 -#: ../../mod/new_channel.php:99 ../../mod/notifications.php:66 -#: ../../mod/pdledit.php:21 ../../mod/events.php:256 -#: ../../mod/profile_photo.php:338 ../../mod/profile_photo.php:351 -#: ../../mod/item.php:205 ../../mod/item.php:213 ../../mod/item.php:1004 -#: ../../mod/message.php:16 ../../mod/webpages.php:69 -#: ../../mod/register.php:72 ../../mod/blocks.php:69 ../../mod/blocks.php:76 -#: ../../mod/service_limits.php:7 ../../mod/sources.php:66 -#: ../../mod/regmod.php:17 ../../mod/channel.php:100 ../../mod/channel.php:214 -#: ../../mod/channel.php:254 ../../mod/thing.php:271 ../../mod/thing.php:291 -#: ../../mod/thing.php:328 ../../mod/invite.php:13 ../../mod/invite.php:104 -#: ../../mod/viewsrc.php:14 ../../mod/settings.php:565 ../../mod/manage.php:6 -#: ../../mod/api.php:26 ../../mod/api.php:31 ../../mod/connections.php:29 +#: ../../mod/chat.php:99 ../../mod/rate.php:111 ../../mod/photos.php:70 +#: ../../mod/editblock.php:65 ../../mod/editpost.php:13 +#: ../../mod/appman.php:66 ../../mod/profile.php:64 ../../mod/profile.php:72 +#: ../../mod/menu.php:74 ../../mod/page.php:31 ../../mod/page.php:86 +#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 +#: ../../mod/notifications.php:66 ../../mod/pdledit.php:21 +#: ../../mod/events.php:256 ../../mod/profile_photo.php:338 +#: ../../mod/profile_photo.php:351 ../../mod/item.php:205 +#: ../../mod/item.php:213 ../../mod/item.php:1004 ../../mod/message.php:16 +#: ../../mod/webpages.php:69 ../../mod/register.php:72 ../../mod/blocks.php:69 +#: ../../mod/blocks.php:76 ../../mod/service_limits.php:7 +#: ../../mod/sources.php:66 ../../mod/regmod.php:17 ../../mod/channel.php:100 +#: ../../mod/channel.php:214 ../../mod/channel.php:254 ../../mod/thing.php:271 +#: ../../mod/thing.php:291 ../../mod/thing.php:328 ../../mod/invite.php:13 +#: ../../mod/invite.php:104 ../../mod/mail.php:118 ../../mod/viewsrc.php:14 +#: ../../mod/settings.php:566 ../../mod/manage.php:6 ../../mod/api.php:26 +#: ../../mod/api.php:31 ../../mod/connections.php:29 #: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 #: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 #: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 #: ../../mod/group.php:9 ../../mod/viewconnections.php:22 -#: ../../mod/viewconnections.php:27 ../../mod/locs.php:82 +#: ../../mod/viewconnections.php:27 ../../mod/locs.php:83 #: ../../mod/setup.php:227 ../../mod/sharedwithme.php:7 #: ../../mod/suggest.php:26 ../../mod/profiles.php:188 #: ../../mod/profiles.php:576 ../../index.php:178 ../../index.php:361 @@ -570,7 +1215,7 @@ msgstr "Rendi possibile la crifratura aggiuntiva tra mittente e destinatario usa #: ../../include/features.php:61 msgid "Enable Voting Tools" -msgstr "Abilita gli strumenti per votare" +msgstr "Permetti i post con votazione" #: ../../include/features.php:61 msgid "Provide a class of post which others can vote on" @@ -705,7 +1350,7 @@ msgstr "Nuvola di tag" 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/comanche.php:34 ../../mod/admin.php:348 +#: ../../include/comanche.php:34 ../../mod/admin.php:351 msgid "Default" msgstr "Predefinito" @@ -713,12 +1358,12 @@ msgstr "Predefinito" msgid "Delete this item?" msgstr "Eliminare questo elemento?" -#: ../../include/js_strings.php:6 ../../include/ItemObject.php:681 +#: ../../include/js_strings.php:6 ../../include/ItemObject.php:682 #: ../../mod/photos.php:1047 ../../mod/photos.php:1165 msgid "Comment" msgstr "Commento" -#: ../../include/js_strings.php:7 ../../include/ItemObject.php:398 +#: ../../include/js_strings.php:7 ../../include/ItemObject.php:399 msgid "[+] show all" msgstr "[+] mostra tutto" @@ -770,7 +1415,7 @@ msgstr "Niente di nuovo qui" msgid "Rate This Channel (this is public)" msgstr "Valuta questo canale (visibile a tutti)" -#: ../../include/js_strings.php:20 ../../mod/connedit.php:684 +#: ../../include/js_strings.php:20 ../../mod/connedit.php:685 #: ../../mod/rate.php:157 msgid "Rating" msgstr "Valutazioni" @@ -779,25 +1424,25 @@ msgstr "Valutazioni" msgid "Describe (optional)" msgstr "Descrizione (facoltativa)" -#: ../../include/js_strings.php:22 ../../include/ItemObject.php:682 +#: ../../include/js_strings.php:22 ../../include/ItemObject.php:683 #: ../../mod/fsuggest.php:108 ../../mod/mitem.php:231 -#: ../../mod/connedit.php:705 ../../mod/mood.php:135 ../../mod/pconfig.php:108 +#: ../../mod/connedit.php:706 ../../mod/mood.php:135 ../../mod/pconfig.php:108 #: ../../mod/filestorage.php:156 ../../mod/poke.php:171 ../../mod/chat.php:184 -#: ../../mod/chat.php:213 ../../mod/rate.php:168 ../../mod/mail.php:371 -#: ../../mod/photos.php:637 ../../mod/photos.php:1008 -#: ../../mod/photos.php:1048 ../../mod/photos.php:1166 ../../mod/admin.php:411 -#: ../../mod/admin.php:776 ../../mod/admin.php:940 ../../mod/admin.php:1072 -#: ../../mod/admin.php:1266 ../../mod/admin.php:1351 ../../mod/appman.php:99 -#: ../../mod/pdledit.php:58 ../../mod/events.php:534 ../../mod/events.php:710 -#: ../../mod/sources.php:104 ../../mod/sources.php:138 -#: ../../mod/import.php:517 ../../mod/thing.php:313 ../../mod/thing.php:359 -#: ../../mod/invite.php:142 ../../mod/settings.php:583 -#: ../../mod/settings.php:695 ../../mod/settings.php:723 -#: ../../mod/settings.php:746 ../../mod/settings.php:831 -#: ../../mod/settings.php:1020 ../../mod/xchan.php:11 ../../mod/group.php:81 -#: ../../mod/connect.php:93 ../../mod/locs.php:108 ../../mod/setup.php:331 -#: ../../mod/setup.php:371 ../../mod/profiles.php:667 -#: ../../mod/import_items.php:122 ../../view/theme/redbasic/php/config.php:99 +#: ../../mod/chat.php:213 ../../mod/rate.php:168 ../../mod/photos.php:637 +#: ../../mod/photos.php:1008 ../../mod/photos.php:1048 +#: ../../mod/photos.php:1166 ../../mod/admin.php:434 ../../mod/admin.php:801 +#: ../../mod/admin.php:965 ../../mod/admin.php:1097 ../../mod/admin.php:1291 +#: ../../mod/admin.php:1376 ../../mod/appman.php:99 ../../mod/pdledit.php:58 +#: ../../mod/events.php:534 ../../mod/events.php:710 ../../mod/sources.php:104 +#: ../../mod/sources.php:138 ../../mod/import.php:517 ../../mod/thing.php:313 +#: ../../mod/thing.php:359 ../../mod/invite.php:142 ../../mod/mail.php:371 +#: ../../mod/settings.php:584 ../../mod/settings.php:696 +#: ../../mod/settings.php:724 ../../mod/settings.php:747 +#: ../../mod/settings.php:832 ../../mod/settings.php:1021 +#: ../../mod/xchan.php:11 ../../mod/group.php:81 ../../mod/connect.php:93 +#: ../../mod/locs.php:116 ../../mod/setup.php:331 ../../mod/setup.php:371 +#: ../../mod/profiles.php:667 ../../mod/import_items.php:122 +#: ../../view/theme/redbasic/php/config.php:99 msgid "Submit" msgstr "Salva" @@ -1098,7 +1743,7 @@ msgid "RSS/Atom" msgstr "RSS/Atom" #: ../../include/contact_selectors.php:79 ../../mod/id.php:15 -#: ../../mod/id.php:16 ../../mod/admin.php:779 ../../mod/admin.php:788 +#: ../../mod/id.php:16 ../../mod/admin.php:804 ../../mod/admin.php:813 #: ../../boot.php:1505 msgid "Email" msgstr "Email" @@ -1150,13 +1795,6 @@ msgstr "Guarda %2$s di %1$s " msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s ha aggiornato %2$s cambiando %3$s." -#: ../../include/Contact.php:101 ../../include/identity.php:965 -#: ../../include/conversation.php:949 ../../include/widgets.php:136 -#: ../../include/widgets.php:174 ../../mod/directory.php:316 -#: ../../mod/match.php:64 ../../mod/suggest.php:52 -msgid "Connect" -msgstr "Aggiungi" - #: ../../include/Contact.php:118 msgid "New window" msgstr "Nuova finestra" @@ -1176,7 +1814,7 @@ msgid "Cannot locate DNS info for database server '%s'" msgstr "Non trovo le informazioni DNS per il database server '%s'" #: ../../include/items.php:423 ../../mod/like.php:280 ../../mod/dreport.php:6 -#: ../../mod/dreport.php:45 ../../mod/subthread.php:49 ../../mod/group.php:68 +#: ../../mod/dreport.php:45 ../../mod/subthread.php:52 ../../mod/group.php:68 #: ../../mod/profperm.php:23 ../../mod/import_items.php:114 #: ../../index.php:360 msgid "Permission denied" @@ -1219,39 +1857,35 @@ msgstr "Visibile ai contatti approvati." msgid "Visible to specific connections." msgstr "Visibile ad alcuni contatti scelti." -#: ../../include/items.php:4298 ../../mod/display.php:36 +#: ../../include/items.php:4311 ../../mod/display.php:36 #: ../../mod/filestorage.php:27 ../../mod/admin.php:127 -#: ../../mod/admin.php:979 ../../mod/admin.php:1179 ../../mod/thing.php:86 +#: ../../mod/admin.php:1004 ../../mod/admin.php:1204 ../../mod/thing.php:86 #: ../../mod/viewsrc.php:20 msgid "Item not found." msgstr "Elemento non trovato." -#: ../../include/items.php:4807 ../../mod/group.php:38 ../../mod/group.php:137 +#: ../../include/items.php:4820 ../../mod/group.php:38 ../../mod/group.php:137 msgid "Collection not found." msgstr "Insieme di canali non trovato." -#: ../../include/items.php:4823 +#: ../../include/items.php:4836 msgid "Collection is empty." msgstr "L'insieme di canali è vuoto." -#: ../../include/items.php:4830 +#: ../../include/items.php:4843 #, php-format msgid "Collection: %s" msgstr "Insieme: %s" -#: ../../include/items.php:4840 ../../mod/connedit.php:673 +#: ../../include/items.php:4853 ../../mod/connedit.php:674 #, php-format msgid "Connection: %s" msgstr "Contatto: %s" -#: ../../include/items.php:4842 +#: ../../include/items.php:4855 msgid "Connection not found." msgstr "Contatto non trovato." -#: ../../include/api.php:1324 -msgid "Public Timeline" -msgstr "Diario pubblico" - #: ../../include/network.php:635 msgid "view full size" msgstr "guarda nelle dimensioni reali" @@ -1305,7 +1939,7 @@ msgstr "Non mostrare" msgid "Permissions" msgstr "Permessi" -#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:369 +#: ../../include/acl_selectors.php:248 ../../include/ItemObject.php:370 #: ../../mod/photos.php:1218 msgid "Close" msgstr "Chiudi" @@ -1340,10 +1974,6 @@ msgstr "Impossibile elaborare l'immagine" msgid "Photo storage failed." msgstr "Impossibile salvare la foto." -#: ../../include/photos.php:483 ../../include/conversation.php:1616 -msgid "Photo Albums" -msgstr "Album foto" - #: ../../include/photos.php:487 msgid "Upload New Photos" msgstr "Carica nuove foto" @@ -1366,14 +1996,6 @@ msgstr "Nuova pagina web" msgid "View" msgstr "Guarda" -#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:691 -#: ../../include/conversation.php:1160 ../../mod/photos.php:1049 -#: ../../mod/editblock.php:171 ../../mod/editpost.php:149 -#: ../../mod/events.php:707 ../../mod/webpages.php:188 -#: ../../mod/editwebpage.php:212 -msgid "Preview" -msgstr "Anteprima" - #: ../../include/page_widgets.php:41 ../../mod/webpages.php:189 msgid "Actions" msgstr "Azioni" @@ -1551,9 +2173,9 @@ msgstr "Sesso-dipendente" #: ../../include/profile_selectors.php:80 ../../include/identity.php:390 #: ../../include/identity.php:391 ../../include/identity.php:398 #: ../../include/widgets.php:429 ../../mod/connedit.php:568 -#: ../../mod/settings.php:337 ../../mod/settings.php:341 -#: ../../mod/settings.php:342 ../../mod/settings.php:345 -#: ../../mod/settings.php:356 +#: ../../mod/settings.php:338 ../../mod/settings.php:342 +#: ../../mod/settings.php:343 ../../mod/settings.php:346 +#: ../../mod/settings.php:357 msgid "Friends" msgstr "Amici" @@ -1655,20 +2277,20 @@ msgstr "Contenuti incorporati" msgid "Embedding disabled" msgstr "Disabilita la creazione di contenuti incorporati" -#: ../../include/event.php:22 ../../include/bb2diaspora.php:468 +#: ../../include/event.php:22 ../../include/bb2diaspora.php:471 msgid "l F d, Y \\@ g:i A" msgstr "l d F Y \\@ G:i" -#: ../../include/event.php:30 ../../include/bb2diaspora.php:474 +#: ../../include/event.php:30 ../../include/bb2diaspora.php:477 msgid "Starts:" msgstr "Inizio:" -#: ../../include/event.php:40 ../../include/bb2diaspora.php:482 +#: ../../include/event.php:40 ../../include/bb2diaspora.php:485 msgid "Finishes:" msgstr "Fine:" #: ../../include/event.php:50 ../../include/identity.php:1016 -#: ../../include/bb2diaspora.php:490 ../../mod/directory.php:302 +#: ../../include/bb2diaspora.php:493 ../../mod/directory.php:302 #: ../../mod/events.php:701 msgid "Location:" msgstr "Luogo:" @@ -1677,12 +2299,6 @@ msgstr "Luogo:" msgid "This event has been added to your calendar." msgstr "Questo evento è stato aggiunto al tuo calendario" -#: ../../include/event.php:896 ../../include/text.php:1866 -#: ../../include/conversation.php:123 ../../mod/like.php:363 -#: ../../mod/tagger.php:47 ../../mod/events.php:245 -msgid "event" -msgstr "l'evento" - #: ../../include/event.php:953 msgid "Not specified" msgstr "Non specificato" @@ -1707,11 +2323,6 @@ msgstr "Annullato" msgid "Site Admin" msgstr "Amministrazione sito" -#: ../../include/apps.php:129 ../../include/conversation.php:1646 -#: ../../include/nav.php:103 -msgid "Bookmarks" -msgstr "Segnalibri" - #: ../../include/apps.php:130 msgid "Address Book" msgstr "Rubrica" @@ -1730,15 +2341,10 @@ msgid "Grid" msgstr "Rete" #: ../../include/apps.php:134 ../../include/widgets.php:553 -#: ../../include/nav.php:202 ../../mod/admin.php:1033 ../../mod/admin.php:1233 +#: ../../include/nav.php:202 ../../mod/admin.php:1058 ../../mod/admin.php:1258 msgid "Settings" msgstr "Impostazioni" -#: ../../include/apps.php:136 ../../include/conversation.php:1656 -#: ../../include/nav.php:107 ../../mod/webpages.php:178 -msgid "Webpages" -msgstr "Pagine web" - #: ../../include/apps.php:137 ../../include/nav.php:177 msgid "Channel Home" msgstr "Bacheca del canale" @@ -1748,11 +2354,6 @@ msgstr "Bacheca del canale" msgid "Profile" msgstr "Profilo" -#: ../../include/apps.php:139 ../../include/conversation.php:1613 -#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto" - #: ../../include/apps.php:140 ../../include/nav.php:196 #: ../../mod/events.php:526 msgid "Events" @@ -1775,10 +2376,6 @@ msgstr "Messaggi" msgid "Mood" msgstr "Umore" -#: ../../include/apps.php:145 ../../include/conversation.php:952 -msgid "Poke" -msgstr "Poke" - #: ../../include/apps.php:146 ../../include/nav.php:97 msgid "Chat" msgstr "Chat" @@ -1823,7 +2420,7 @@ msgid "Profile Photo" msgstr "Foto del profilo" #: ../../include/apps.php:252 ../../mod/settings.php:84 -#: ../../mod/settings.php:609 +#: ../../mod/settings.php:610 msgid "Update" msgstr "Aggiorna" @@ -1835,68 +2432,6 @@ msgstr "Installa" msgid "Purchase" msgstr "Acquista" -#: ../../include/attach.php:246 ../../include/attach.php:332 -msgid "Item was not found." -msgstr "Elemento non trovato." - -#: ../../include/attach.php:496 -msgid "No source file." -msgstr "Nessun file di origine." - -#: ../../include/attach.php:514 -msgid "Cannot locate file to replace" -msgstr "Il file da sostituire non è stato trovato" - -#: ../../include/attach.php:532 -msgid "Cannot locate file to revise/update" -msgstr "Il file da aggiornare non è stato trovato" - -#: ../../include/attach.php:667 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Il file supera la dimensione massima di %d" - -#: ../../include/attach.php:681 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati." - -#: ../../include/attach.php:837 -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/attach.php:850 -msgid "Stored file could not be verified. Upload failed." -msgstr "Il file non può essere verificato. Caricamento fallito." - -#: ../../include/attach.php:898 ../../include/attach.php:914 -msgid "Path not available." -msgstr "Percorso non disponibile." - -#: ../../include/attach.php:960 ../../include/attach.php:1112 -msgid "Empty pathname" -msgstr "Il percorso del file è vuoto" - -#: ../../include/attach.php:986 -msgid "duplicate filename or path" -msgstr "il file o il percorso del file è duplicato" - -#: ../../include/attach.php:1008 -msgid "Path not found." -msgstr "Percorso del file non trovato." - -#: ../../include/attach.php:1066 -msgid "mkdir failed." -msgstr "mkdir fallito." - -#: ../../include/attach.php:1070 -msgid "database storage failed." -msgstr "scrittura su database fallita." - -#: ../../include/attach.php:1118 -msgid "Empty path" -msgstr "La posizione è vuota" - #: ../../include/auth.php:131 msgid "Logged out." msgstr "Uscita effettuata." @@ -2088,14 +2623,6 @@ msgstr "Visita %s per approvare o rifiutare il suggerimento." msgid "[Hubzilla:Notify]" msgstr "[Hubzilla]" -#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "Messaggio privato" - -#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 -msgid "Select" -msgstr "Scegli" - #: ../../include/ItemObject.php:130 msgid "Save to Folder" msgstr "Salva nella cartella" @@ -2124,29 +2651,6 @@ msgstr "Non sono d'accordo" msgid "I abstain" msgstr "Mi astengo" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1688 ../../mod/photos.php:1082 -#: ../../mod/photos.php:1094 -msgid "View all" -msgstr "Vedi tutto" - -#: ../../include/ItemObject.php:179 ../../include/identity.php:1276 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1712 -#: ../../mod/photos.php:1086 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Mi piace" -msgstr[1] "Mi piace" - -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1715 -#: ../../mod/photos.php:1091 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "Non mi piace" -msgstr[1] "Non mi piace" - #: ../../include/ItemObject.php:212 msgid "Add Star" msgstr "Aggiungi ai preferiti" @@ -2163,14 +2667,6 @@ msgstr "Attiva/disattiva preferito" msgid "starred" msgstr "preferito" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 -msgid "Message signature validated" -msgstr "Messaggio con firma verificata" - -#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 -msgid "Message signature incorrect" -msgstr "Massaggio con firma non corretta" - #: ../../include/ItemObject.php:236 msgid "Add Tag" msgstr "Aggiungi un tag" @@ -2199,416 +2695,109 @@ msgstr "Condividi" msgid "share" msgstr "condividi" -#: ../../include/ItemObject.php:276 +#: ../../include/ItemObject.php:277 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "%d commento" msgstr[1] "%d commenti" -#: ../../include/ItemObject.php:301 ../../include/ItemObject.php:302 +#: ../../include/ItemObject.php:302 ../../include/ItemObject.php:303 #, php-format msgid "View %s's profile - %s" msgstr "Guarda il profilo di %s - %s" -#: ../../include/ItemObject.php:305 +#: ../../include/ItemObject.php:306 msgid "to" msgstr "a" -#: ../../include/ItemObject.php:306 +#: ../../include/ItemObject.php:307 msgid "via" msgstr "via" -#: ../../include/ItemObject.php:307 +#: ../../include/ItemObject.php:308 msgid "Wall-to-Wall" msgstr "Da bacheca a bacheca" -#: ../../include/ItemObject.php:308 +#: ../../include/ItemObject.php:309 msgid "via Wall-To-Wall:" msgstr "da bacheca a bacheca:" -#: ../../include/ItemObject.php:311 +#: ../../include/ItemObject.php:312 msgid "Delivery Report" msgstr "Rapporto di trasmissione" -#: ../../include/ItemObject.php:320 ../../include/conversation.php:718 -#, php-format -msgid "from %s" -msgstr "da %s" - -#: ../../include/ItemObject.php:323 ../../include/conversation.php:721 -#, php-format -msgid "last edited: %s" -msgstr "ultima modifica: %s" - -#: ../../include/ItemObject.php:324 ../../include/conversation.php:722 -#, php-format -msgid "Expires: %s" -msgstr "Scadenza: %s" - -#: ../../include/ItemObject.php:347 +#: ../../include/ItemObject.php:348 msgid "Save Bookmarks" msgstr "Salva segnalibro" -#: ../../include/ItemObject.php:348 +#: ../../include/ItemObject.php:349 msgid "Add to Calendar" msgstr "Aggiungi al calendario" -#: ../../include/ItemObject.php:357 +#: ../../include/ItemObject.php:358 msgid "Mark all seen" msgstr "Marca tutto come letto" -#: ../../include/ItemObject.php:363 ../../mod/photos.php:1212 +#: ../../include/ItemObject.php:364 ../../mod/photos.php:1212 msgctxt "noun" msgid "Likes" msgstr "Mi piace" -#: ../../include/ItemObject.php:364 ../../mod/photos.php:1213 +#: ../../include/ItemObject.php:365 ../../mod/photos.php:1213 msgctxt "noun" msgid "Dislikes" msgstr "Non mi piace" -#: ../../include/ItemObject.php:374 ../../include/conversation.php:739 -#: ../../include/conversation.php:1218 ../../mod/photos.php:1029 -#: ../../mod/editblock.php:150 ../../mod/editpost.php:129 -#: ../../mod/editlayout.php:148 ../../mod/editwebpage.php:190 -msgid "Please wait" -msgstr "Attendere" - -#: ../../include/ItemObject.php:679 ../../mod/photos.php:1045 +#: ../../include/ItemObject.php:680 ../../mod/photos.php:1045 #: ../../mod/photos.php:1163 msgid "This is you" msgstr "Questo sei tu" -#: ../../include/ItemObject.php:683 ../../include/conversation.php:1190 -#: ../../mod/editblock.php:136 ../../mod/editpost.php:113 -#: ../../mod/editlayout.php:135 ../../mod/editwebpage.php:177 -msgid "Bold" -msgstr "Grassetto" - -#: ../../include/ItemObject.php:684 ../../include/conversation.php:1191 -#: ../../mod/editblock.php:137 ../../mod/editpost.php:114 -#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 -msgid "Italic" -msgstr "Corsivo" - -#: ../../include/ItemObject.php:685 ../../include/conversation.php:1192 -#: ../../mod/editblock.php:138 ../../mod/editpost.php:115 -#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 -msgid "Underline" -msgstr "Sottolineato" - -#: ../../include/ItemObject.php:686 ../../include/conversation.php:1193 -#: ../../mod/editblock.php:139 ../../mod/editpost.php:116 -#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 -msgid "Quote" -msgstr "Citazione" - -#: ../../include/ItemObject.php:687 ../../include/conversation.php:1194 -#: ../../mod/editblock.php:140 ../../mod/editpost.php:117 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 -msgid "Code" -msgstr "Codice" - -#: ../../include/ItemObject.php:688 +#: ../../include/ItemObject.php:689 msgid "Image" msgstr "Immagine" -#: ../../include/ItemObject.php:689 +#: ../../include/ItemObject.php:690 msgid "Insert Link" msgstr "Collegamento" -#: ../../include/ItemObject.php:690 +#: ../../include/ItemObject.php:691 msgid "Video" msgstr "Video" -#: ../../include/ItemObject.php:694 ../../include/conversation.php:1248 -#: ../../mod/mail.php:247 ../../mod/mail.php:376 ../../mod/editpost.php:157 -msgid "Encrypt text" -msgstr "Cifratura del messaggio" - -#: ../../include/text.php:391 -msgid "prev" -msgstr "prec" - -#: ../../include/text.php:393 -msgid "first" -msgstr "inizio" - -#: ../../include/text.php:422 -msgid "last" -msgstr "fine" - -#: ../../include/text.php:425 -msgid "next" -msgstr "succ" - -#: ../../include/text.php:435 -msgid "older" -msgstr "più recenti" - -#: ../../include/text.php:437 -msgid "newer" -msgstr "più nuovi" +#: ../../include/zot.php:685 +msgid "Invalid data packet" +msgstr "Dati ricevuti non validi" -#: ../../include/text.php:775 -msgid "No connections" -msgstr "Nessun contatto" +#: ../../include/zot.php:701 +msgid "Unable to verify channel signature" +msgstr "Impossibile verificare la firma elettronica del canale" -#: ../../include/text.php:787 +#: ../../include/zot.php:2264 #, php-format -msgid "%d Connection" -msgid_plural "%d Connections" -msgstr[0] "%d contatto" -msgstr[1] "%d contatti" - -#: ../../include/text.php:800 ../../mod/viewconnections.php:101 -msgid "View Connections" -msgstr "Elenco contatti" - -#: ../../include/text.php:858 ../../include/text.php:870 -#: ../../include/widgets.php:191 ../../mod/filer.php:49 -#: ../../mod/admin.php:1411 ../../mod/admin.php:1431 ../../mod/rbmark.php:28 -#: ../../mod/rbmark.php:98 -msgid "Save" -msgstr "Salva" - -#: ../../include/text.php:942 -msgid "poke" -msgstr "poke" - -#: ../../include/text.php:942 ../../include/conversation.php:243 -msgid "poked" -msgstr "ha ricevuto un poke" - -#: ../../include/text.php:943 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:943 -msgid "pinged" -msgstr "ha ricevuto un ping" - -#: ../../include/text.php:944 -msgid "prod" -msgstr "spintone" - -#: ../../include/text.php:944 -msgid "prodded" -msgstr "ha ricevuto uno spintone" - -#: ../../include/text.php:945 -msgid "slap" -msgstr "schiaffo" - -#: ../../include/text.php:945 -msgid "slapped" -msgstr "ha ricevuto uno schiaffo" - -#: ../../include/text.php:946 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:946 -msgid "fingered" -msgstr "ha ricevuto un finger" - -#: ../../include/text.php:947 -msgid "rebuff" -msgstr "rifiuto" - -#: ../../include/text.php:947 -msgid "rebuffed" -msgstr "ha ricevuto un rifiuto" - -#: ../../include/text.php:957 -msgid "happy" -msgstr "felice" - -#: ../../include/text.php:958 -msgid "sad" -msgstr "triste" - -#: ../../include/text.php:959 -msgid "mellow" -msgstr "calmo" - -#: ../../include/text.php:960 -msgid "tired" -msgstr "stanco" - -#: ../../include/text.php:961 -msgid "perky" -msgstr "vivace" - -#: ../../include/text.php:962 -msgid "angry" -msgstr "arrabbiato" - -#: ../../include/text.php:963 -msgid "stupified" -msgstr "stordito" - -#: ../../include/text.php:964 -msgid "puzzled" -msgstr "confuso" - -#: ../../include/text.php:965 -msgid "interested" -msgstr "attento" - -#: ../../include/text.php:966 -msgid "bitter" -msgstr "amaro" - -#: ../../include/text.php:967 -msgid "cheerful" -msgstr "allegro" - -#: ../../include/text.php:968 -msgid "alive" -msgstr "vivace" - -#: ../../include/text.php:969 -msgid "annoyed" -msgstr "seccato" - -#: ../../include/text.php:970 -msgid "anxious" -msgstr "ansioso" - -#: ../../include/text.php:971 -msgid "cranky" -msgstr "irritabile" - -#: ../../include/text.php:972 -msgid "disturbed" -msgstr "turbato" - -#: ../../include/text.php:973 -msgid "frustrated" -msgstr "frustrato" - -#: ../../include/text.php:974 -msgid "depressed" -msgstr "in depressione" - -#: ../../include/text.php:975 -msgid "motivated" -msgstr "motivato" - -#: ../../include/text.php:976 -msgid "relaxed" -msgstr "rilassato" - -#: ../../include/text.php:977 -msgid "surprised" -msgstr "sorpreso" - -#: ../../include/text.php:1153 -msgid "May" -msgstr "maggio" - -#: ../../include/text.php:1230 ../../include/text.php:1234 -msgid "Unknown Attachment" -msgstr "Allegato non riconoscuto" - -#: ../../include/text.php:1236 -msgid "Attachment" -msgstr "Allegato" - -#: ../../include/text.php:1236 -msgid "Size Unknown" -msgstr "Dimensioni non note" - -#: ../../include/text.php:1272 -msgid "remove category" -msgstr "rimuovi la categoria" - -#: ../../include/text.php:1349 -msgid "remove from file" -msgstr "rimuovi dal file" - -#: ../../include/text.php:1461 ../../include/text.php:1472 -msgid "Click to open/close" -msgstr "Clicca per aprire/chiudere" - -#: ../../include/text.php:1640 ../../mod/events.php:497 -msgid "Link to Source" -msgstr "Link al sito d'origine" - -#: ../../include/text.php:1661 ../../include/text.php:1732 -msgid "default" -msgstr "predefinito" - -#: ../../include/text.php:1669 -msgid "Page layout" -msgstr "Layout della pagina" - -#: ../../include/text.php:1669 -msgid "You can create your own with the layouts tool" -msgstr "Con la configurazione del layout puoi crearne uno tuo" - -#: ../../include/text.php:1710 -msgid "Page content type" -msgstr "Tipo di contenuto della pagina" - -#: ../../include/text.php:1744 -msgid "Select an alternate language" -msgstr "Seleziona una lingua diversa" - -#: ../../include/text.php:1863 ../../include/conversation.php:120 -#: ../../mod/like.php:361 ../../mod/tagger.php:43 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:172 -msgid "photo" -msgstr "la foto" - -#: ../../include/text.php:1869 ../../include/conversation.php:148 -#: ../../mod/like.php:361 ../../mod/subthread.php:72 -#: ../../mod/subthread.php:172 -msgid "status" -msgstr "il messaggio di stato" - -#: ../../include/text.php:1871 ../../include/conversation.php:150 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "il commento" - -#: ../../include/text.php:1876 -msgid "activity" -msgstr "l'attività" - -#: ../../include/text.php:2171 -msgid "Design Tools" -msgstr "Strumenti di design" - -#: ../../include/text.php:2174 ../../mod/blocks.php:147 -msgid "Blocks" -msgstr "Riquadri" - -#: ../../include/text.php:2175 ../../mod/menu.php:103 -msgid "Menus" -msgstr "Menù" +msgid "Unable to verify site signature for %s" +msgstr "Impossibile verificare la firma elettronica del sito %s" -#: ../../include/text.php:2176 ../../mod/layouts.php:174 -msgid "Layouts" -msgstr "Layout" +#: ../../include/zot.php:3591 +msgid "invalid target signature" +msgstr "la firma ricevuta non è valida" -#: ../../include/text.php:2177 -msgid "Pages" -msgstr "Pagine" +#: ../../include/api.php:1389 +msgid "Public Timeline" +msgstr "Diario pubblico" -#: ../../include/bbcode.php:123 ../../include/bbcode.php:793 -#: ../../include/bbcode.php:796 ../../include/bbcode.php:801 -#: ../../include/bbcode.php:804 ../../include/bbcode.php:807 -#: ../../include/bbcode.php:810 ../../include/bbcode.php:815 -#: ../../include/bbcode.php:818 ../../include/bbcode.php:823 -#: ../../include/bbcode.php:826 ../../include/bbcode.php:829 -#: ../../include/bbcode.php:832 +#: ../../include/bbcode.php:123 ../../include/bbcode.php:794 +#: ../../include/bbcode.php:797 ../../include/bbcode.php:802 +#: ../../include/bbcode.php:805 ../../include/bbcode.php:808 +#: ../../include/bbcode.php:811 ../../include/bbcode.php:816 +#: ../../include/bbcode.php:819 ../../include/bbcode.php:824 +#: ../../include/bbcode.php:827 ../../include/bbcode.php:830 +#: ../../include/bbcode.php:833 msgid "Image/photo" msgstr "Immagine" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:843 +#: ../../include/bbcode.php:162 ../../include/bbcode.php:844 msgid "Encrypted content" msgstr "Contenuto cifrato" @@ -2634,7 +2823,7 @@ msgstr "layout" #: ../../include/bbcode.php:199 ../../mod/impel.php:42 msgid "block" -msgstr "riquadro" +msgstr "block" #: ../../include/bbcode.php:202 ../../mod/impel.php:54 msgid "menu" @@ -2653,11 +2842,11 @@ msgstr "il post" msgid "Different viewers will see this text differently" msgstr "Ad altri questo testo potrebbe apparire in modo differente" -#: ../../include/bbcode.php:754 +#: ../../include/bbcode.php:755 msgid "$1 spoiler" msgstr "$1 spoiler" -#: ../../include/bbcode.php:781 +#: ../../include/bbcode.php:782 msgid "$1 wrote:" msgstr "$1 ha scritto:" @@ -2778,7 +2967,7 @@ msgid_plural "%d invitations available" msgstr[0] "%d invito disponibile" msgstr[1] "%d inviti disponibili" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:415 +#: ../../include/contact_widgets.php:19 ../../mod/admin.php:438 msgid "Advanced" msgstr "Avanzate" @@ -2852,7 +3041,7 @@ msgstr "È stato ripristinato un insieme con lo stesso nome che era stato elimin msgid "Add new connections to this collection (privacy group)" msgstr "Aggiungi altri contatti a questo insieme (privacy di gruppo)" -#: ../../include/group.php:251 ../../mod/admin.php:788 +#: ../../include/group.php:251 ../../mod/admin.php:813 msgid "All Channels" msgstr "Tutti i canali" @@ -2880,23 +3069,6 @@ msgstr "Canali che non sono in un insieme" msgid "add" msgstr "aggiungi" -#: ../../include/zot.php:683 -msgid "Invalid data packet" -msgstr "Dati ricevuti non validi" - -#: ../../include/zot.php:699 -msgid "Unable to verify channel signature" -msgstr "Impossibile verificare la firma elettronica del canale" - -#: ../../include/zot.php:2235 -#, php-format -msgid "Unable to verify site signature for %s" -msgstr "Impossibile verificare la firma elettronica del sito %s" - -#: ../../include/zot.php:3555 -msgid "invalid target signature" -msgstr "la firma ricevuta non è valida" - #: ../../include/message.php:18 msgid "No recipient provided." msgstr "Devi scegliere un destinatario." @@ -3046,7 +3218,7 @@ msgstr "Promemoria" msgid "Events this week:" msgstr "Eventi della settimana:" -#: ../../include/identity.php:1258 ../../mod/settings.php:1026 +#: ../../include/identity.php:1258 ../../mod/settings.php:1027 msgid "Full Name:" msgstr "Nome completo:" @@ -3152,14 +3324,6 @@ msgstr "Scuola:" msgid "Like this thing" msgstr "Mi piace" -#: ../../include/bb2diaspora.php:382 -msgid "Attachments:" -msgstr "Allegati:" - -#: ../../include/bb2diaspora.php:470 -msgid "$Projectname event notification:" -msgstr "Notifica evento $Projectname:" - #: ../../include/taxonomy.php:229 ../../include/taxonomy.php:250 msgid "Tags" msgstr "Tag" @@ -3192,489 +3356,75 @@ msgstr "gli piace" msgid "dislikes" msgstr "non gli piace" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "il canale" - -#: ../../include/conversation.php:164 ../../mod/like.php:410 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s piace %3$s di %2$s" - -#: ../../include/conversation.php:167 ../../mod/like.php:412 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s non piace %3$s di %2$s" - -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s adesso è connesso con %2$s" - -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha mandato un poke a %2$s" - -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s è %2$s" - -#: ../../include/conversation.php:574 ../../mod/photos.php:1063 -msgctxt "title" -msgid "Likes" -msgstr "Mi piace" - -#: ../../include/conversation.php:574 ../../mod/photos.php:1063 -msgctxt "title" -msgid "Dislikes" -msgstr "Non mi piace" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1064 -msgctxt "title" -msgid "Agree" -msgstr "D'accordo" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1064 -msgctxt "title" -msgid "Disagree" -msgstr "Non d'accordo" - -#: ../../include/conversation.php:575 ../../mod/photos.php:1064 -msgctxt "title" -msgid "Abstain" -msgstr "Astenuti" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1065 -msgctxt "title" -msgid "Attending" -msgstr "Partecipano" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1065 -msgctxt "title" -msgid "Not attending" -msgstr "Non partecipano" - -#: ../../include/conversation.php:576 ../../mod/photos.php:1065 -msgctxt "title" -msgid "Might attend" -msgstr "Forse partecipano" - -#: ../../include/conversation.php:692 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Vedi il profilo di %s @ %s" - -#: ../../include/conversation.php:709 -msgid "Categories:" -msgstr "Categorie:" - -#: ../../include/conversation.php:710 -msgid "Filed under:" -msgstr "Classificato come:" - -#: ../../include/conversation.php:737 -msgid "View in context" -msgstr "Vedi nel contesto" - -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "rimuovi" - -#: ../../include/conversation.php:854 ../../include/nav.php:241 -msgid "Loading..." -msgstr "Caricamento in corso..." - -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Elimina gli oggetti selezionati" - -#: ../../include/conversation.php:943 -msgid "View Source" -msgstr "Vedi il sorgente" - -#: ../../include/conversation.php:944 -msgid "Follow Thread" -msgstr "Segui la discussione" - -#: ../../include/conversation.php:945 -msgid "View Status" -msgstr "Stato attuale" - -#: ../../include/conversation.php:946 ../../include/nav.php:86 -#: ../../mod/connedit.php:493 -msgid "View Profile" -msgstr "Profilo" - -#: ../../include/conversation.php:947 -msgid "View Photos" -msgstr "Foto" - -#: ../../include/conversation.php:948 -msgid "Activity/Posts" -msgstr "Attività e Post" - -#: ../../include/conversation.php:950 -msgid "Edit Connection" -msgstr "Modifica il contatto" - -#: ../../include/conversation.php:951 -msgid "Send PM" -msgstr "Messaggio privato" - -#: ../../include/conversation.php:1066 -#, php-format -msgid "%s likes this." -msgstr "Piace a %s." - -#: ../../include/conversation.php:1066 -#, php-format -msgid "%s doesn't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1070 -#, php-format -msgid "<span %1$s>%2$d people</span> like this." -msgid_plural "<span %1$s>%2$d people</span> like this." -msgstr[0] "" -msgstr[1] "Piace a <span %1$s>%2$d persone</span>." +#: ../../include/attach.php:246 ../../include/attach.php:332 +msgid "Item was not found." +msgstr "Elemento non trovato." -#: ../../include/conversation.php:1072 -#, php-format -msgid "<span %1$s>%2$d people</span> don't like this." -msgid_plural "<span %1$s>%2$d people</span> don't like this." -msgstr[0] "" -msgstr[1] "Non piace a <span %1$s>%2$d persone</span>." +#: ../../include/attach.php:496 +msgid "No source file." +msgstr "Nessun file di origine." -#: ../../include/conversation.php:1078 -msgid "and" -msgstr "e" +#: ../../include/attach.php:514 +msgid "Cannot locate file to replace" +msgstr "Il file da sostituire non è stato trovato" -#: ../../include/conversation.php:1081 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] "" -msgstr[1] "e altre %d persone" +#: ../../include/attach.php:532 +msgid "Cannot locate file to revise/update" +msgstr "Il file da aggiornare non è stato trovato" -#: ../../include/conversation.php:1082 +#: ../../include/attach.php:667 #, php-format -msgid "%s like this." -msgstr "Piace a %s." +msgid "File exceeds size limit of %d" +msgstr "Il file supera la dimensione massima di %d" -#: ../../include/conversation.php:1082 +#: ../../include/attach.php:681 #, php-format -msgid "%s don't like this." -msgstr "Non piace a %s." - -#: ../../include/conversation.php:1145 -msgid "Visible to <strong>everybody</strong>" -msgstr "Visibile a <strong>tutti</strong>" - -#: ../../include/conversation.php:1146 ../../mod/mail.php:194 -#: ../../mod/mail.php:308 -msgid "Please enter a link URL:" -msgstr "Inserisci l'indirizzo del link:" - -#: ../../include/conversation.php:1147 -msgid "Please enter a video link/URL:" -msgstr "Inserisci l'indirizzo del video:" - -#: ../../include/conversation.php:1148 -msgid "Please enter an audio link/URL:" -msgstr "Inserisci l'indirizzo dell'audio:" - -#: ../../include/conversation.php:1149 -msgid "Tag term:" -msgstr "Tag:" - -#: ../../include/conversation.php:1150 ../../mod/filer.php:48 -msgid "Save to Folder:" -msgstr "Salva nella cartella:" - -#: ../../include/conversation.php:1151 -msgid "Where are you right now?" -msgstr "Dove sei ora?" - -#: ../../include/conversation.php:1152 ../../mod/mail.php:195 -#: ../../mod/mail.php:309 ../../mod/editpost.php:54 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Scade il YYYY-MM-DD HH:MM" - -#: ../../include/conversation.php:1183 ../../mod/layouts.php:184 -#: ../../mod/photos.php:1028 ../../mod/webpages.php:182 -#: ../../mod/blocks.php:154 -msgid "Share" -msgstr "Condividi" - -#: ../../include/conversation.php:1185 -msgid "Page link name" -msgstr "Nome del link alla pagina" - -#: ../../include/conversation.php:1188 -msgid "Post as" -msgstr "Pubblica come " - -#: ../../include/conversation.php:1195 ../../mod/editblock.php:142 -#: ../../mod/editpost.php:118 ../../mod/editlayout.php:140 -#: ../../mod/editwebpage.php:182 -msgid "Upload photo" -msgstr "Carica foto" - -#: ../../include/conversation.php:1196 -msgid "upload photo" -msgstr "carica foto" - -#: ../../include/conversation.php:1197 ../../mod/mail.php:240 -#: ../../mod/mail.php:369 ../../mod/editblock.php:143 -#: ../../mod/editpost.php:119 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:183 -msgid "Attach file" -msgstr "Allega file" - -#: ../../include/conversation.php:1198 -msgid "attach file" -msgstr "allega file" - -#: ../../include/conversation.php:1199 ../../mod/mail.php:241 -#: ../../mod/mail.php:370 ../../mod/editblock.php:144 -#: ../../mod/editpost.php:120 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:184 -msgid "Insert web link" -msgstr "Inserisci un indirizzo web" - -#: ../../include/conversation.php:1200 -msgid "web link" -msgstr "link web" - -#: ../../include/conversation.php:1201 -msgid "Insert video link" -msgstr "Inserisci l'indirizzo del video" - -#: ../../include/conversation.php:1202 -msgid "video link" -msgstr "link video" - -#: ../../include/conversation.php:1203 -msgid "Insert audio link" -msgstr "Inserisci l'indirizzo dell'audio" - -#: ../../include/conversation.php:1204 -msgid "audio link" -msgstr "link audio" - -#: ../../include/conversation.php:1205 ../../mod/editblock.php:148 -#: ../../mod/editpost.php:124 ../../mod/editlayout.php:146 -#: ../../mod/editwebpage.php:188 -msgid "Set your location" -msgstr "La tua località" - -#: ../../include/conversation.php:1206 -msgid "set location" -msgstr "la tua località" - -#: ../../include/conversation.php:1207 ../../mod/editpost.php:126 -msgid "Toggle voting" -msgstr "Abilita/disabilita il voto" - -#: ../../include/conversation.php:1210 ../../mod/editblock.php:149 -#: ../../mod/editpost.php:125 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:189 -msgid "Clear browser location" -msgstr "Rimuovi la località data dal browser" - -#: ../../include/conversation.php:1211 -msgid "clear location" -msgstr "rimuovi la località" - -#: ../../include/conversation.php:1213 ../../mod/editblock.php:162 -#: ../../mod/editpost.php:141 ../../mod/editwebpage.php:205 -msgid "Title (optional)" -msgstr "Titolo (facoltativo)" - -#: ../../include/conversation.php:1217 ../../mod/editblock.php:165 -#: ../../mod/editpost.php:143 ../../mod/editlayout.php:163 -#: ../../mod/editwebpage.php:207 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorie (facoltative, lista separata da virgole)" - -#: ../../include/conversation.php:1219 ../../mod/editblock.php:151 -#: ../../mod/editpost.php:130 ../../mod/editlayout.php:149 -#: ../../mod/editwebpage.php:191 -msgid "Permission settings" -msgstr "Permessi dei tuoi contatti" - -#: ../../include/conversation.php:1220 -msgid "permissions" -msgstr "permessi" - -#: ../../include/conversation.php:1228 ../../mod/editblock.php:159 -#: ../../mod/editpost.php:138 ../../mod/editlayout.php:156 -#: ../../mod/editwebpage.php:200 -msgid "Public post" -msgstr "Post pubblico" - -#: ../../include/conversation.php:1230 ../../mod/editblock.php:166 -#: ../../mod/editpost.php:144 ../../mod/editlayout.php:164 -#: ../../mod/editwebpage.php:208 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Per esempio: mario@esempio.com, simona@esempio.com" - -#: ../../include/conversation.php:1243 ../../mod/mail.php:245 -#: ../../mod/mail.php:374 ../../mod/editblock.php:176 -#: ../../mod/editpost.php:155 ../../mod/editlayout.php:173 -#: ../../mod/editwebpage.php:217 -msgid "Set expiration date" -msgstr "Data di scadenza" - -#: ../../include/conversation.php:1246 -msgid "Set publish date" -msgstr "Data di uscita programmata" - -#: ../../include/conversation.php:1250 ../../mod/editpost.php:159 -#: ../../mod/events.php:691 -msgid "OK" -msgstr "OK" - -#: ../../include/conversation.php:1251 ../../mod/fbrowser.php:82 -#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 -#: ../../mod/events.php:690 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -#: ../../mod/settings.php:584 ../../mod/settings.php:610 -msgid "Cancel" -msgstr "Annulla" - -#: ../../include/conversation.php:1494 -msgid "Discover" -msgstr "Scopri" - -#: ../../include/conversation.php:1497 -msgid "Imported public streams" -msgstr "Contenuti pubblici importati" - -#: ../../include/conversation.php:1502 -msgid "Commented Order" -msgstr "Ultimi commenti" - -#: ../../include/conversation.php:1505 -msgid "Sort by Comment Date" -msgstr "Per data del commento" - -#: ../../include/conversation.php:1509 -msgid "Posted Order" -msgstr "Ultimi post" - -#: ../../include/conversation.php:1512 -msgid "Sort by Post Date" -msgstr "Per data di creazione" - -#: ../../include/conversation.php:1517 ../../include/widgets.php:94 -msgid "Personal" -msgstr "Personali" - -#: ../../include/conversation.php:1520 -msgid "Posts that mention or involve you" -msgstr "Post che ti riguardano" - -#: ../../include/conversation.php:1526 ../../mod/menu.php:112 -#: ../../mod/connections.php:72 ../../mod/connections.php:82 -msgid "New" -msgstr "Novità" - -#: ../../include/conversation.php:1529 -msgid "Activity Stream - by date" -msgstr "Elenco attività - per data" - -#: ../../include/conversation.php:1535 -msgid "Starred" -msgstr "Preferiti" - -#: ../../include/conversation.php:1538 -msgid "Favourite Posts" -msgstr "Post preferiti" - -#: ../../include/conversation.php:1545 -msgid "Spam" -msgstr "Spam" - -#: ../../include/conversation.php:1548 -msgid "Posts flagged as SPAM" -msgstr "Post marcati come spam" - -#: ../../include/conversation.php:1592 ../../mod/admin.php:947 -msgid "Channel" -msgstr "Canale" - -#: ../../include/conversation.php:1595 -msgid "Status Messages and Posts" -msgstr "Post e messaggi di stato" - -#: ../../include/conversation.php:1604 -msgid "About" -msgstr "Informazioni" +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:1607 -msgid "Profile Details" -msgstr "Dettagli del profilo" +#: ../../include/attach.php:837 +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:1623 -msgid "Files and Storage" -msgstr "Archivio file" +#: ../../include/attach.php:850 +msgid "Stored file could not be verified. Upload failed." +msgstr "Il file non può essere verificato. Caricamento fallito." -#: ../../include/conversation.php:1633 ../../include/conversation.php:1636 -msgid "Chatrooms" -msgstr "Chat" +#: ../../include/attach.php:898 ../../include/attach.php:914 +msgid "Path not available." +msgstr "Percorso non disponibile." -#: ../../include/conversation.php:1649 -msgid "Saved Bookmarks" -msgstr "Segnalibri salvati" +#: ../../include/attach.php:960 ../../include/attach.php:1112 +msgid "Empty pathname" +msgstr "Il percorso del file è vuoto" -#: ../../include/conversation.php:1659 -msgid "Manage Webpages" -msgstr "Gestisci le pagine web" +#: ../../include/attach.php:986 +msgid "duplicate filename or path" +msgstr "il file o il percorso del file è duplicato" -#: ../../include/conversation.php:1718 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Partecipa" -msgstr[1] "Partecipano" +#: ../../include/attach.php:1008 +msgid "Path not found." +msgstr "Percorso del file non trovato." -#: ../../include/conversation.php:1721 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "Non partecipa" -msgstr[1] "Non partecipano" +#: ../../include/attach.php:1066 +msgid "mkdir failed." +msgstr "mkdir fallito." -#: ../../include/conversation.php:1724 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso" -msgstr[1] "Indecisi" +#: ../../include/attach.php:1070 +msgid "database storage failed." +msgstr "scrittura su database fallita." -#: ../../include/conversation.php:1727 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "D'accordo" -msgstr[1] "D'accordo" +#: ../../include/attach.php:1118 +msgid "Empty path" +msgstr "La posizione è vuota" -#: ../../include/conversation.php:1730 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "Non d'accordo" -msgstr[1] "Non d'accordo" +#: ../../include/bb2diaspora.php:382 +msgid "Attachments:" +msgstr "Allegati:" -#: ../../include/conversation.php:1733 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "Astenuto" -msgstr[1] "Astenuti" +#: ../../include/bb2diaspora.php:473 +msgid "$Projectname event notification:" +msgstr "Notifica evento $Projectname:" #: ../../include/widgets.php:91 ../../include/nav.php:157 #: ../../mod/apps.php:36 @@ -3726,6 +3476,12 @@ msgstr "Per esempio: mario@pippo.it oppure http://pluto.com/barbara" msgid "Notes" msgstr "Note" +#: ../../include/widgets.php:191 ../../include/text.php:858 +#: ../../include/text.php:870 ../../mod/filer.php:49 ../../mod/admin.php:1436 +#: ../../mod/admin.php:1456 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100 +msgid "Save" +msgstr "Salva" + #: ../../include/widgets.php:265 msgid "Remove term" msgstr "Rimuovi termine" @@ -3783,7 +3539,7 @@ msgstr "App connesse" msgid "Export channel" msgstr "Esporta il canale" -#: ../../include/widgets.php:529 ../../mod/connedit.php:673 +#: ../../include/widgets.php:529 ../../mod/connedit.php:674 msgid "Connection Default Permissions" msgstr "Permessi predefiniti dei nuovi contatti" @@ -3831,10 +3587,6 @@ msgstr "Nessun messaggio." msgid "Delete conversation" msgstr "Elimina la conversazione" -#: ../../include/widgets.php:645 -msgid "D, d M Y - g:i A" -msgstr "D d M Y - G:i" - #: ../../include/widgets.php:734 msgid "Chat Rooms" msgstr "Chat" @@ -3891,7 +3643,7 @@ msgstr "Per gli amministratori" msgid "For Developers" msgstr "Per sviluppatori" -#: ../../include/widgets.php:1185 ../../mod/admin.php:410 +#: ../../include/widgets.php:1185 ../../mod/admin.php:433 msgid "Site" msgstr "Sito" @@ -3899,17 +3651,17 @@ msgstr "Sito" msgid "Accounts" msgstr "Account" -#: ../../include/widgets.php:1187 ../../mod/admin.php:939 +#: ../../include/widgets.php:1187 ../../mod/admin.php:964 msgid "Channels" msgstr "Canali" -#: ../../include/widgets.php:1188 ../../mod/admin.php:1031 -#: ../../mod/admin.php:1071 +#: ../../include/widgets.php:1188 ../../mod/admin.php:1056 +#: ../../mod/admin.php:1096 msgid "Plugins" msgstr "Plugin" -#: ../../include/widgets.php:1189 ../../mod/admin.php:1231 -#: ../../mod/admin.php:1265 +#: ../../include/widgets.php:1189 ../../mod/admin.php:1256 +#: ../../mod/admin.php:1290 msgid "Themes" msgstr "Temi" @@ -3926,7 +3678,7 @@ msgid "DB updates" msgstr "Aggiornamenti al DB" #: ../../include/widgets.php:1210 ../../include/widgets.php:1216 -#: ../../mod/admin.php:1350 +#: ../../mod/admin.php:1375 msgid "Logs" msgstr "Log" @@ -3942,6 +3694,245 @@ msgstr "Plugin" msgid "User registrations waiting for confirmation" msgstr "Registrazioni in attesa" +#: ../../include/text.php:391 +msgid "prev" +msgstr "prec" + +#: ../../include/text.php:393 +msgid "first" +msgstr "inizio" + +#: ../../include/text.php:422 +msgid "last" +msgstr "fine" + +#: ../../include/text.php:425 +msgid "next" +msgstr "succ" + +#: ../../include/text.php:435 +msgid "older" +msgstr "più recenti" + +#: ../../include/text.php:437 +msgid "newer" +msgstr "più nuovi" + +#: ../../include/text.php:775 +msgid "No connections" +msgstr "Nessun contatto" + +#: ../../include/text.php:787 +#, php-format +msgid "%d Connection" +msgid_plural "%d Connections" +msgstr[0] "%d contatto" +msgstr[1] "%d contatti" + +#: ../../include/text.php:800 ../../mod/viewconnections.php:101 +msgid "View Connections" +msgstr "Elenco contatti" + +#: ../../include/text.php:942 +msgid "poke" +msgstr "poke" + +#: ../../include/text.php:943 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:943 +msgid "pinged" +msgstr "ha ricevuto un ping" + +#: ../../include/text.php:944 +msgid "prod" +msgstr "spintone" + +#: ../../include/text.php:944 +msgid "prodded" +msgstr "ha ricevuto uno spintone" + +#: ../../include/text.php:945 +msgid "slap" +msgstr "schiaffo" + +#: ../../include/text.php:945 +msgid "slapped" +msgstr "ha ricevuto uno schiaffo" + +#: ../../include/text.php:946 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:946 +msgid "fingered" +msgstr "ha ricevuto un finger" + +#: ../../include/text.php:947 +msgid "rebuff" +msgstr "rifiuto" + +#: ../../include/text.php:947 +msgid "rebuffed" +msgstr "ha ricevuto un rifiuto" + +#: ../../include/text.php:957 +msgid "happy" +msgstr "felice" + +#: ../../include/text.php:958 +msgid "sad" +msgstr "triste" + +#: ../../include/text.php:959 +msgid "mellow" +msgstr "calmo" + +#: ../../include/text.php:960 +msgid "tired" +msgstr "stanco" + +#: ../../include/text.php:961 +msgid "perky" +msgstr "vivace" + +#: ../../include/text.php:962 +msgid "angry" +msgstr "arrabbiato" + +#: ../../include/text.php:963 +msgid "stupified" +msgstr "stordito" + +#: ../../include/text.php:964 +msgid "puzzled" +msgstr "confuso" + +#: ../../include/text.php:965 +msgid "interested" +msgstr "attento" + +#: ../../include/text.php:966 +msgid "bitter" +msgstr "amaro" + +#: ../../include/text.php:967 +msgid "cheerful" +msgstr "allegro" + +#: ../../include/text.php:968 +msgid "alive" +msgstr "vivace" + +#: ../../include/text.php:969 +msgid "annoyed" +msgstr "seccato" + +#: ../../include/text.php:970 +msgid "anxious" +msgstr "ansioso" + +#: ../../include/text.php:971 +msgid "cranky" +msgstr "irritabile" + +#: ../../include/text.php:972 +msgid "disturbed" +msgstr "turbato" + +#: ../../include/text.php:973 +msgid "frustrated" +msgstr "frustrato" + +#: ../../include/text.php:974 +msgid "depressed" +msgstr "in depressione" + +#: ../../include/text.php:975 +msgid "motivated" +msgstr "motivato" + +#: ../../include/text.php:976 +msgid "relaxed" +msgstr "rilassato" + +#: ../../include/text.php:977 +msgid "surprised" +msgstr "sorpreso" + +#: ../../include/text.php:1153 +msgid "May" +msgstr "maggio" + +#: ../../include/text.php:1230 ../../include/text.php:1234 +msgid "Unknown Attachment" +msgstr "Allegato non riconoscuto" + +#: ../../include/text.php:1236 +msgid "unknown" +msgstr "sconosciuta" + +#: ../../include/text.php:1272 +msgid "remove category" +msgstr "rimuovi la categoria" + +#: ../../include/text.php:1349 +msgid "remove from file" +msgstr "rimuovi dal file" + +#: ../../include/text.php:1461 ../../include/text.php:1472 +msgid "Click to open/close" +msgstr "Clicca per aprire/chiudere" + +#: ../../include/text.php:1640 ../../mod/events.php:497 +msgid "Link to Source" +msgstr "Link al sito d'origine" + +#: ../../include/text.php:1661 ../../include/text.php:1732 +msgid "default" +msgstr "predefinito" + +#: ../../include/text.php:1669 +msgid "Page layout" +msgstr "Layout della pagina" + +#: ../../include/text.php:1669 +msgid "You can create your own with the layouts tool" +msgstr "Con la configurazione del layout puoi crearne uno tuo" + +#: ../../include/text.php:1710 +msgid "Page content type" +msgstr "Tipo di contenuto della pagina" + +#: ../../include/text.php:1744 +msgid "Select an alternate language" +msgstr "Seleziona una lingua diversa" + +#: ../../include/text.php:1876 +msgid "activity" +msgstr "l'attività" + +#: ../../include/text.php:2171 +msgid "Design Tools" +msgstr "Strumenti di design" + +#: ../../include/text.php:2174 ../../mod/blocks.php:147 +msgid "Blocks" +msgstr "Block" + +#: ../../include/text.php:2175 ../../mod/menu.php:103 +msgid "Menus" +msgstr "Menù" + +#: ../../include/text.php:2176 ../../mod/layouts.php:174 +msgid "Layouts" +msgstr "Layout" + +#: ../../include/text.php:2177 +msgid "Pages" +msgstr "Pagine" + #: ../../include/nav.php:82 ../../include/nav.php:114 ../../boot.php:1502 msgid "Logout" msgstr "Esci" @@ -4121,7 +4112,7 @@ msgstr "Attendere..." #: ../../include/dir_fns.php:126 msgid "Directory Options" -msgstr "Opzioni per elenchi pubblici" +msgstr "Visibilità negli elenchi pubblici" #: ../../include/dir_fns.php:128 msgid "Safe Mode" @@ -4131,10 +4122,10 @@ msgstr "Modalità SafeSearch" #: ../../include/dir_fns.php:130 ../../mod/removeme.php:60 #: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 #: ../../mod/mitem.php:229 ../../mod/connedit.php:630 -#: ../../mod/connedit.php:674 ../../mod/filestorage.php:151 +#: ../../mod/connedit.php:675 ../../mod/filestorage.php:151 #: ../../mod/filestorage.php:159 ../../mod/photos.php:626 -#: ../../mod/admin.php:386 ../../mod/menu.php:96 ../../mod/menu.php:153 -#: ../../mod/settings.php:574 ../../mod/api.php:106 +#: ../../mod/admin.php:409 ../../mod/menu.php:96 ../../mod/menu.php:153 +#: ../../mod/settings.php:575 ../../mod/api.php:106 #: ../../view/theme/redbasic/php/config.php:104 #: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1507 msgid "No" @@ -4145,8 +4136,8 @@ msgstr "No" #: ../../mod/mitem.php:154 ../../mod/mitem.php:155 ../../mod/mitem.php:228 #: ../../mod/mitem.php:229 ../../mod/filestorage.php:151 #: ../../mod/filestorage.php:159 ../../mod/photos.php:626 -#: ../../mod/admin.php:388 ../../mod/menu.php:96 ../../mod/menu.php:153 -#: ../../mod/settings.php:574 ../../mod/api.php:105 +#: ../../mod/admin.php:411 ../../mod/menu.php:96 ../../mod/menu.php:153 +#: ../../mod/settings.php:575 ../../mod/api.php:105 #: ../../view/theme/redbasic/php/config.php:104 #: ../../view/theme/redbasic/php/config.php:129 ../../boot.php:1507 msgid "Yes" @@ -4587,7 +4578,7 @@ msgid "" "removed from the network" msgstr "L'impostazione predefinita è che sia eliminata solo l'istanza del canale presente su questo hub, non gli eventuali cloni" -#: ../../mod/removeme.php:61 ../../mod/settings.php:1109 +#: ../../mod/removeme.php:61 ../../mod/settings.php:1110 msgid "Remove Channel" msgstr "Elimina questo canale" @@ -4619,7 +4610,7 @@ msgstr "Non trovato." msgid "Menu Item Permissions" msgstr "Permessi del menu" -#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1053 +#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1054 msgid "(click to open/close)" msgstr "(clicca per aprire/chiudere)" @@ -4778,11 +4769,11 @@ msgstr "Attività recenti" msgid "View recent posts and comments" msgstr "Leggi i post recenti e i commenti" -#: ../../mod/connedit.php:514 ../../mod/admin.php:785 +#: ../../mod/connedit.php:514 ../../mod/admin.php:810 msgid "Unblock" msgstr "Sblocca" -#: ../../mod/connedit.php:514 ../../mod/admin.php:784 +#: ../../mod/connedit.php:514 ../../mod/admin.php:809 msgid "Block" msgstr "Blocca" @@ -4867,109 +4858,109 @@ msgstr "Scegli il profilo da mostrare" msgid "Set Affinity & Profile" msgstr "Affinità e profilo" -#: ../../mod/connedit.php:669 +#: ../../mod/connedit.php:670 msgid "none" msgstr "--" -#: ../../mod/connedit.php:674 +#: ../../mod/connedit.php:675 msgid "Apply these permissions automatically" msgstr "Applica automaticamente questi permessi" -#: ../../mod/connedit.php:676 +#: ../../mod/connedit.php:677 msgid "This connection's primary address is" msgstr "Indirizzo primario di questo canale" -#: ../../mod/connedit.php:677 +#: ../../mod/connedit.php:678 msgid "Available locations:" msgstr "Indirizzi disponibili" -#: ../../mod/connedit.php:681 +#: ../../mod/connedit.php:682 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." -#: ../../mod/connedit.php:683 +#: ../../mod/connedit.php:684 msgid "Slide to adjust your degree of friendship" msgstr "Trascina per restringere il grado di amicizia da mostrare" -#: ../../mod/connedit.php:685 +#: ../../mod/connedit.php:686 msgid "Slide to adjust your rating" msgstr "Trascina per cambiare la tua valutazione" -#: ../../mod/connedit.php:686 ../../mod/connedit.php:691 +#: ../../mod/connedit.php:687 ../../mod/connedit.php:692 msgid "Optionally explain your rating" msgstr "Commento facoltativo" -#: ../../mod/connedit.php:688 +#: ../../mod/connedit.php:689 msgid "Custom Filter" msgstr "Filtro personalizzato" -#: ../../mod/connedit.php:689 +#: ../../mod/connedit.php:690 msgid "Only import posts with this text" msgstr "Importa solo i post che contengono queste parole chiave" -#: ../../mod/connedit.php:689 ../../mod/connedit.php:690 +#: ../../mod/connedit.php:690 ../../mod/connedit.php:691 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" -#: ../../mod/connedit.php:690 +#: ../../mod/connedit.php:691 msgid "Do not import posts with this text" msgstr "Non importare i post con queste parole chiave" -#: ../../mod/connedit.php:692 +#: ../../mod/connedit.php:693 msgid "This information is public!" msgstr "Questa informazione è pubblica!" -#: ../../mod/connedit.php:697 +#: ../../mod/connedit.php:698 msgid "Connection Pending Approval" msgstr "Contatti in attesa di approvazione" -#: ../../mod/connedit.php:698 +#: ../../mod/connedit.php:699 msgid "Connection Request" msgstr "Richiesta di entrare in contatto" -#: ../../mod/connedit.php:699 +#: ../../mod/connedit.php:700 #, php-format msgid "" "(%s) would like to connect with you. Please approve this connection to allow" " communication." msgstr "(%s) vorrebbe entrare in contatto con te. Per permettere la comunicazione è necessario che tu approvi." -#: ../../mod/connedit.php:700 ../../mod/admin.php:781 +#: ../../mod/connedit.php:701 ../../mod/admin.php:806 msgid "Approve" msgstr "Approva" -#: ../../mod/connedit.php:701 +#: ../../mod/connedit.php:702 msgid "Approve Later" msgstr "Approva più tardi" -#: ../../mod/connedit.php:704 +#: ../../mod/connedit.php:705 msgid "inherited" msgstr "derivato" -#: ../../mod/connedit.php:706 +#: ../../mod/connedit.php:707 #, 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." -#: ../../mod/connedit.php:708 +#: ../../mod/connedit.php:709 msgid "Their Settings" msgstr "Permessi concessi a te" -#: ../../mod/connedit.php:709 +#: ../../mod/connedit.php:710 msgid "My Settings" msgstr "Permessi che concedo" -#: ../../mod/connedit.php:711 +#: ../../mod/connedit.php:712 msgid "Individual Permissions" msgstr "Permessi individuali" -#: ../../mod/connedit.php:712 +#: ../../mod/connedit.php:713 msgid "" "Some permissions may be inherited from your channel's <a " "href=\"settings\"><strong>privacy settings</strong></a>, which have higher " @@ -4977,7 +4968,7 @@ msgid "" " settings here." msgstr "Alcuni permessi derivano dalle <a href=\"settings\"><strong>impostazioni di privacy</strong></a> del tuo canale, che hanno priorità assoluta su qualsiasi altra impostazione scelta per i singoli contatti. Da questa pagina <strong>non</strong> puoi cambiarle." -#: ../../mod/connedit.php:713 +#: ../../mod/connedit.php:714 msgid "" "Some permissions may be inherited from your channel's <a " "href=\"settings\"><strong>privacy settings</strong></a>, which have higher " @@ -4985,7 +4976,7 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Alcuni permessi derivano dalle <a href=\"settings\"><strong>impostazioni di privacy</strong></a> 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." -#: ../../mod/connedit.php:714 +#: ../../mod/connedit.php:715 msgid "Last update:" msgstr "Ultimo aggiornamento:" @@ -5201,93 +5192,6 @@ msgstr "Valutazione (visibile a tutti)" msgid "Optionally explain your rating (this information is public)" msgstr "Commento alla valutazione (facoltativo, visibile a tutti)" -#: ../../mod/mail.php:33 -msgid "Unable to lookup recipient." -msgstr "Impossibile associare un destinatario." - -#: ../../mod/mail.php:41 -msgid "Unable to communicate with requested channel." -msgstr "Impossibile comunicare con il canale richiesto." - -#: ../../mod/mail.php:48 -msgid "Cannot verify requested channel." -msgstr "Impossibile verificare il canale richiesto." - -#: ../../mod/mail.php:74 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." - -#: ../../mod/mail.php:132 -msgid "Messages" -msgstr "Messaggi" - -#: ../../mod/mail.php:167 -msgid "Message recalled." -msgstr "Messaggio revocato." - -#: ../../mod/mail.php:180 -msgid "Conversation removed." -msgstr "Conversazione rimossa." - -#: ../../mod/mail.php:223 -msgid "Requested channel is not in this network" -msgstr "Il canale cercato non è in questa rete" - -#: ../../mod/mail.php:231 -msgid "Send Private Message" -msgstr "Invia un messaggio privato" - -#: ../../mod/mail.php:232 ../../mod/mail.php:361 -msgid "To:" -msgstr "A:" - -#: ../../mod/mail.php:235 ../../mod/mail.php:363 -msgid "Subject:" -msgstr "Oggetto:" - -#: ../../mod/mail.php:238 ../../mod/invite.php:131 -msgid "Your message:" -msgstr "Il tuo messaggio:" - -#: ../../mod/mail.php:242 -msgid "Send" -msgstr "Invia" - -#: ../../mod/mail.php:333 -msgid "Delete message" -msgstr "Elimina il messaggio" - -#: ../../mod/mail.php:334 -msgid "Delivery report" -msgstr "Rapporto di trasmissione" - -#: ../../mod/mail.php:335 -msgid "Recall message" -msgstr "Revoca il messaggio" - -#: ../../mod/mail.php:337 -msgid "Message has been recalled." -msgstr "Il messaggio è stato revocato." - -#: ../../mod/mail.php:354 -msgid "Delete Conversation" -msgstr "Elimina la conversazione" - -#: ../../mod/mail.php:356 -msgid "" -"No secure communications available. You <strong>may</strong> be able to " -"respond from the sender's profile page." -msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente." - -#: ../../mod/mail.php:360 -msgid "Send Reply" -msgstr "Invia la risposta" - -#: ../../mod/mail.php:365 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Il tuo messaggio per %s (%s):" - #: ../../mod/photos.php:79 msgid "Page owner information could not be retrieved." msgstr "Impossibile ottenere informazioni sul proprietario della pagina." @@ -5520,7 +5424,7 @@ msgstr "Elemento non trovato" #: ../../mod/editblock.php:118 msgid "Delete block?" -msgstr "Vuoi eliminare questo riquadro?" +msgstr "Vuoi eliminare questo block?" #: ../../mod/editblock.php:145 ../../mod/editpost.php:121 #: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 @@ -5539,11 +5443,11 @@ msgstr "Inserisci audio Vorbis [.ogg]" #: ../../mod/editblock.php:180 msgid "Edit Block" -msgstr "Modifica il riquadro" +msgstr "Modifica il block" #: ../../mod/dirsearch.php:29 msgid "This directory server requires an access token" -msgstr "Questo server di elenchi pubblici necessita di un token di autenticazione" +msgstr "Questo directory server necessita di un token di autenticazione" #: ../../mod/editpost.php:31 msgid "Item is not editable" @@ -5601,10 +5505,10 @@ msgstr "# cloni" msgid "Message queues" msgstr "Coda messaggi in uscita" -#: ../../mod/admin.php:198 ../../mod/admin.php:409 ../../mod/admin.php:506 -#: ../../mod/admin.php:774 ../../mod/admin.php:938 ../../mod/admin.php:1030 -#: ../../mod/admin.php:1070 ../../mod/admin.php:1230 ../../mod/admin.php:1264 -#: ../../mod/admin.php:1349 +#: ../../mod/admin.php:198 ../../mod/admin.php:432 ../../mod/admin.php:531 +#: ../../mod/admin.php:799 ../../mod/admin.php:963 ../../mod/admin.php:1055 +#: ../../mod/admin.php:1095 ../../mod/admin.php:1255 ../../mod/admin.php:1289 +#: ../../mod/admin.php:1374 msgid "Administration" msgstr "Amministrazione" @@ -5616,7 +5520,7 @@ msgstr "Riepilogo" msgid "Registered accounts" msgstr "Account creati" -#: ../../mod/admin.php:203 ../../mod/admin.php:510 +#: ../../mod/admin.php:203 ../../mod/admin.php:535 msgid "Pending registrations" msgstr "Registrazioni da approvare" @@ -5624,7 +5528,7 @@ msgstr "Registrazioni da approvare" msgid "Registered channels" msgstr "Canali creati" -#: ../../mod/admin.php:205 ../../mod/admin.php:511 +#: ../../mod/admin.php:205 ../../mod/admin.php:536 msgid "Active plugins" msgstr "Plugin attivi" @@ -5632,674 +5536,682 @@ msgstr "Plugin attivi" msgid "Version" msgstr "Versione" -#: ../../mod/admin.php:321 +#: ../../mod/admin.php:324 msgid "Site settings updated." msgstr "Impostazioni del sito salvate correttamente." -#: ../../mod/admin.php:358 ../../mod/settings.php:790 +#: ../../mod/admin.php:361 ../../mod/settings.php:791 msgid "mobile" msgstr "mobile" -#: ../../mod/admin.php:360 +#: ../../mod/admin.php:363 msgid "experimental" msgstr "sperimentale" -#: ../../mod/admin.php:362 +#: ../../mod/admin.php:365 msgid "unsupported" msgstr "non supportato" -#: ../../mod/admin.php:387 +#: ../../mod/admin.php:410 msgid "Yes - with approval" msgstr "Sì - con approvazione" -#: ../../mod/admin.php:393 +#: ../../mod/admin.php:416 msgid "My site is not a public server" msgstr "Non è un server pubblico" -#: ../../mod/admin.php:394 +#: ../../mod/admin.php:417 msgid "My site has paid access only" msgstr "È un servizio a pagamento" -#: ../../mod/admin.php:395 +#: ../../mod/admin.php:418 msgid "My site has free access only" msgstr "È un servizio gratuito" -#: ../../mod/admin.php:396 +#: ../../mod/admin.php:419 msgid "My site offers free accounts with optional paid upgrades" msgstr "È un servizio gratuito con opzioni aggiuntive a pagamento" -#: ../../mod/admin.php:412 ../../mod/register.php:207 +#: ../../mod/admin.php:435 ../../mod/register.php:207 msgid "Registration" msgstr "Registrazione" -#: ../../mod/admin.php:413 +#: ../../mod/admin.php:436 msgid "File upload" msgstr "Caricamento file" -#: ../../mod/admin.php:414 +#: ../../mod/admin.php:437 msgid "Policies" msgstr "Politiche" -#: ../../mod/admin.php:419 +#: ../../mod/admin.php:442 msgid "Site name" msgstr "Nome del sito" -#: ../../mod/admin.php:420 +#: ../../mod/admin.php:443 msgid "Banner/Logo" msgstr "Banner o logo" -#: ../../mod/admin.php:421 +#: ../../mod/admin.php:444 msgid "Administrator Information" msgstr "Informazioni sull'amministratore" -#: ../../mod/admin.php:421 +#: ../../mod/admin.php:444 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" -#: ../../mod/admin.php:422 +#: ../../mod/admin.php:445 msgid "System language" msgstr "Lingua di sistema" -#: ../../mod/admin.php:423 +#: ../../mod/admin.php:446 msgid "System theme" msgstr "Tema di sistema" -#: ../../mod/admin.php:423 +#: ../../mod/admin.php:446 msgid "" "Default system theme - may be over-ridden by user profiles - <a href='#' " "id='cnftheme'>change theme settings</a>" msgstr "Il tema di sistema può essere cambiato dai profili dei singoli utenti - <a href='#' id='cnftheme'>Cambia le impostazioni del tema</a>" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:447 msgid "Mobile system theme" msgstr "Tema di sistema per dispositivi mobili" -#: ../../mod/admin.php:424 +#: ../../mod/admin.php:447 msgid "Theme for mobile devices" msgstr "Tema per i dispositivi mobili" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:449 msgid "Allow Feeds as Connections" msgstr "Permetti di aggiungere i feed come contatti" -#: ../../mod/admin.php:426 +#: ../../mod/admin.php:449 msgid "(Heavy system resource usage)" msgstr "(Uso intenso delle risorse di sistema!)" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:450 msgid "Maximum image size" msgstr "Dimensione massima immagini" -#: ../../mod/admin.php:427 +#: ../../mod/admin.php:450 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." -#: ../../mod/admin.php:428 +#: ../../mod/admin.php:451 msgid "Does this site allow new member registration?" msgstr "Questo sito permette a nuovi utenti di registrarsi?" -#: ../../mod/admin.php:429 +#: ../../mod/admin.php:452 msgid "Which best describes the types of account offered by this hub?" msgstr "Come descriveresti il tipo di servizio proposto da questo server?" -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:453 msgid "Register text" msgstr "Testo di registrazione" -#: ../../mod/admin.php:430 +#: ../../mod/admin.php:453 msgid "Will be displayed prominently on the registration page." msgstr "Sarà mostrato ben visibile nella pagina di registrazione." -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:454 msgid "Site homepage to show visitors (default: login box)" msgstr "Homepage del sito da mostrare ai navigatori (predefinito: modulo di login)" -#: ../../mod/admin.php:431 +#: ../../mod/admin.php:454 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." -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:455 msgid "Preserve site homepage URL" msgstr "Conserva l'URL della homepage" -#: ../../mod/admin.php:432 +#: ../../mod/admin.php:455 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." -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:456 msgid "Accounts abandoned after x days" msgstr "Account abbandonati dopo X giorni" -#: ../../mod/admin.php:433 +#: ../../mod/admin.php:456 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." -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:457 msgid "Allowed friend domains" msgstr "Domini fidati e consentiti" -#: ../../mod/admin.php:434 +#: ../../mod/admin.php:457 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." -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:458 msgid "Allowed email domains" msgstr "Domini email consentiti" -#: ../../mod/admin.php:435 +#: ../../mod/admin.php:458 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" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:459 msgid "Not allowed email domains" msgstr "Domini email non consentiti" -#: ../../mod/admin.php:436 +#: ../../mod/admin.php:459 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." -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:460 msgid "Block public" msgstr "Blocca pagine pubbliche" -#: ../../mod/admin.php:437 +#: ../../mod/admin.php:460 msgid "" "Check to block public access to all otherwise public personal pages on this " "site unless you are currently logged in." msgstr "Seleziona per impedire di vedere le pagine personali di questo sito a chi non ha effettuato l'accesso." -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:461 msgid "Verify Email Addresses" msgstr "Verifica l'indirizzo email" -#: ../../mod/admin.php:438 +#: ../../mod/admin.php:461 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)." -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:462 msgid "Force publish" msgstr "Forza la publicazione del profilo" -#: ../../mod/admin.php:439 +#: ../../mod/admin.php:462 msgid "" "Check to force all profiles on this site to be listed in the site directory." -msgstr "Seleziona per mostrare negli elenchi pubblici <strong>tutti</strong> i profili registrati su questo sito." +msgstr "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito." -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:463 msgid "Disable discovery tab" msgstr "Disabilita la funzione 'scopri'" -#: ../../mod/admin.php:440 +#: ../../mod/admin.php:463 msgid "" "Remove the tab in the network view with public content pulled from sources " "chosen for this site." msgstr "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti." -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:464 msgid "login on Homepage" msgstr "Mostra il login sulla homepage" -#: ../../mod/admin.php:441 +#: ../../mod/admin.php:464 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." -#: ../../mod/admin.php:443 +#: ../../mod/admin.php:466 +msgid "Directory Server URL" +msgstr "URL del directory server" + +#: ../../mod/admin.php:466 +msgid "Default directory server" +msgstr "Directory server predefinito" + +#: ../../mod/admin.php:468 msgid "Proxy user" msgstr "Utente proxy" -#: ../../mod/admin.php:444 +#: ../../mod/admin.php:469 msgid "Proxy URL" msgstr "URL proxy" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:470 msgid "Network timeout" msgstr "Timeout rete" -#: ../../mod/admin.php:445 +#: ../../mod/admin.php:470 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "Valore in secondi. Imposta a 0 per illimitato (sconsigliato)." -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:471 msgid "Delivery interval" msgstr "Recapito ritardato" -#: ../../mod/admin.php:446 +#: ../../mod/admin.php:471 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." -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:472 msgid "Deliveries per process" msgstr "Tentativi di recapito per processo" -#: ../../mod/admin.php:447 +#: ../../mod/admin.php:472 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" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:473 msgid "Poll interval" msgstr "Intervallo di polling" -#: ../../mod/admin.php:448 +#: ../../mod/admin.php:473 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'." -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:474 msgid "Maximum Load Average" msgstr "Carico massimo medio" -#: ../../mod/admin.php:449 +#: ../../mod/admin.php:474 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." -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:475 msgid "Expiration period in days for imported (matrix/network) content" msgstr "Scadenza dei contenuti importati da altri siti (in giorni)" -#: ../../mod/admin.php:450 +#: ../../mod/admin.php:475 msgid "0 for no expiration of imported content" msgstr "0 per non avere scadenza" -#: ../../mod/admin.php:498 +#: ../../mod/admin.php:523 msgid "No server found" msgstr "Server non trovato" -#: ../../mod/admin.php:505 ../../mod/admin.php:788 +#: ../../mod/admin.php:530 ../../mod/admin.php:813 msgid "ID" msgstr "ID" -#: ../../mod/admin.php:505 +#: ../../mod/admin.php:530 msgid "for channel" msgstr "per il canale" -#: ../../mod/admin.php:505 +#: ../../mod/admin.php:530 msgid "on server" msgstr "sul server" -#: ../../mod/admin.php:505 +#: ../../mod/admin.php:530 msgid "Status" msgstr "Stato" -#: ../../mod/admin.php:507 +#: ../../mod/admin.php:532 msgid "Server" msgstr "Server" -#: ../../mod/admin.php:524 +#: ../../mod/admin.php:549 msgid "Update has been marked successful" msgstr "L'aggiornamento è stato marcato come eseguito." -#: ../../mod/admin.php:534 +#: ../../mod/admin.php:559 #, php-format msgid "Executing %s failed. Check system logs." msgstr "Fallita l'esecuzione di %s. Maggiori informazioni sui log di sistema." -#: ../../mod/admin.php:537 +#: ../../mod/admin.php:562 #, php-format msgid "Update %s was successfully applied." msgstr "L'aggiornamento %s è terminato correttamente." -#: ../../mod/admin.php:541 +#: ../../mod/admin.php:566 #, 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." -#: ../../mod/admin.php:544 +#: ../../mod/admin.php:569 #, php-format msgid "Update function %s could not be found." msgstr "Impossibile trovare la funzione di aggiornamento %s" -#: ../../mod/admin.php:560 +#: ../../mod/admin.php:585 msgid "No failed updates." msgstr "Nessun aggiornamento fallito." -#: ../../mod/admin.php:564 +#: ../../mod/admin.php:589 msgid "Failed Updates" msgstr "Aggiornamenti falliti." -#: ../../mod/admin.php:566 +#: ../../mod/admin.php:591 msgid "Mark success (if update was manually applied)" msgstr "Marca come eseguito (se applicato manualmente)." -#: ../../mod/admin.php:567 +#: ../../mod/admin.php:592 msgid "Attempt to execute this update step automatically" msgstr "Tenta di eseguire in automatico questo passaggio dell'aggiornamento." -#: ../../mod/admin.php:599 +#: ../../mod/admin.php:624 msgid "Queue Statistics" msgstr "Statistiche della coda" -#: ../../mod/admin.php:600 +#: ../../mod/admin.php:625 msgid "Total Entries" msgstr "Totale" -#: ../../mod/admin.php:601 +#: ../../mod/admin.php:626 msgid "Priority" msgstr "Priorità" -#: ../../mod/admin.php:602 +#: ../../mod/admin.php:627 msgid "Destination URL" msgstr "URL di destinazione" -#: ../../mod/admin.php:603 +#: ../../mod/admin.php:628 msgid "Mark hub permanently offline" msgstr "Questo hub è definitivamente offline" -#: ../../mod/admin.php:604 +#: ../../mod/admin.php:629 msgid "Empty queue for this hub" msgstr "Svuota la coda per questo hub" -#: ../../mod/admin.php:605 +#: ../../mod/admin.php:630 msgid "Last known contact" msgstr "Ultimo scambio dati" -#: ../../mod/admin.php:641 +#: ../../mod/admin.php:666 #, 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" -#: ../../mod/admin.php:649 +#: ../../mod/admin.php:674 #, php-format msgid "%s account deleted" msgid_plural "%s accounts deleted" msgstr[0] "%s account eliminato" msgstr[1] "%s account eliminati" -#: ../../mod/admin.php:685 +#: ../../mod/admin.php:710 msgid "Account not found" msgstr "Account non trovato" -#: ../../mod/admin.php:697 +#: ../../mod/admin.php:722 #, php-format msgid "Account '%s' deleted" msgstr "Account '%s' eliminato" -#: ../../mod/admin.php:705 +#: ../../mod/admin.php:730 #, php-format msgid "Account '%s' blocked" msgstr "Aggiunto un blocco verso '%s'" -#: ../../mod/admin.php:713 +#: ../../mod/admin.php:738 #, php-format msgid "Account '%s' unblocked" msgstr "Rimosso il blocco verso '%s'" -#: ../../mod/admin.php:775 ../../mod/admin.php:787 +#: ../../mod/admin.php:800 ../../mod/admin.php:812 msgid "Users" msgstr "Utenti" -#: ../../mod/admin.php:777 ../../mod/admin.php:941 +#: ../../mod/admin.php:802 ../../mod/admin.php:966 msgid "select all" msgstr "seleziona tutti" -#: ../../mod/admin.php:778 +#: ../../mod/admin.php:803 msgid "User registrations waiting for confirm" msgstr "Richieste di registrazione in attesa di conferma" -#: ../../mod/admin.php:779 +#: ../../mod/admin.php:804 msgid "Request date" msgstr "Data richiesta" -#: ../../mod/admin.php:780 +#: ../../mod/admin.php:805 msgid "No registrations." msgstr "Nessuna registrazione." -#: ../../mod/admin.php:782 +#: ../../mod/admin.php:807 msgid "Deny" msgstr "Nega" -#: ../../mod/admin.php:788 +#: ../../mod/admin.php:813 msgid "Register date" msgstr "Data registrazione" -#: ../../mod/admin.php:788 +#: ../../mod/admin.php:813 msgid "Last login" msgstr "Ultimo accesso" -#: ../../mod/admin.php:788 +#: ../../mod/admin.php:813 msgid "Expires" msgstr "Con scadenza" -#: ../../mod/admin.php:788 +#: ../../mod/admin.php:813 msgid "Service Class" msgstr "Classe dell'account" -#: ../../mod/admin.php:790 +#: ../../mod/admin.php:815 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?" -#: ../../mod/admin.php:791 +#: ../../mod/admin.php:816 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?" -#: ../../mod/admin.php:827 +#: ../../mod/admin.php:852 #, 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" -#: ../../mod/admin.php:836 +#: ../../mod/admin.php:861 #, 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" -#: ../../mod/admin.php:843 +#: ../../mod/admin.php:868 #, php-format msgid "%s channel deleted" msgid_plural "%s channels deleted" msgstr[0] "%s canale è stato rimosso" msgstr[1] "%s canali sono stati rimossi" -#: ../../mod/admin.php:863 +#: ../../mod/admin.php:888 msgid "Channel not found" msgstr "Canale non trovato" -#: ../../mod/admin.php:874 +#: ../../mod/admin.php:899 #, php-format msgid "Channel '%s' deleted" msgstr "Il canale '%s' è stato rimosso" -#: ../../mod/admin.php:886 +#: ../../mod/admin.php:911 #, php-format msgid "Channel '%s' censored" msgstr "Applicata una censura al canale '%s'" -#: ../../mod/admin.php:886 +#: ../../mod/admin.php:911 #, php-format msgid "Channel '%s' uncensored" msgstr "Rimossa la censura dal canale '%s'" -#: ../../mod/admin.php:897 +#: ../../mod/admin.php:922 #, php-format msgid "Channel '%s' code allowed" msgstr "Il canale '%s' permette codice nei contenuti" -#: ../../mod/admin.php:897 +#: ../../mod/admin.php:922 #, php-format msgid "Channel '%s' code disallowed" msgstr "Il canale '%s' non permette codice nei contenuti" -#: ../../mod/admin.php:943 +#: ../../mod/admin.php:968 msgid "Censor" msgstr "Applica una censura" -#: ../../mod/admin.php:944 +#: ../../mod/admin.php:969 msgid "Uncensor" msgstr "Rimuovi la censura" -#: ../../mod/admin.php:945 +#: ../../mod/admin.php:970 msgid "Allow Code" msgstr "Permetti codice nei contenuti" -#: ../../mod/admin.php:946 +#: ../../mod/admin.php:971 msgid "Disallow Code" msgstr "Non permettere codice nei contenuti" -#: ../../mod/admin.php:948 +#: ../../mod/admin.php:973 msgid "UID" msgstr "UID" -#: ../../mod/admin.php:948 ../../mod/profiles.php:447 +#: ../../mod/admin.php:973 ../../mod/profiles.php:447 msgid "Address" msgstr "Indirizzo" -#: ../../mod/admin.php:950 +#: ../../mod/admin.php:975 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?" -#: ../../mod/admin.php:951 +#: ../../mod/admin.php:976 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?" -#: ../../mod/admin.php:991 +#: ../../mod/admin.php:1016 #, php-format msgid "Plugin %s disabled." msgstr "Plugin %s non attivo." -#: ../../mod/admin.php:995 +#: ../../mod/admin.php:1020 #, php-format msgid "Plugin %s enabled." msgstr "Plugin %s attivo." -#: ../../mod/admin.php:1005 ../../mod/admin.php:1203 +#: ../../mod/admin.php:1030 ../../mod/admin.php:1228 msgid "Disable" msgstr "Disattiva" -#: ../../mod/admin.php:1008 ../../mod/admin.php:1205 +#: ../../mod/admin.php:1033 ../../mod/admin.php:1230 msgid "Enable" msgstr "Attiva" -#: ../../mod/admin.php:1032 ../../mod/admin.php:1232 +#: ../../mod/admin.php:1057 ../../mod/admin.php:1257 msgid "Toggle" msgstr "Attiva/disattiva" -#: ../../mod/admin.php:1040 ../../mod/admin.php:1242 +#: ../../mod/admin.php:1065 ../../mod/admin.php:1267 msgid "Author: " msgstr "Autore:" -#: ../../mod/admin.php:1041 ../../mod/admin.php:1243 +#: ../../mod/admin.php:1066 ../../mod/admin.php:1268 msgid "Maintainer: " msgstr "Gestore:" -#: ../../mod/admin.php:1168 +#: ../../mod/admin.php:1193 msgid "No themes found." msgstr "Nessun tema trovato." -#: ../../mod/admin.php:1224 +#: ../../mod/admin.php:1249 msgid "Screenshot" msgstr "Istantanea dello schermo" -#: ../../mod/admin.php:1270 +#: ../../mod/admin.php:1295 msgid "[Experimental]" msgstr "[Sperimentale]" -#: ../../mod/admin.php:1271 +#: ../../mod/admin.php:1296 msgid "[Unsupported]" msgstr "[Non supportato]" -#: ../../mod/admin.php:1295 +#: ../../mod/admin.php:1320 msgid "Log settings updated." msgstr "Impostazioni di log aggiornate." -#: ../../mod/admin.php:1352 +#: ../../mod/admin.php:1377 msgid "Clear" msgstr "Pulisci" -#: ../../mod/admin.php:1358 +#: ../../mod/admin.php:1383 msgid "Debugging" msgstr "Debugging" -#: ../../mod/admin.php:1359 +#: ../../mod/admin.php:1384 msgid "Log file" msgstr "File di log" -#: ../../mod/admin.php:1359 +#: ../../mod/admin.php:1384 msgid "" "Must be writable by web server. Relative to your Red top-level directory." msgstr "Deve essere scrivibile dal web server. La posizione è relativa alla cartella dove è installato Hubzilla." -#: ../../mod/admin.php:1360 +#: ../../mod/admin.php:1385 msgid "Log level" msgstr "Livello di log" -#: ../../mod/admin.php:1406 +#: ../../mod/admin.php:1431 msgid "New Profile Field" msgstr "Nuovo campo del profilo" -#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +#: ../../mod/admin.php:1432 ../../mod/admin.php:1452 msgid "Field nickname" msgstr "Nome breve del campo" -#: ../../mod/admin.php:1407 ../../mod/admin.php:1427 +#: ../../mod/admin.php:1432 ../../mod/admin.php:1452 msgid "System name of field" msgstr "Nome di sistema del campo" -#: ../../mod/admin.php:1408 ../../mod/admin.php:1428 +#: ../../mod/admin.php:1433 ../../mod/admin.php:1453 msgid "Input type" msgstr "Tipo di dati" -#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +#: ../../mod/admin.php:1434 ../../mod/admin.php:1454 msgid "Field Name" msgstr "Nome del campo" -#: ../../mod/admin.php:1409 ../../mod/admin.php:1429 +#: ../../mod/admin.php:1434 ../../mod/admin.php:1454 msgid "Label on profile pages" msgstr "Etichetta da mostrare sulla pagina del profilo" -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +#: ../../mod/admin.php:1435 ../../mod/admin.php:1455 msgid "Help text" msgstr "Testo di aiuto" -#: ../../mod/admin.php:1410 ../../mod/admin.php:1430 +#: ../../mod/admin.php:1435 ../../mod/admin.php:1455 msgid "Additional info (optional)" msgstr "Informazioni aggiuntive (facoltative)" -#: ../../mod/admin.php:1420 +#: ../../mod/admin.php:1445 msgid "Field definition not found" msgstr "Impossibile trovare la definizione del campo" -#: ../../mod/admin.php:1426 +#: ../../mod/admin.php:1451 msgid "Edit Profile Field" msgstr "Modifica campo del profilo" @@ -6331,7 +6243,7 @@ msgstr "Nome app" msgid "Location (URL) of app" msgstr "Indirizzo (URL) della app" -#: ../../mod/appman.php:93 ../../mod/rbmark.php:95 +#: ../../mod/appman.php:93 ../../mod/rbmark.php:97 msgid "Description" msgstr "Descrizione" @@ -6538,11 +6450,16 @@ msgstr "Nome del modulo:" msgid "Layout Help" msgstr "Guida al layout" -#: ../../mod/subthread.php:102 +#: ../../mod/subthread.php:108 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "%1$s sta seguendo %3$s di %2$s" +#: ../../mod/subthread.php:110 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s non segue più %3$s di %2$s" + #: ../../mod/lostpass.php:15 msgid "No valid account found." msgstr "Nessun account valido trovato." @@ -6827,7 +6744,7 @@ msgstr "Seleziona un profilo:" msgid "Upload Profile Photo" msgstr "Carica la foto del profilo" -#: ../../mod/profile_photo.php:454 ../../mod/settings.php:972 +#: ../../mod/profile_photo.php:454 ../../mod/settings.php:973 msgid "or" msgstr "o" @@ -6998,11 +6915,11 @@ msgstr "Ripeti la password per verifica" #: ../../mod/blocks.php:95 ../../mod/blocks.php:148 msgid "Block Name" -msgstr "Nome del riquadro" +msgstr "Nome del block" #: ../../mod/blocks.php:149 msgid "Block Title" -msgstr "Titolo del riquadro" +msgstr "Titolo del block" #: ../../mod/removeaccount.php:30 msgid "" @@ -7032,7 +6949,7 @@ msgid "" "removed from the network" msgstr "A meno che tu non lo richieda espressamente, solo i canali presenti su questo hub saranno rimossi dalla rete." -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:697 +#: ../../mod/removeaccount.php:61 ../../mod/settings.php:698 msgid "Remove Account" msgstr "Elimina l'account" @@ -7044,11 +6961,11 @@ msgstr "Non esistono restrizioni su questa classe di account." msgid "Item not available." msgstr "Elemento non disponibile." -#: ../../mod/pubsites.php:16 +#: ../../mod/pubsites.php:18 msgid "Public Sites" msgstr "Siti pubblici" -#: ../../mod/pubsites.php:19 +#: ../../mod/pubsites.php:21 msgid "" "The listed sites allow public registration for the $Projectname network. All" " sites in the network are interlinked so membership on any of them conveys " @@ -7057,39 +6974,39 @@ msgid "" "provide additional details." msgstr "I siti elencati permettono la registrazione libera sulla rete $Projectname. Tutti questi hub sono interconnessi, quindi essere iscritti su uno equivale a una registrazione su tutta la rete. Alcuni siti potrebbero richiedere un abbonamento o dei servizi a pagamento. Per maggiori dettagli visita gli indirizzi nell'elenco." -#: ../../mod/pubsites.php:25 +#: ../../mod/pubsites.php:27 msgid "Rate this hub" msgstr "Valuta questo hub" -#: ../../mod/pubsites.php:26 +#: ../../mod/pubsites.php:28 msgid "Site URL" msgstr "URL del sito" -#: ../../mod/pubsites.php:26 +#: ../../mod/pubsites.php:28 msgid "Access Type" msgstr "Tipo di accesso" -#: ../../mod/pubsites.php:26 +#: ../../mod/pubsites.php:28 msgid "Registration Policy" msgstr "Politica di registrazione" -#: ../../mod/pubsites.php:26 ../../mod/profiles.php:454 +#: ../../mod/pubsites.php:28 ../../mod/profiles.php:454 msgid "Location" msgstr "Posizione geografica" -#: ../../mod/pubsites.php:26 +#: ../../mod/pubsites.php:28 msgid "Project" msgstr "Progetto" -#: ../../mod/pubsites.php:26 +#: ../../mod/pubsites.php:28 msgid "View hub ratings" msgstr "Vedi le valutazioni del hub" -#: ../../mod/pubsites.php:30 +#: ../../mod/pubsites.php:32 msgid "Rate" msgstr "Valuta" -#: ../../mod/pubsites.php:31 +#: ../../mod/pubsites.php:33 msgid "View ratings" msgstr "Vedi le valutazioni" @@ -7443,6 +7360,10 @@ msgstr "Spedisci inviti" msgid "Enter email addresses, one per line:" msgstr "Inserisci gli indirizzi email, uno per riga:" +#: ../../mod/invite.php:131 ../../mod/mail.php:238 +msgid "Your message:" +msgstr "Il tuo messaggio:" + #: ../../mod/invite.php:132 msgid "Please join my community on $Projectname." msgstr "Entra nella mia comunità su $Projectname." @@ -7468,6 +7389,89 @@ msgstr "oppure visita " msgid "3. Click [Connect]" msgstr "3. Clicca su [Aggiungi]" +#: ../../mod/mail.php:33 +msgid "Unable to lookup recipient." +msgstr "Impossibile associare un destinatario." + +#: ../../mod/mail.php:41 +msgid "Unable to communicate with requested channel." +msgstr "Impossibile comunicare con il canale richiesto." + +#: ../../mod/mail.php:48 +msgid "Cannot verify requested channel." +msgstr "Impossibile verificare il canale richiesto." + +#: ../../mod/mail.php:74 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito." + +#: ../../mod/mail.php:132 +msgid "Messages" +msgstr "Messaggi" + +#: ../../mod/mail.php:167 +msgid "Message recalled." +msgstr "Messaggio revocato." + +#: ../../mod/mail.php:180 +msgid "Conversation removed." +msgstr "Conversazione rimossa." + +#: ../../mod/mail.php:223 +msgid "Requested channel is not in this network" +msgstr "Il canale cercato non è in questa rete" + +#: ../../mod/mail.php:231 +msgid "Send Private Message" +msgstr "Invia un messaggio privato" + +#: ../../mod/mail.php:232 ../../mod/mail.php:361 +msgid "To:" +msgstr "A:" + +#: ../../mod/mail.php:235 ../../mod/mail.php:363 +msgid "Subject:" +msgstr "Oggetto:" + +#: ../../mod/mail.php:242 +msgid "Send" +msgstr "Invia" + +#: ../../mod/mail.php:333 +msgid "Delete message" +msgstr "Elimina il messaggio" + +#: ../../mod/mail.php:334 +msgid "Delivery report" +msgstr "Rapporto di trasmissione" + +#: ../../mod/mail.php:335 +msgid "Recall message" +msgstr "Revoca il messaggio" + +#: ../../mod/mail.php:337 +msgid "Message has been recalled." +msgstr "Il messaggio è stato revocato." + +#: ../../mod/mail.php:354 +msgid "Delete Conversation" +msgstr "Elimina la conversazione" + +#: ../../mod/mail.php:356 +msgid "" +"No secure communications available. You <strong>may</strong> be able to " +"respond from the sender's profile page." +msgstr "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente." + +#: ../../mod/mail.php:360 +msgid "Send Reply" +msgstr "Invia la risposta" + +#: ../../mod/mail.php:365 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Il tuo messaggio per %s (%s):" + #: ../../mod/update_channel.php:43 ../../mod/update_display.php:25 #: ../../mod/update_home.php:21 ../../mod/update_network.php:23 #: ../../mod/update_search.php:46 ../../mod/update_public.php:21 @@ -7486,556 +7490,564 @@ msgstr "Il nome è obbligatorio" msgid "Key and Secret are required" msgstr "Key e Secret sono richiesti" -#: ../../mod/settings.php:231 +#: ../../mod/settings.php:232 msgid "Passwords do not match. Password unchanged." msgstr "Le password non corrispondono. Password non cambiata." -#: ../../mod/settings.php:235 +#: ../../mod/settings.php:236 msgid "Empty passwords are not allowed. Password unchanged." msgstr "Le password non possono essere vuote. Password non cambiata." -#: ../../mod/settings.php:249 +#: ../../mod/settings.php:250 msgid "Password changed." msgstr "Password cambiata." -#: ../../mod/settings.php:251 +#: ../../mod/settings.php:252 msgid "Password update failed. Please try again." msgstr "Modifica password fallita. Prova ancora." -#: ../../mod/settings.php:265 +#: ../../mod/settings.php:266 msgid "Not valid email." msgstr "Email non valida." -#: ../../mod/settings.php:268 +#: ../../mod/settings.php:269 msgid "Protected email address. Cannot change to that email." msgstr "È un indirizzo email riservato. Non puoi sceglierlo." -#: ../../mod/settings.php:277 +#: ../../mod/settings.php:278 msgid "System failure storing new email. Please try again." msgstr "Errore di sistema. Non è stato possibile memorizzare il tuo messaggio, riprova per favore." -#: ../../mod/settings.php:518 +#: ../../mod/settings.php:519 msgid "Settings updated." msgstr "Impostazioni aggiornate." -#: ../../mod/settings.php:582 ../../mod/settings.php:608 -#: ../../mod/settings.php:644 +#: ../../mod/settings.php:583 ../../mod/settings.php:609 +#: ../../mod/settings.php:645 msgid "Add application" msgstr "Aggiungi una app" -#: ../../mod/settings.php:585 +#: ../../mod/settings.php:586 msgid "Name of application" msgstr "Nome dell'applicazione" -#: ../../mod/settings.php:586 ../../mod/settings.php:612 +#: ../../mod/settings.php:587 ../../mod/settings.php:613 msgid "Consumer Key" msgstr "Consumer Key" -#: ../../mod/settings.php:586 ../../mod/settings.php:587 +#: ../../mod/settings.php:587 ../../mod/settings.php:588 msgid "Automatically generated - change if desired. Max length 20" msgstr "Generato automaticamente - è possibile cambiarlo. Lunghezza massima 20" -#: ../../mod/settings.php:587 ../../mod/settings.php:613 +#: ../../mod/settings.php:588 ../../mod/settings.php:614 msgid "Consumer Secret" msgstr "Consumer Secret" -#: ../../mod/settings.php:588 ../../mod/settings.php:614 +#: ../../mod/settings.php:589 ../../mod/settings.php:615 msgid "Redirect" msgstr "Redirect" -#: ../../mod/settings.php:588 +#: ../../mod/settings.php:589 msgid "" "Redirect URI - leave blank unless your application specifically requires " "this" msgstr "URI di riderezione - lasciare vuoto se non richiesto specificamente dall'applicazione" -#: ../../mod/settings.php:589 ../../mod/settings.php:615 +#: ../../mod/settings.php:590 ../../mod/settings.php:616 msgid "Icon url" msgstr "Url icona" -#: ../../mod/settings.php:589 +#: ../../mod/settings.php:590 msgid "Optional" msgstr "Facoltativo" -#: ../../mod/settings.php:600 +#: ../../mod/settings.php:601 msgid "You can't edit this application." msgstr "Non puoi modificare questa applicazione." -#: ../../mod/settings.php:643 +#: ../../mod/settings.php:644 msgid "Connected Apps" msgstr "App connesse" -#: ../../mod/settings.php:647 +#: ../../mod/settings.php:648 msgid "Client key starts with" msgstr "La client key inizia con" -#: ../../mod/settings.php:648 +#: ../../mod/settings.php:649 msgid "No name" msgstr "Nessun nome" -#: ../../mod/settings.php:649 +#: ../../mod/settings.php:650 msgid "Remove authorization" msgstr "Revoca l'autorizzazione" -#: ../../mod/settings.php:662 +#: ../../mod/settings.php:663 msgid "No feature settings configured" msgstr "Non hai componenti aggiuntivi da personalizzare" -#: ../../mod/settings.php:669 +#: ../../mod/settings.php:670 msgid "Feature/Addon Settings" msgstr "Impostazioni dei componenti aggiuntivi" -#: ../../mod/settings.php:692 +#: ../../mod/settings.php:693 msgid "Account Settings" msgstr "Il tuo account" -#: ../../mod/settings.php:693 +#: ../../mod/settings.php:694 msgid "Enter New Password:" msgstr "Inserisci la nuova password:" -#: ../../mod/settings.php:694 +#: ../../mod/settings.php:695 msgid "Confirm New Password:" msgstr "Conferma la nuova password:" -#: ../../mod/settings.php:694 +#: ../../mod/settings.php:695 msgid "Leave password fields blank unless changing" msgstr "Lascia vuoti questi campi per non cambiare la password" -#: ../../mod/settings.php:696 ../../mod/settings.php:1027 +#: ../../mod/settings.php:697 ../../mod/settings.php:1028 msgid "Email Address:" msgstr "Indirizzo email:" -#: ../../mod/settings.php:698 +#: ../../mod/settings.php:699 msgid "Remove this account including all its channels" msgstr "Elimina questo account e tutti i suoi canali" -#: ../../mod/settings.php:714 +#: ../../mod/settings.php:715 msgid "Off" msgstr "Off" -#: ../../mod/settings.php:714 +#: ../../mod/settings.php:715 msgid "On" msgstr "On" -#: ../../mod/settings.php:721 +#: ../../mod/settings.php:722 msgid "Additional Features" msgstr "Funzionalità opzionali" -#: ../../mod/settings.php:745 +#: ../../mod/settings.php:746 msgid "Connector Settings" msgstr "Impostazioni del connettore" -#: ../../mod/settings.php:784 +#: ../../mod/settings.php:785 msgid "No special theme for mobile devices" msgstr "Nessun tema per dispositivi mobili" -#: ../../mod/settings.php:787 +#: ../../mod/settings.php:788 #, php-format msgid "%s - (Experimental)" msgstr "%s - (Sperimentale)" -#: ../../mod/settings.php:826 +#: ../../mod/settings.php:827 msgid "Display Settings" msgstr "Aspetto" -#: ../../mod/settings.php:827 +#: ../../mod/settings.php:828 msgid "Theme Settings" msgstr "Impostazioni del tema" -#: ../../mod/settings.php:828 +#: ../../mod/settings.php:829 msgid "Custom Theme Settings" msgstr "Personalizzazione del tema" -#: ../../mod/settings.php:829 +#: ../../mod/settings.php:830 msgid "Content Settings" msgstr "Impostazioni dei contenuti" -#: ../../mod/settings.php:835 +#: ../../mod/settings.php:836 msgid "Display Theme:" msgstr "Tema per schermi medio grandi:" -#: ../../mod/settings.php:836 +#: ../../mod/settings.php:837 msgid "Mobile Theme:" msgstr "Tema per dispositivi mobili:" -#: ../../mod/settings.php:837 +#: ../../mod/settings.php:838 msgid "Enable user zoom on mobile devices" msgstr "Attiva la possibilità di fare zoom sui dispositivi mobili" -#: ../../mod/settings.php:838 +#: ../../mod/settings.php:839 msgid "Update browser every xx seconds" msgstr "Aggiorna il browser ogni x secondi" -#: ../../mod/settings.php:838 +#: ../../mod/settings.php:839 msgid "Minimum of 10 seconds, no maximum" msgstr "Minimo 10 secondi, nessun limite massimo" -#: ../../mod/settings.php:839 +#: ../../mod/settings.php:840 msgid "Maximum number of conversations to load at any time:" msgstr "Massimo numero di conversazioni da mostrare ogni volta:" -#: ../../mod/settings.php:839 +#: ../../mod/settings.php:840 msgid "Maximum of 100 items" msgstr "Massimo 100" -#: ../../mod/settings.php:840 +#: ../../mod/settings.php:841 msgid "Show emoticons (smilies) as images" msgstr "Mostra le faccine (smilies) come immagini" -#: ../../mod/settings.php:841 +#: ../../mod/settings.php:842 msgid "Link post titles to source" msgstr "Il link del titolo di un post porta al sito originale" -#: ../../mod/settings.php:842 +#: ../../mod/settings.php:843 msgid "System Page Layout Editor - (advanced)" msgstr "Modifica i layout di sistema (avanzato)" -#: ../../mod/settings.php:845 +#: ../../mod/settings.php:846 msgid "Use blog/list mode on channel page" msgstr "Mostra il canale nella modalità blog" -#: ../../mod/settings.php:845 ../../mod/settings.php:846 +#: ../../mod/settings.php:846 ../../mod/settings.php:847 msgid "(comments displayed separately)" msgstr "(i commenti sono mostrati separatamente)" -#: ../../mod/settings.php:846 +#: ../../mod/settings.php:847 msgid "Use blog/list mode on matrix page" msgstr "Mostra la tua rete in modalità blog" -#: ../../mod/settings.php:847 +#: ../../mod/settings.php:848 msgid "Channel page max height of content (in pixels)" msgstr "Altezza massima dei contenuti del canale (in pixel)" -#: ../../mod/settings.php:847 ../../mod/settings.php:848 +#: ../../mod/settings.php:848 ../../mod/settings.php:849 msgid "click to expand content exceeding this height" msgstr "dovrai cliccare sul post per mostrare i contenuti di dimensioni maggiori" -#: ../../mod/settings.php:848 +#: ../../mod/settings.php:849 msgid "Matrix page max height of content (in pixels)" msgstr "Altezza massima dei contenuti della tua rete (in pixel)" -#: ../../mod/settings.php:882 +#: ../../mod/settings.php:883 msgid "Nobody except yourself" msgstr "Nessuno tranne te" -#: ../../mod/settings.php:883 +#: ../../mod/settings.php:884 msgid "Only those you specifically allow" msgstr "Solo chi riceve il mio permesso" -#: ../../mod/settings.php:884 +#: ../../mod/settings.php:885 msgid "Approved connections" msgstr "Contatti approvati" -#: ../../mod/settings.php:885 +#: ../../mod/settings.php:886 msgid "Any connections" msgstr "Tutti i contatti" -#: ../../mod/settings.php:886 +#: ../../mod/settings.php:887 msgid "Anybody on this website" msgstr "Chiunque su questo hub" -#: ../../mod/settings.php:887 +#: ../../mod/settings.php:888 msgid "Anybody in this network" msgstr "Chiunque su questa rete" -#: ../../mod/settings.php:888 +#: ../../mod/settings.php:889 msgid "Anybody authenticated" msgstr "Chiunque abbia effettuato l'accesso" -#: ../../mod/settings.php:889 +#: ../../mod/settings.php:890 msgid "Anybody on the internet" msgstr "Chiunque su internet" -#: ../../mod/settings.php:963 +#: ../../mod/settings.php:964 msgid "Publish your default profile in the network directory" msgstr "Mostra il mio profilo predefinito negli elenchi pubblici dei canali" -#: ../../mod/settings.php:968 +#: ../../mod/settings.php:969 msgid "Allow us to suggest you as a potential friend to new members?" msgstr "Vuoi essere suggerito come amico ai nuovi membri?" -#: ../../mod/settings.php:977 +#: ../../mod/settings.php:978 msgid "Your channel address is" msgstr "L'indirizzo del tuo canale è" -#: ../../mod/settings.php:1018 +#: ../../mod/settings.php:1019 msgid "Channel Settings" msgstr "Impostazioni del canale" -#: ../../mod/settings.php:1025 +#: ../../mod/settings.php:1026 msgid "Basic Settings" msgstr "Impostazioni di base" -#: ../../mod/settings.php:1028 +#: ../../mod/settings.php:1029 msgid "Your Timezone:" msgstr "Il tuo fuso orario:" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1030 msgid "Default Post Location:" msgstr "Località predefinita:" -#: ../../mod/settings.php:1029 +#: ../../mod/settings.php:1030 msgid "Geographical location to display on your posts" msgstr "La posizione geografica da mostrare sui tuoi post" -#: ../../mod/settings.php:1030 +#: ../../mod/settings.php:1031 msgid "Use Browser Location:" msgstr "Usa la località rilevata dal browser:" -#: ../../mod/settings.php:1032 +#: ../../mod/settings.php:1033 msgid "Adult Content" msgstr "Contenuto per adulti" -#: ../../mod/settings.php:1032 +#: ../../mod/settings.php:1033 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)" -#: ../../mod/settings.php:1034 +#: ../../mod/settings.php:1035 msgid "Security and Privacy Settings" msgstr "Impostazioni di sicurezza e privacy" -#: ../../mod/settings.php:1036 +#: ../../mod/settings.php:1037 msgid "Your permissions are already configured. Click to view/adjust" msgstr "I tuoi permessi sono già stati configurati. Clicca per vederli o modificarli" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1039 msgid "Hide my online presence" msgstr "Nascondi la mia presenza online" -#: ../../mod/settings.php:1038 +#: ../../mod/settings.php:1039 msgid "Prevents displaying in your profile that you are online" msgstr "Non mostrare sul tuo profilo quando sei online" -#: ../../mod/settings.php:1040 +#: ../../mod/settings.php:1041 msgid "Simple Privacy Settings:" msgstr "Impostazioni di privacy semplificate" -#: ../../mod/settings.php:1041 +#: ../../mod/settings.php:1042 msgid "" "Very Public - <em>extremely permissive (should be used with caution)</em>" msgstr "Tutto pubblico - <em>estremamente permissivo (da usare con cautela)</em>" -#: ../../mod/settings.php:1042 +#: ../../mod/settings.php:1043 msgid "" "Typical - <em>default public, privacy when desired (similar to social " "network permissions but with improved privacy)</em>" msgstr "Standard - <em>contenuti normalmente pubblici, ma anche privati se necessario (simile ai social network ma con privacy migliorata)</em>" -#: ../../mod/settings.php:1043 +#: ../../mod/settings.php:1044 msgid "Private - <em>default private, never open or public</em>" msgstr "Privato - <em>contenuti normalmente privati, nulla è aperto o pubblico</em>" -#: ../../mod/settings.php:1044 +#: ../../mod/settings.php:1045 msgid "Blocked - <em>default blocked to/from everybody</em>" msgstr "Bloccato - <em>bloccato in invio e ricezione dei contenuti</em>" -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1047 msgid "Allow others to tag your posts" msgstr "Permetti ad altri di taggare i tuoi post" -#: ../../mod/settings.php:1046 +#: ../../mod/settings.php:1047 msgid "" "Often used by the community to retro-actively flag inappropriate content" msgstr "Usato spesso dalla comunità per marcare contenuti inappropriati già esistenti" -#: ../../mod/settings.php:1048 +#: ../../mod/settings.php:1049 msgid "Advanced Privacy Settings" msgstr "Impostazioni di privacy avanzate" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1051 msgid "Expire other channel content after this many days" msgstr "Giorni dopo cui mettere in scadenza gli altri contenuti del canale" -#: ../../mod/settings.php:1050 +#: ../../mod/settings.php:1051 msgid "0 or blank prevents expiration" msgstr "Lascia vuoto oppure 0 per non impostare scadenze" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 msgid "Maximum Friend Requests/Day:" msgstr "Numero massimo giornaliero di richieste di amicizia:" -#: ../../mod/settings.php:1051 +#: ../../mod/settings.php:1052 msgid "May reduce spam activity" msgstr "Serve a ridurre lo spam" -#: ../../mod/settings.php:1052 +#: ../../mod/settings.php:1053 msgid "Default Post Permissions" msgstr "Permessi predefiniti per i post" -#: ../../mod/settings.php:1057 +#: ../../mod/settings.php:1058 msgid "Channel permissions category:" msgstr "Categorie di permessi dei canali:" -#: ../../mod/settings.php:1063 +#: ../../mod/settings.php:1064 msgid "Maximum private messages per day from unknown people:" msgstr "Numero massimo giornaliero di messaggi privati da utenti sconosciuti:" -#: ../../mod/settings.php:1063 +#: ../../mod/settings.php:1064 msgid "Useful to reduce spamming" msgstr "Serve e ridurre lo spam" -#: ../../mod/settings.php:1066 +#: ../../mod/settings.php:1067 msgid "Notification Settings" msgstr "Impostazioni di notifica" -#: ../../mod/settings.php:1067 +#: ../../mod/settings.php:1068 msgid "By default post a status message when:" msgstr "Pubblica un messaggio di stato quando:" -#: ../../mod/settings.php:1068 +#: ../../mod/settings.php:1069 msgid "accepting a friend request" msgstr "accetto una nuova amicizia" -#: ../../mod/settings.php:1069 +#: ../../mod/settings.php:1070 msgid "joining a forum/community" msgstr "entro a far parte di un forum" -#: ../../mod/settings.php:1070 +#: ../../mod/settings.php:1071 msgid "making an <em>interesting</em> profile change" msgstr "faccio un cambiamento <em>interessante</em> al mio profilo" -#: ../../mod/settings.php:1071 +#: ../../mod/settings.php:1072 msgid "Send a notification email when:" msgstr "Invia una email di notifica quando:" -#: ../../mod/settings.php:1072 +#: ../../mod/settings.php:1073 msgid "You receive a connection request" msgstr "Ricevi una richiesta di entrare in contatto" -#: ../../mod/settings.php:1073 +#: ../../mod/settings.php:1074 msgid "Your connections are confirmed" msgstr "I tuoi contatti sono confermati" -#: ../../mod/settings.php:1074 +#: ../../mod/settings.php:1075 msgid "Someone writes on your profile wall" msgstr "Qualcuno scrive sulla tua bacheca" -#: ../../mod/settings.php:1075 +#: ../../mod/settings.php:1076 msgid "Someone writes a followup comment" msgstr "Qualcuno scrive un commento dopo di te" -#: ../../mod/settings.php:1076 +#: ../../mod/settings.php:1077 msgid "You receive a private message" msgstr "Ricevi un messaggio privato" -#: ../../mod/settings.php:1077 +#: ../../mod/settings.php:1078 msgid "You receive a friend suggestion" msgstr "Ti viene suggerito un amico" -#: ../../mod/settings.php:1078 +#: ../../mod/settings.php:1079 msgid "You are tagged in a post" msgstr "Sei taggato in un post" -#: ../../mod/settings.php:1079 +#: ../../mod/settings.php:1080 msgid "You are poked/prodded/etc. in a post" msgstr "Ricevi un poke in un post" -#: ../../mod/settings.php:1082 +#: ../../mod/settings.php:1083 msgid "Show visual notifications including:" msgstr "Mostra queste notifiche a schermo:" -#: ../../mod/settings.php:1084 +#: ../../mod/settings.php:1085 msgid "Unseen matrix activity" msgstr "Nuove attività nella rete" -#: ../../mod/settings.php:1085 +#: ../../mod/settings.php:1086 msgid "Unseen channel activity" msgstr "Novità nei canali" -#: ../../mod/settings.php:1086 +#: ../../mod/settings.php:1087 msgid "Unseen private messages" msgstr "Nuovi messaggi privati" -#: ../../mod/settings.php:1086 ../../mod/settings.php:1091 -#: ../../mod/settings.php:1092 ../../mod/settings.php:1093 +#: ../../mod/settings.php:1087 ../../mod/settings.php:1092 +#: ../../mod/settings.php:1093 ../../mod/settings.php:1094 msgid "Recommended" msgstr "Consigliato" -#: ../../mod/settings.php:1087 +#: ../../mod/settings.php:1088 msgid "Upcoming events" msgstr "Prossimi eventi" -#: ../../mod/settings.php:1088 +#: ../../mod/settings.php:1089 msgid "Events today" msgstr "Eventi di oggi" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 msgid "Upcoming birthdays" msgstr "Prossimi compleanni" -#: ../../mod/settings.php:1089 +#: ../../mod/settings.php:1090 msgid "Not available in all themes" msgstr "Non disponibile in tutti i temi" -#: ../../mod/settings.php:1090 +#: ../../mod/settings.php:1091 msgid "System (personal) notifications" msgstr "Notifiche personali dal sistema" -#: ../../mod/settings.php:1091 +#: ../../mod/settings.php:1092 msgid "System info messages" msgstr "Notifiche di sistema" -#: ../../mod/settings.php:1092 +#: ../../mod/settings.php:1093 msgid "System critical alerts" msgstr "Avvisi critici di sistema" -#: ../../mod/settings.php:1093 +#: ../../mod/settings.php:1094 msgid "New connections" msgstr "Nuovi contatti" -#: ../../mod/settings.php:1094 +#: ../../mod/settings.php:1095 msgid "System Registrations" msgstr "Registrazioni" -#: ../../mod/settings.php:1095 +#: ../../mod/settings.php:1096 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" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1098 msgid "Notify me of events this many days in advance" msgstr "Giorni di anticipo per notificare gli eventi" -#: ../../mod/settings.php:1097 +#: ../../mod/settings.php:1098 msgid "Must be greater than 0" msgstr "Maggiore di 0" -#: ../../mod/settings.php:1099 +#: ../../mod/settings.php:1100 msgid "Advanced Account/Page Type Settings" msgstr "Impostazioni avanzate" -#: ../../mod/settings.php:1100 +#: ../../mod/settings.php:1101 msgid "Change the behaviour of this account for special situations" msgstr "Cambia il funzionamento di questo account per necessità particolari" -#: ../../mod/settings.php:1103 +#: ../../mod/settings.php:1104 msgid "" "Please enable expert mode (in <a href=\"settings/features\">Settings > " "Additional features</a>) to adjust!" msgstr "Abilita la modalità esperto per fare cambiamenti! (in <a href=\"settings/features\">Impostazioni > Funzionalità opzionali</a>)" -#: ../../mod/settings.php:1104 +#: ../../mod/settings.php:1105 msgid "Miscellaneous Settings" msgstr "Impostazioni varie" -#: ../../mod/settings.php:1105 +#: ../../mod/settings.php:1106 msgid "Default photo upload folder" msgstr "Cartella predefinita per le foto caricate" -#: ../../mod/settings.php:1106 +#: ../../mod/settings.php:1106 ../../mod/settings.php:1107 +msgid "%Y - current year, %m - current month" +msgstr "%Y - anno corrente, %m - mese corrente" + +#: ../../mod/settings.php:1107 msgid "Default file upload folder" msgstr "Cartella predefinita per i file caricati" -#: ../../mod/settings.php:1108 +#: ../../mod/settings.php:1109 msgid "Personal menu to display in your channel pages" msgstr "Menu personale da mostrare sulle pagine del tuo canale" -#: ../../mod/settings.php:1110 +#: ../../mod/settings.php:1111 msgid "Remove this channel." msgstr "Elimina questo canale." +#: ../../mod/settings.php:1112 +msgid "Firefox Share $Projectname provider" +msgstr "Funzionalità Firefox Share per $Projectname" + #: ../../mod/xchan.php:6 msgid "Xchan Lookup" msgstr "Ricerca canale" @@ -8298,46 +8310,76 @@ msgstr "Nessun contatto." msgid "Visit %s's profile [%s]" msgstr "Visita il profilo di %s [%s]" -#: ../../mod/locs.php:21 ../../mod/locs.php:49 +#: ../../mod/locs.php:21 ../../mod/locs.php:50 msgid "Location not found." msgstr "Indirizzo non trovato." -#: ../../mod/locs.php:57 +#: ../../mod/locs.php:58 msgid "Location lookup failed." msgstr "La ricerca dell'indirizzo è fallita." -#: ../../mod/locs.php:61 +#: ../../mod/locs.php:62 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." -#: ../../mod/locs.php:93 +#: ../../mod/locs.php:91 +msgid "Syncing locations" +msgstr "Sincronizzazione tra hub" + +#: ../../mod/locs.php:101 msgid "No locations found." msgstr "Nessun indirizzo trovato." -#: ../../mod/locs.php:104 +#: ../../mod/locs.php:112 msgid "Manage Channel Locations" msgstr "Modifica gli indirizzi del canale" -#: ../../mod/locs.php:105 +#: ../../mod/locs.php:113 msgid "Location (address)" msgstr "Indirizzo" -#: ../../mod/locs.php:106 +#: ../../mod/locs.php:114 msgid "Primary Location" msgstr "Indirizzo primario" -#: ../../mod/locs.php:107 +#: ../../mod/locs.php:115 msgid "Drop location" msgstr "Elimina un indirizzo" +#: ../../mod/locs.php:117 +msgid "Sync now" +msgstr "Sincronizza ora" + +#: ../../mod/locs.php:118 +msgid "Please wait several minutes between consecutive operations." +msgstr "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione." + +#: ../../mod/locs.php:119 +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 sui loro hub e rimuovendoli." + +#: ../../mod/locs.php:120 +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." + #: ../../mod/post.php:234 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." +#: ../../mod/ffsapi.php:8 +msgid "Share content from Firefox to $Projectname" +msgstr "Condividi i contenuti su $Projectname da Firefox" + +#: ../../mod/ffsapi.php:11 +msgid "Activate the Firefox $Projectname provider" +msgstr "Attiva Firefox Share per $Projectname" + #: ../../mod/setup.php:191 msgid "$Projectname Server - Setup" msgstr "Server $Projectname - Installazione" @@ -8951,7 +8993,7 @@ msgstr "Per esempio: pesca fotografia programmazione" #: ../../mod/profiles.php:700 msgid "Used in directory listings" -msgstr "Visibile sugli elenchi pubblici di canali" +msgstr "Visibile negli elenchi pubblici di canali" #: ../../mod/profiles.php:701 msgid "Tell us about yourself..." @@ -9033,19 +9075,19 @@ msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo." msgid "Visible To" msgstr "Visibile a" -#: ../../mod/rbmark.php:88 +#: ../../mod/rbmark.php:90 msgid "Select a bookmark folder" msgstr "Scegli una cartella di segnalibri" -#: ../../mod/rbmark.php:93 +#: ../../mod/rbmark.php:95 msgid "Save Bookmark" msgstr "Salva segnalibro" -#: ../../mod/rbmark.php:94 +#: ../../mod/rbmark.php:96 msgid "URL of bookmark" msgstr "URL del segnalibro" -#: ../../mod/rbmark.php:99 +#: ../../mod/rbmark.php:101 msgid "Or enter new bookmark folder name" msgstr "O inserisci il nome di una nuova cartella di segnalibri" diff --git a/view/it/hstrings.php b/view/it/hstrings.php index e69c42745..005de6e67 100644 --- a/view/it/hstrings.php +++ b/view/it/hstrings.php @@ -5,6 +5,173 @@ function string_plural_select_it($n){ return ($n != 1);; }} ; +$a->strings["photo"] = "la foto"; +$a->strings["event"] = "l'evento"; +$a->strings["channel"] = "il canale"; +$a->strings["status"] = "il messaggio di stato"; +$a->strings["comment"] = "il commento"; +$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; +$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; +$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; +$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; +$a->strings["poked"] = "ha ricevuto un poke"; +$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; +$a->strings["__ctx:title__ Likes"] = "Mi piace"; +$a->strings["__ctx:title__ Dislikes"] = "Non mi piace"; +$a->strings["__ctx:title__ Agree"] = "D'accordo"; +$a->strings["__ctx:title__ Disagree"] = "Non d'accordo"; +$a->strings["__ctx:title__ Abstain"] = "Astenuti"; +$a->strings["__ctx:title__ Attending"] = "Partecipano"; +$a->strings["__ctx:title__ Not attending"] = "Non partecipano"; +$a->strings["__ctx:title__ Might attend"] = "Forse partecipano"; +$a->strings["Select"] = "Scegli"; +$a->strings["Delete"] = "Elimina"; +$a->strings["Private Message"] = "Messaggio privato"; +$a->strings["Message signature validated"] = "Messaggio con firma verificata"; +$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta"; +$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; +$a->strings["Categories:"] = "Categorie:"; +$a->strings["Filed under:"] = "Classificato come:"; +$a->strings["from %s"] = "da %s"; +$a->strings["last edited: %s"] = "ultima modifica: %s"; +$a->strings["Expires: %s"] = "Scadenza: %s"; +$a->strings["View in context"] = "Vedi nel contesto"; +$a->strings["Please wait"] = "Attendere"; +$a->strings["remove"] = "rimuovi"; +$a->strings["Loading..."] = "Caricamento in corso..."; +$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; +$a->strings["View Source"] = "Vedi il sorgente"; +$a->strings["Follow Thread"] = "Segui la discussione"; +$a->strings["Stop Following"] = "Non seguire più la discussione"; +$a->strings["View Status"] = "Bacheca"; +$a->strings["View Profile"] = "Profilo"; +$a->strings["View Photos"] = "Foto"; +$a->strings["Activity/Posts"] = "Attività e Post"; +$a->strings["Connect"] = "Aggiungi"; +$a->strings["Edit Connection"] = "Modifica il contatto"; +$a->strings["Send PM"] = "Messaggio privato"; +$a->strings["Poke"] = "Poke"; +$a->strings["Unknown"] = "Sconosciuto"; +$a->strings["%s likes this."] = "Piace a %s."; +$a->strings["%s doesn't like this."] = "Non piace a %s."; +$a->strings["<span %1\$s>%2\$d people</span> like this."] = array( + 0 => "", + 1 => "Piace a <span %1\$s>%2\$d persone</span>.", +); +$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array( + 0 => "", + 1 => "Non piace a <span %1\$s>%2\$d persone</span>.", +); +$a->strings["and"] = "e"; +$a->strings[", and %d other people"] = array( + 0 => "", + 1 => "e altre %d persone", +); +$a->strings["%s like this."] = "Piace a %s."; +$a->strings["%s don't like this."] = "Non piace a %s."; +$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>"; +$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; +$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:"; +$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:"; +$a->strings["Tag term:"] = "Tag:"; +$a->strings["Save to Folder:"] = "Salva nella cartella:"; +$a->strings["Where are you right now?"] = "Dove sei ora?"; +$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; +$a->strings["Preview"] = "Anteprima"; +$a->strings["Share"] = "Condividi"; +$a->strings["Page link name"] = "Nome del link alla pagina"; +$a->strings["Post as"] = "Pubblica come "; +$a->strings["Bold"] = "Grassetto"; +$a->strings["Italic"] = "Corsivo"; +$a->strings["Underline"] = "Sottolineato"; +$a->strings["Quote"] = "Citazione"; +$a->strings["Code"] = "Codice"; +$a->strings["Upload photo"] = "Carica foto"; +$a->strings["upload photo"] = "carica foto"; +$a->strings["Attach file"] = "Allega file"; +$a->strings["attach file"] = "allega file"; +$a->strings["Insert web link"] = "Inserisci un indirizzo web"; +$a->strings["web link"] = "link web"; +$a->strings["Insert video link"] = "Inserisci l'indirizzo del video"; +$a->strings["video link"] = "link video"; +$a->strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio"; +$a->strings["audio link"] = "link audio"; +$a->strings["Set your location"] = "La tua località"; +$a->strings["set location"] = "la tua località"; +$a->strings["Toggle voting"] = "Abilita/disabilita il voto"; +$a->strings["Clear browser location"] = "Rimuovi la località data dal browser"; +$a->strings["clear location"] = "rimuovi la località"; +$a->strings["Title (optional)"] = "Titolo (facoltativo)"; +$a->strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; +$a->strings["Permission settings"] = "Permessi dei tuoi contatti"; +$a->strings["permissions"] = "permessi"; +$a->strings["Public post"] = "Post pubblico"; +$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; +$a->strings["Set expiration date"] = "Data di scadenza"; +$a->strings["Set publish date"] = "Data di uscita programmata"; +$a->strings["Encrypt text"] = "Cifratura del messaggio"; +$a->strings["OK"] = "OK"; +$a->strings["Cancel"] = "Annulla"; +$a->strings["Discover"] = "Scopri"; +$a->strings["Imported public streams"] = "Contenuti pubblici importati"; +$a->strings["Commented Order"] = "Ultimi commenti"; +$a->strings["Sort by Comment Date"] = "Per data del commento"; +$a->strings["Posted Order"] = "Ultimi post"; +$a->strings["Sort by Post Date"] = "Per data di creazione"; +$a->strings["Personal"] = "Personali"; +$a->strings["Posts that mention or involve you"] = "Post che ti riguardano"; +$a->strings["New"] = "Novità"; +$a->strings["Activity Stream - by date"] = "Elenco attività - per data"; +$a->strings["Starred"] = "Preferiti"; +$a->strings["Favourite Posts"] = "Post preferiti"; +$a->strings["Spam"] = "Spam"; +$a->strings["Posts flagged as SPAM"] = "Post marcati come spam"; +$a->strings["Channel"] = "Canale"; +$a->strings["Status Messages and Posts"] = "Post e messaggi di stato"; +$a->strings["About"] = "Informazioni"; +$a->strings["Profile Details"] = "Dettagli del profilo"; +$a->strings["Photos"] = "Foto"; +$a->strings["Photo Albums"] = "Album foto"; +$a->strings["Files"] = "Archivio file"; +$a->strings["Files and Storage"] = "Archivio file"; +$a->strings["Chatrooms"] = "Chat"; +$a->strings["Bookmarks"] = "Segnalibri"; +$a->strings["Saved Bookmarks"] = "Segnalibri salvati"; +$a->strings["Webpages"] = "Pagine web"; +$a->strings["Manage Webpages"] = "Gestisci le pagine web"; +$a->strings["View all"] = "Vedi tutto"; +$a->strings["__ctx:noun__ Like"] = array( + 0 => "Mi piace", + 1 => "Mi piace", +); +$a->strings["__ctx:noun__ Dislike"] = array( + 0 => "Non mi piace", + 1 => "Non mi piace", +); +$a->strings["__ctx:noun__ Attending"] = array( + 0 => "Partecipa", + 1 => "Partecipano", +); +$a->strings["__ctx:noun__ Not Attending"] = array( + 0 => "Non partecipa", + 1 => "Non partecipano", +); +$a->strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso", + 1 => "Indecisi", +); +$a->strings["__ctx:noun__ Agree"] = array( + 0 => "D'accordo", + 1 => "D'accordo", +); +$a->strings["__ctx:noun__ Disagree"] = array( + 0 => "Non d'accordo", + 1 => "Non d'accordo", +); +$a->strings["__ctx:noun__ Abstain"] = array( + 0 => "Astenuto", + 1 => "Astenuti", +); $a->strings["No username found in import file."] = "Impossibile trovare il nome utente nel file da importare."; $a->strings["Unable to create a unique channel address. Import failed."] = "Impossibile creare un indirizzo univoco per il canale. L'import è fallito."; $a->strings["Import completed."] = "L'importazione è terminata con successo."; @@ -15,8 +182,6 @@ $a->strings["Addressbook"] = "Rubrica"; $a->strings["Calendar"] = "Calendario"; $a->strings["Schedule Inbox"] = "Appuntamenti ricevuti"; $a->strings["Schedule Outbox"] = "Appuntamenti inviati"; -$a->strings["Unknown"] = "Sconosciuto"; -$a->strings["Files"] = "Archivio file"; $a->strings["Total"] = "Totale"; $a->strings["Shared"] = "Condiviso"; $a->strings["Create"] = "Crea"; @@ -26,7 +191,6 @@ $a->strings["Type"] = "Tipo"; $a->strings["Size"] = "Dimensione"; $a->strings["Last Modified"] = "Ultima modifica"; $a->strings["Edit"] = "Modifica"; -$a->strings["Delete"] = "Elimina"; $a->strings["You are using %1\$s of your available file storage."] = "Stai usando %1\$s dello spazio disponibile per i tuoi file."; $a->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%)"; $a->strings["WARNING:"] = "ATTENZIONE:"; @@ -121,7 +285,7 @@ $a->strings["Channel Sources"] = "Sorgenti del canale"; $a->strings["Automatically import channel content from other channels or feeds"] = "Importa automaticamente il contenuto del canale da altri canali o feed"; $a->strings["Even More Encryption"] = "Cifratura addizionale"; $a->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"; -$a->strings["Enable Voting Tools"] = "Abilita gli strumenti per votare"; +$a->strings["Enable Voting Tools"] = "Permetti i post con votazione"; $a->strings["Provide a class of post which others can vote on"] = "Rende possibile la creazione di post in cui sarà possibile votare"; $a->strings["Delayed Posting"] = "Pubblicazione ritardata"; $a->strings["Allow posts to be published at a later date"] = "Per scegliere una data e un'ora a cui far uscire i post"; @@ -257,7 +421,6 @@ $a->strings["public profile"] = "profilo pubblico"; $a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiato %2\$s in “%3\$s”"; $a->strings["Visit %1\$s's %2\$s"] = "Guarda %2\$s di %1\$s "; $a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha aggiornato %2\$s cambiando %3\$s."; -$a->strings["Connect"] = "Aggiungi"; $a->strings["New window"] = "Nuova finestra"; $a->strings["Open the selected location in a different window or browser tab"] = "Apri l'indirizzo selezionato in una nuova scheda o finestra"; $a->strings["User '%s' deleted"] = "Utente '%s' eliminato"; @@ -278,7 +441,6 @@ $a->strings["Collection is empty."] = "L'insieme di canali è vuoto."; $a->strings["Collection: %s"] = "Insieme: %s"; $a->strings["Connection: %s"] = "Contatto: %s"; $a->strings["Connection not found."] = "Contatto non trovato."; -$a->strings["Public Timeline"] = "Diario pubblico"; $a->strings["view full size"] = "guarda nelle dimensioni reali"; $a->strings["\$Projectname Notification"] = "Notifica \$Projectname"; $a->strings["\$projectname"] = "\$projectname"; @@ -299,13 +461,11 @@ $a->strings["Image exceeds website size limit of %lu bytes"] = "L'immagine super $a->strings["Image file is empty."] = "Il file dell'immagine è vuoto."; $a->strings["Unable to process image"] = "Impossibile elaborare l'immagine"; $a->strings["Photo storage failed."] = "Impossibile salvare la foto."; -$a->strings["Photo Albums"] = "Album foto"; $a->strings["Upload New Photos"] = "Carica nuove foto"; $a->strings["created a new post"] = "Ha creato un nuovo post"; $a->strings["commented on %s's post"] = "ha commentato il post di %s"; $a->strings["New Page"] = "Nuova pagina web"; $a->strings["View"] = "Guarda"; -$a->strings["Preview"] = "Anteprima"; $a->strings["Actions"] = "Azioni"; $a->strings["Page Link"] = "Link alla pagina"; $a->strings["Title"] = "Titolo"; @@ -376,29 +536,24 @@ $a->strings["Starts:"] = "Inizio:"; $a->strings["Finishes:"] = "Fine:"; $a->strings["Location:"] = "Luogo:"; $a->strings["This event has been added to your calendar."] = "Questo evento è stato aggiunto al tuo calendario"; -$a->strings["event"] = "l'evento"; $a->strings["Not specified"] = "Non specificato"; $a->strings["Needs Action"] = "Necessita di un intervento"; $a->strings["Completed"] = "Completato"; $a->strings["In Process"] = "In corso"; $a->strings["Cancelled"] = "Annullato"; $a->strings["Site Admin"] = "Amministrazione sito"; -$a->strings["Bookmarks"] = "Segnalibri"; $a->strings["Address Book"] = "Rubrica"; $a->strings["Login"] = "Accedi"; $a->strings["Channel Manager"] = "Gestione canali"; $a->strings["Grid"] = "Rete"; $a->strings["Settings"] = "Impostazioni"; -$a->strings["Webpages"] = "Pagine web"; $a->strings["Channel Home"] = "Bacheca del canale"; $a->strings["Profile"] = "Profilo"; -$a->strings["Photos"] = "Foto"; $a->strings["Events"] = "Eventi"; $a->strings["Directory"] = "Elenchi pubblici dei canali"; $a->strings["Help"] = "Guida"; $a->strings["Mail"] = "Messaggi"; $a->strings["Mood"] = "Umore"; -$a->strings["Poke"] = "Poke"; $a->strings["Chat"] = "Chat"; $a->strings["Search"] = "Cerca"; $a->strings["Probe"] = "Diagnostica"; @@ -412,21 +567,6 @@ $a->strings["Profile Photo"] = "Foto del profilo"; $a->strings["Update"] = "Aggiorna"; $a->strings["Install"] = "Installa"; $a->strings["Purchase"] = "Acquista"; -$a->strings["Item was not found."] = "Elemento non trovato."; -$a->strings["No source file."] = "Nessun file di origine."; -$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; -$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; -$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; -$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; -$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; -$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; -$a->strings["Path not available."] = "Percorso non disponibile."; -$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; -$a->strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; -$a->strings["Path not found."] = "Percorso del file non trovato."; -$a->strings["mkdir failed."] = "mkdir fallito."; -$a->strings["database storage failed."] = "scrittura su database fallita."; -$a->strings["Empty path"] = "La posizione è vuota"; $a->strings["Logged out."] = "Uscita effettuata."; $a->strings["Failed authentication"] = "Autenticazione fallita"; $a->strings["Login failed."] = "Accesso fallito."; @@ -466,8 +606,6 @@ $a->strings["Name:"] = "Nome:"; $a->strings["Photo:"] = "Foto:"; $a->strings["Please visit %s to approve or reject the suggestion."] = "Visita %s per approvare o rifiutare il suggerimento."; $a->strings["[Hubzilla:Notify]"] = "[Hubzilla]"; -$a->strings["Private Message"] = "Messaggio privato"; -$a->strings["Select"] = "Scegli"; $a->strings["Save to Folder"] = "Salva nella cartella"; $a->strings["I will attend"] = "Parteciperò"; $a->strings["I will not attend"] = "Non parteciperò"; @@ -475,21 +613,10 @@ $a->strings["I might attend"] = "Forse parteciperò"; $a->strings["I agree"] = "Sono d'accordo"; $a->strings["I disagree"] = "Non sono d'accordo"; $a->strings["I abstain"] = "Mi astengo"; -$a->strings["View all"] = "Vedi tutto"; -$a->strings["__ctx:noun__ Like"] = array( - 0 => "Mi piace", - 1 => "Mi piace", -); -$a->strings["__ctx:noun__ Dislike"] = array( - 0 => "Non mi piace", - 1 => "Non mi piace", -); $a->strings["Add Star"] = "Aggiungi ai preferiti"; $a->strings["Remove Star"] = "Rimuovi dai preferiti"; $a->strings["Toggle Star Status"] = "Attiva/disattiva preferito"; $a->strings["starred"] = "preferito"; -$a->strings["Message signature validated"] = "Messaggio con firma verificata"; -$a->strings["Message signature incorrect"] = "Massaggio con firma non corretta"; $a->strings["Add Tag"] = "Aggiungi un tag"; $a->strings["I like this (toggle)"] = "Attiva/disattiva Mi piace"; $a->strings["like"] = "mi piace"; @@ -507,100 +634,27 @@ $a->strings["via"] = "via"; $a->strings["Wall-to-Wall"] = "Da bacheca a bacheca"; $a->strings["via Wall-To-Wall:"] = "da bacheca a bacheca:"; $a->strings["Delivery Report"] = "Rapporto di trasmissione"; -$a->strings["from %s"] = "da %s"; -$a->strings["last edited: %s"] = "ultima modifica: %s"; -$a->strings["Expires: %s"] = "Scadenza: %s"; $a->strings["Save Bookmarks"] = "Salva segnalibro"; $a->strings["Add to Calendar"] = "Aggiungi al calendario"; $a->strings["Mark all seen"] = "Marca tutto come letto"; $a->strings["__ctx:noun__ Likes"] = "Mi piace"; $a->strings["__ctx:noun__ Dislikes"] = "Non mi piace"; -$a->strings["Please wait"] = "Attendere"; $a->strings["This is you"] = "Questo sei tu"; -$a->strings["Bold"] = "Grassetto"; -$a->strings["Italic"] = "Corsivo"; -$a->strings["Underline"] = "Sottolineato"; -$a->strings["Quote"] = "Citazione"; -$a->strings["Code"] = "Codice"; $a->strings["Image"] = "Immagine"; $a->strings["Insert Link"] = "Collegamento"; $a->strings["Video"] = "Video"; -$a->strings["Encrypt text"] = "Cifratura del messaggio"; -$a->strings["prev"] = "prec"; -$a->strings["first"] = "inizio"; -$a->strings["last"] = "fine"; -$a->strings["next"] = "succ"; -$a->strings["older"] = "più recenti"; -$a->strings["newer"] = "più nuovi"; -$a->strings["No connections"] = "Nessun contatto"; -$a->strings["%d Connection"] = array( - 0 => "%d contatto", - 1 => "%d contatti", -); -$a->strings["View Connections"] = "Elenco contatti"; -$a->strings["Save"] = "Salva"; -$a->strings["poke"] = "poke"; -$a->strings["poked"] = "ha ricevuto un poke"; -$a->strings["ping"] = "ping"; -$a->strings["pinged"] = "ha ricevuto un ping"; -$a->strings["prod"] = "spintone"; -$a->strings["prodded"] = "ha ricevuto uno spintone"; -$a->strings["slap"] = "schiaffo"; -$a->strings["slapped"] = "ha ricevuto uno schiaffo"; -$a->strings["finger"] = "finger"; -$a->strings["fingered"] = "ha ricevuto un finger"; -$a->strings["rebuff"] = "rifiuto"; -$a->strings["rebuffed"] = "ha ricevuto un rifiuto"; -$a->strings["happy"] = "felice"; -$a->strings["sad"] = "triste"; -$a->strings["mellow"] = "calmo"; -$a->strings["tired"] = "stanco"; -$a->strings["perky"] = "vivace"; -$a->strings["angry"] = "arrabbiato"; -$a->strings["stupified"] = "stordito"; -$a->strings["puzzled"] = "confuso"; -$a->strings["interested"] = "attento"; -$a->strings["bitter"] = "amaro"; -$a->strings["cheerful"] = "allegro"; -$a->strings["alive"] = "vivace"; -$a->strings["annoyed"] = "seccato"; -$a->strings["anxious"] = "ansioso"; -$a->strings["cranky"] = "irritabile"; -$a->strings["disturbed"] = "turbato"; -$a->strings["frustrated"] = "frustrato"; -$a->strings["depressed"] = "in depressione"; -$a->strings["motivated"] = "motivato"; -$a->strings["relaxed"] = "rilassato"; -$a->strings["surprised"] = "sorpreso"; -$a->strings["May"] = "maggio"; -$a->strings["Unknown Attachment"] = "Allegato non riconoscuto"; -$a->strings["Attachment"] = "Allegato"; -$a->strings["Size Unknown"] = "Dimensioni non note"; -$a->strings["remove category"] = "rimuovi la categoria"; -$a->strings["remove from file"] = "rimuovi dal file"; -$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; -$a->strings["Link to Source"] = "Link al sito d'origine"; -$a->strings["default"] = "predefinito"; -$a->strings["Page layout"] = "Layout della pagina"; -$a->strings["You can create your own with the layouts tool"] = "Con la configurazione del layout puoi crearne uno tuo"; -$a->strings["Page content type"] = "Tipo di contenuto della pagina"; -$a->strings["Select an alternate language"] = "Seleziona una lingua diversa"; -$a->strings["photo"] = "la foto"; -$a->strings["status"] = "il messaggio di stato"; -$a->strings["comment"] = "il commento"; -$a->strings["activity"] = "l'attività"; -$a->strings["Design Tools"] = "Strumenti di design"; -$a->strings["Blocks"] = "Riquadri"; -$a->strings["Menus"] = "Menù"; -$a->strings["Layouts"] = "Layout"; -$a->strings["Pages"] = "Pagine"; +$a->strings["Invalid data packet"] = "Dati ricevuti non validi"; +$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; +$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; +$a->strings["invalid target signature"] = "la firma ricevuta non è valida"; +$a->strings["Public Timeline"] = "Diario pubblico"; $a->strings["Image/photo"] = "Immagine"; $a->strings["Encrypted content"] = "Contenuto cifrato"; $a->strings["Install %s element: "] = "Installa l'elemento %s:"; $a->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."; $a->strings["webpage"] = "pagina web"; $a->strings["layout"] = "layout"; -$a->strings["block"] = "riquadro"; +$a->strings["block"] = "block"; $a->strings["menu"] = "menu"; $a->strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s ha scritto %2\$s %3\$s"; $a->strings["post"] = "il post"; @@ -663,10 +717,6 @@ $a->strings["Edit collection"] = "Modifica l'insieme di canali"; $a->strings["Add new collection"] = "Nuovo insieme"; $a->strings["Channels not in any collection"] = "Canali che non sono in un insieme"; $a->strings["add"] = "aggiungi"; -$a->strings["Invalid data packet"] = "Dati ricevuti non validi"; -$a->strings["Unable to verify channel signature"] = "Impossibile verificare la firma elettronica del canale"; -$a->strings["Unable to verify site signature for %s"] = "Impossibile verificare la firma elettronica del sito %s"; -$a->strings["invalid target signature"] = "la firma ricevuta non è valida"; $a->strings["No recipient provided."] = "Devi scegliere un destinatario."; $a->strings["[no subject]"] = "[nessun titolo]"; $a->strings["Unable to determine sender."] = "Impossibile determinare il mittente."; @@ -728,8 +778,6 @@ $a->strings["Love/Romance:"] = "Amore:"; $a->strings["Work/employment:"] = "Lavoro:"; $a->strings["School/education:"] = "Scuola:"; $a->strings["Like this thing"] = "Mi piace"; -$a->strings["Attachments:"] = "Allegati:"; -$a->strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; $a->strings["Tags"] = "Tag"; $a->strings["Keywords"] = "Parole chiave"; $a->strings["have"] = "ho"; @@ -738,134 +786,23 @@ $a->strings["want"] = "voglio"; $a->strings["wants"] = "vuole"; $a->strings["likes"] = "gli piace"; $a->strings["dislikes"] = "non gli piace"; -$a->strings["channel"] = "il canale"; -$a->strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s piace %3\$s di %2\$s"; -$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s non piace %3\$s di %2\$s"; -$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s adesso è connesso con %2\$s"; -$a->strings["%1\$s poked %2\$s"] = "%1\$s ha mandato un poke a %2\$s"; -$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s è %2\$s"; -$a->strings["__ctx:title__ Likes"] = "Mi piace"; -$a->strings["__ctx:title__ Dislikes"] = "Non mi piace"; -$a->strings["__ctx:title__ Agree"] = "D'accordo"; -$a->strings["__ctx:title__ Disagree"] = "Non d'accordo"; -$a->strings["__ctx:title__ Abstain"] = "Astenuti"; -$a->strings["__ctx:title__ Attending"] = "Partecipano"; -$a->strings["__ctx:title__ Not attending"] = "Non partecipano"; -$a->strings["__ctx:title__ Might attend"] = "Forse partecipano"; -$a->strings["View %s's profile @ %s"] = "Vedi il profilo di %s @ %s"; -$a->strings["Categories:"] = "Categorie:"; -$a->strings["Filed under:"] = "Classificato come:"; -$a->strings["View in context"] = "Vedi nel contesto"; -$a->strings["remove"] = "rimuovi"; -$a->strings["Loading..."] = "Caricamento in corso..."; -$a->strings["Delete Selected Items"] = "Elimina gli oggetti selezionati"; -$a->strings["View Source"] = "Vedi il sorgente"; -$a->strings["Follow Thread"] = "Segui la discussione"; -$a->strings["View Status"] = "Stato attuale"; -$a->strings["View Profile"] = "Profilo"; -$a->strings["View Photos"] = "Foto"; -$a->strings["Activity/Posts"] = "Attività e Post"; -$a->strings["Edit Connection"] = "Modifica il contatto"; -$a->strings["Send PM"] = "Messaggio privato"; -$a->strings["%s likes this."] = "Piace a %s."; -$a->strings["%s doesn't like this."] = "Non piace a %s."; -$a->strings["<span %1\$s>%2\$d people</span> like this."] = array( - 0 => "", - 1 => "Piace a <span %1\$s>%2\$d persone</span>.", -); -$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array( - 0 => "", - 1 => "Non piace a <span %1\$s>%2\$d persone</span>.", -); -$a->strings["and"] = "e"; -$a->strings[", and %d other people"] = array( - 0 => "", - 1 => "e altre %d persone", -); -$a->strings["%s like this."] = "Piace a %s."; -$a->strings["%s don't like this."] = "Non piace a %s."; -$a->strings["Visible to <strong>everybody</strong>"] = "Visibile a <strong>tutti</strong>"; -$a->strings["Please enter a link URL:"] = "Inserisci l'indirizzo del link:"; -$a->strings["Please enter a video link/URL:"] = "Inserisci l'indirizzo del video:"; -$a->strings["Please enter an audio link/URL:"] = "Inserisci l'indirizzo dell'audio:"; -$a->strings["Tag term:"] = "Tag:"; -$a->strings["Save to Folder:"] = "Salva nella cartella:"; -$a->strings["Where are you right now?"] = "Dove sei ora?"; -$a->strings["Expires YYYY-MM-DD HH:MM"] = "Scade il YYYY-MM-DD HH:MM"; -$a->strings["Share"] = "Condividi"; -$a->strings["Page link name"] = "Nome del link alla pagina"; -$a->strings["Post as"] = "Pubblica come "; -$a->strings["Upload photo"] = "Carica foto"; -$a->strings["upload photo"] = "carica foto"; -$a->strings["Attach file"] = "Allega file"; -$a->strings["attach file"] = "allega file"; -$a->strings["Insert web link"] = "Inserisci un indirizzo web"; -$a->strings["web link"] = "link web"; -$a->strings["Insert video link"] = "Inserisci l'indirizzo del video"; -$a->strings["video link"] = "link video"; -$a->strings["Insert audio link"] = "Inserisci l'indirizzo dell'audio"; -$a->strings["audio link"] = "link audio"; -$a->strings["Set your location"] = "La tua località"; -$a->strings["set location"] = "la tua località"; -$a->strings["Toggle voting"] = "Abilita/disabilita il voto"; -$a->strings["Clear browser location"] = "Rimuovi la località data dal browser"; -$a->strings["clear location"] = "rimuovi la località"; -$a->strings["Title (optional)"] = "Titolo (facoltativo)"; -$a->strings["Categories (optional, comma-separated list)"] = "Categorie (facoltative, lista separata da virgole)"; -$a->strings["Permission settings"] = "Permessi dei tuoi contatti"; -$a->strings["permissions"] = "permessi"; -$a->strings["Public post"] = "Post pubblico"; -$a->strings["Example: bob@example.com, mary@example.com"] = "Per esempio: mario@esempio.com, simona@esempio.com"; -$a->strings["Set expiration date"] = "Data di scadenza"; -$a->strings["Set publish date"] = "Data di uscita programmata"; -$a->strings["OK"] = "OK"; -$a->strings["Cancel"] = "Annulla"; -$a->strings["Discover"] = "Scopri"; -$a->strings["Imported public streams"] = "Contenuti pubblici importati"; -$a->strings["Commented Order"] = "Ultimi commenti"; -$a->strings["Sort by Comment Date"] = "Per data del commento"; -$a->strings["Posted Order"] = "Ultimi post"; -$a->strings["Sort by Post Date"] = "Per data di creazione"; -$a->strings["Personal"] = "Personali"; -$a->strings["Posts that mention or involve you"] = "Post che ti riguardano"; -$a->strings["New"] = "Novità"; -$a->strings["Activity Stream - by date"] = "Elenco attività - per data"; -$a->strings["Starred"] = "Preferiti"; -$a->strings["Favourite Posts"] = "Post preferiti"; -$a->strings["Spam"] = "Spam"; -$a->strings["Posts flagged as SPAM"] = "Post marcati come spam"; -$a->strings["Channel"] = "Canale"; -$a->strings["Status Messages and Posts"] = "Post e messaggi di stato"; -$a->strings["About"] = "Informazioni"; -$a->strings["Profile Details"] = "Dettagli del profilo"; -$a->strings["Files and Storage"] = "Archivio file"; -$a->strings["Chatrooms"] = "Chat"; -$a->strings["Saved Bookmarks"] = "Segnalibri salvati"; -$a->strings["Manage Webpages"] = "Gestisci le pagine web"; -$a->strings["__ctx:noun__ Attending"] = array( - 0 => "Partecipa", - 1 => "Partecipano", -); -$a->strings["__ctx:noun__ Not Attending"] = array( - 0 => "Non partecipa", - 1 => "Non partecipano", -); -$a->strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso", - 1 => "Indecisi", -); -$a->strings["__ctx:noun__ Agree"] = array( - 0 => "D'accordo", - 1 => "D'accordo", -); -$a->strings["__ctx:noun__ Disagree"] = array( - 0 => "Non d'accordo", - 1 => "Non d'accordo", -); -$a->strings["__ctx:noun__ Abstain"] = array( - 0 => "Astenuto", - 1 => "Astenuti", -); +$a->strings["Item was not found."] = "Elemento non trovato."; +$a->strings["No source file."] = "Nessun file di origine."; +$a->strings["Cannot locate file to replace"] = "Il file da sostituire non è stato trovato"; +$a->strings["Cannot locate file to revise/update"] = "Il file da aggiornare non è stato trovato"; +$a->strings["File exceeds size limit of %d"] = "Il file supera la dimensione massima di %d"; +$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Hai raggiunto il limite complessivo di %1$.0f Mbytes per gli allegati."; +$a->strings["File upload failed. Possible system limit or action terminated."] = "Caricamento file fallito, potrebbe essere stato interrotto o potrebbe aver superato lo spazio assegnato."; +$a->strings["Stored file could not be verified. Upload failed."] = "Il file non può essere verificato. Caricamento fallito."; +$a->strings["Path not available."] = "Percorso non disponibile."; +$a->strings["Empty pathname"] = "Il percorso del file è vuoto"; +$a->strings["duplicate filename or path"] = "il file o il percorso del file è duplicato"; +$a->strings["Path not found."] = "Percorso del file non trovato."; +$a->strings["mkdir failed."] = "mkdir fallito."; +$a->strings["database storage failed."] = "scrittura su database fallita."; +$a->strings["Empty path"] = "La posizione è vuota"; +$a->strings["Attachments:"] = "Allegati:"; +$a->strings["\$Projectname event notification:"] = "Notifica evento \$Projectname:"; $a->strings["Apps"] = "App"; $a->strings["System"] = "Sistema"; $a->strings["Create Personal App"] = "Crea app personale"; @@ -878,6 +815,7 @@ $a->strings["Add New Connection"] = "Aggiungi un contatto"; $a->strings["Enter the channel address"] = "Scrivi l'indirizzo del canale"; $a->strings["Example: bob@example.com, http://example.com/barbara"] = "Per esempio: mario@pippo.it oppure http://pluto.com/barbara"; $a->strings["Notes"] = "Note"; +$a->strings["Save"] = "Salva"; $a->strings["Remove term"] = "Rimuovi termine"; $a->strings["Archives"] = "Archivi"; $a->strings["Me"] = "Me"; @@ -904,7 +842,6 @@ $a->strings["Received Messages"] = "Ricevuti"; $a->strings["Sent Messages"] = "Inviati"; $a->strings["No messages."] = "Nessun messaggio."; $a->strings["Delete conversation"] = "Elimina la conversazione"; -$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i"; $a->strings["Chat Rooms"] = "Chat"; $a->strings["Bookmarked Chatrooms"] = "Chat nei segnalibri"; $a->strings["Suggested Chatrooms"] = "Chat suggerite"; @@ -931,6 +868,68 @@ $a->strings["Logs"] = "Log"; $a->strings["Admin"] = "Amministrazione"; $a->strings["Plugin Features"] = "Plugin"; $a->strings["User registrations waiting for confirmation"] = "Registrazioni in attesa"; +$a->strings["prev"] = "prec"; +$a->strings["first"] = "inizio"; +$a->strings["last"] = "fine"; +$a->strings["next"] = "succ"; +$a->strings["older"] = "più recenti"; +$a->strings["newer"] = "più nuovi"; +$a->strings["No connections"] = "Nessun contatto"; +$a->strings["%d Connection"] = array( + 0 => "%d contatto", + 1 => "%d contatti", +); +$a->strings["View Connections"] = "Elenco contatti"; +$a->strings["poke"] = "poke"; +$a->strings["ping"] = "ping"; +$a->strings["pinged"] = "ha ricevuto un ping"; +$a->strings["prod"] = "spintone"; +$a->strings["prodded"] = "ha ricevuto uno spintone"; +$a->strings["slap"] = "schiaffo"; +$a->strings["slapped"] = "ha ricevuto uno schiaffo"; +$a->strings["finger"] = "finger"; +$a->strings["fingered"] = "ha ricevuto un finger"; +$a->strings["rebuff"] = "rifiuto"; +$a->strings["rebuffed"] = "ha ricevuto un rifiuto"; +$a->strings["happy"] = "felice"; +$a->strings["sad"] = "triste"; +$a->strings["mellow"] = "calmo"; +$a->strings["tired"] = "stanco"; +$a->strings["perky"] = "vivace"; +$a->strings["angry"] = "arrabbiato"; +$a->strings["stupified"] = "stordito"; +$a->strings["puzzled"] = "confuso"; +$a->strings["interested"] = "attento"; +$a->strings["bitter"] = "amaro"; +$a->strings["cheerful"] = "allegro"; +$a->strings["alive"] = "vivace"; +$a->strings["annoyed"] = "seccato"; +$a->strings["anxious"] = "ansioso"; +$a->strings["cranky"] = "irritabile"; +$a->strings["disturbed"] = "turbato"; +$a->strings["frustrated"] = "frustrato"; +$a->strings["depressed"] = "in depressione"; +$a->strings["motivated"] = "motivato"; +$a->strings["relaxed"] = "rilassato"; +$a->strings["surprised"] = "sorpreso"; +$a->strings["May"] = "maggio"; +$a->strings["Unknown Attachment"] = "Allegato non riconoscuto"; +$a->strings["unknown"] = "sconosciuta"; +$a->strings["remove category"] = "rimuovi la categoria"; +$a->strings["remove from file"] = "rimuovi dal file"; +$a->strings["Click to open/close"] = "Clicca per aprire/chiudere"; +$a->strings["Link to Source"] = "Link al sito d'origine"; +$a->strings["default"] = "predefinito"; +$a->strings["Page layout"] = "Layout della pagina"; +$a->strings["You can create your own with the layouts tool"] = "Con la configurazione del layout puoi crearne uno tuo"; +$a->strings["Page content type"] = "Tipo di contenuto della pagina"; +$a->strings["Select an alternate language"] = "Seleziona una lingua diversa"; +$a->strings["activity"] = "l'attività"; +$a->strings["Design Tools"] = "Strumenti di design"; +$a->strings["Blocks"] = "Block"; +$a->strings["Menus"] = "Menù"; +$a->strings["Layouts"] = "Layout"; +$a->strings["Pages"] = "Pagine"; $a->strings["Logout"] = "Esci"; $a->strings["End this session"] = "Chiudi questa sessione"; $a->strings["Home"] = "Bacheca"; @@ -975,7 +974,7 @@ $a->strings["Account/Channel Settings"] = "Impostazioni dell'account e del canal $a->strings["Site Setup and Configuration"] = "Installazione e configurazione del sito"; $a->strings["@name, #tag, ?doc, content"] = "@nome, #tag, ?guida, contenuto"; $a->strings["Please wait..."] = "Attendere..."; -$a->strings["Directory Options"] = "Opzioni per elenchi pubblici"; +$a->strings["Directory Options"] = "Visibilità negli elenchi pubblici"; $a->strings["Safe Mode"] = "Modalità SafeSearch"; $a->strings["No"] = "No"; $a->strings["Yes"] = "Si"; @@ -1226,27 +1225,6 @@ $a->strings["Website:"] = "Sito web:"; $a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canale remoto [%s] (non ancora conosciuto da questo sito)"; $a->strings["Rating (this information is public)"] = "Valutazione (visibile a tutti)"; $a->strings["Optionally explain your rating (this information is public)"] = "Commento alla valutazione (facoltativo, visibile a tutti)"; -$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; -$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; -$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; -$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; -$a->strings["Messages"] = "Messaggi"; -$a->strings["Message recalled."] = "Messaggio revocato."; -$a->strings["Conversation removed."] = "Conversazione rimossa."; -$a->strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; -$a->strings["Send Private Message"] = "Invia un messaggio privato"; -$a->strings["To:"] = "A:"; -$a->strings["Subject:"] = "Oggetto:"; -$a->strings["Your message:"] = "Il tuo messaggio:"; -$a->strings["Send"] = "Invia"; -$a->strings["Delete message"] = "Elimina il messaggio"; -$a->strings["Delivery report"] = "Rapporto di trasmissione"; -$a->strings["Recall message"] = "Revoca il messaggio"; -$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; -$a->strings["Delete Conversation"] = "Elimina la conversazione"; -$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente."; -$a->strings["Send Reply"] = "Invia la risposta"; -$a->strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; $a->strings["Page owner information could not be retrieved."] = "Impossibile ottenere informazioni sul proprietario della pagina."; $a->strings["Album not found."] = "Album non trovato."; $a->strings["Delete Album"] = "Elimina album"; @@ -1303,12 +1281,12 @@ $a->strings["mail recalled"] = "messaggio richiamato dal mittente"; $a->strings["duplicate mail received"] = "ricevuto messaggio duplicato"; $a->strings["mail delivered"] = "messaggio recapitato"; $a->strings["Item not found"] = "Elemento non trovato"; -$a->strings["Delete block?"] = "Vuoi eliminare questo riquadro?"; +$a->strings["Delete block?"] = "Vuoi eliminare questo block?"; $a->strings["Insert YouTube video"] = "Inserisci video da YouTube"; $a->strings["Insert Vorbis [.ogg] video"] = "Inserisci video Vorbis [.ogg]"; $a->strings["Insert Vorbis [.ogg] audio"] = "Inserisci audio Vorbis [.ogg]"; -$a->strings["Edit Block"] = "Modifica il riquadro"; -$a->strings["This directory server requires an access token"] = "Questo server di elenchi pubblici necessita di un token di autenticazione"; +$a->strings["Edit Block"] = "Modifica il block"; +$a->strings["This directory server requires an access token"] = "Questo directory server necessita di un token di autenticazione"; $a->strings["Item is not editable"] = "L'elemento non è modificabile"; $a->strings["Delete item?"] = "Eliminare questo elemento?"; $a->strings["Edit post"] = "Modifica post"; @@ -1376,11 +1354,13 @@ $a->strings["Check to block public access to all otherwise public personal pages $a->strings["Verify Email Addresses"] = "Verifica l'indirizzo email"; $a->strings["Check to verify email addresses used in account registration (recommended)."] = "Attiva per richiedere la verifica degli indirizzi email dei nuovi utenti (consigliato)."; $a->strings["Force publish"] = "Forza la publicazione del profilo"; -$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per mostrare negli elenchi pubblici <strong>tutti</strong> i profili registrati su questo sito."; +$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "Seleziona per pubblicare sui directory server <strong>tutti</strong> i profili registrati su questo sito."; $a->strings["Disable discovery tab"] = "Disabilita la funzione 'scopri'"; $a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Nell'area della rete personale non comparirà più la scheda con i contenuti acquisiti da altri siti."; $a->strings["login on Homepage"] = "Mostra il login sulla homepage"; $a->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."; +$a->strings["Directory Server URL"] = "URL del directory server"; +$a->strings["Default directory server"] = "Directory server predefinito"; $a->strings["Proxy user"] = "Utente proxy"; $a->strings["Proxy URL"] = "URL proxy"; $a->strings["Network timeout"] = "Timeout rete"; @@ -1550,6 +1530,7 @@ $a->strings["Layout not found."] = "Layout non trovato."; $a->strings["Module Name:"] = "Nome del modulo:"; $a->strings["Layout Help"] = "Guida al layout"; $a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s sta seguendo %3\$s di %2\$s"; +$a->strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s non segue più %3\$s di %2\$s"; $a->strings["No valid account found."] = "Nessun account valido trovato."; $a->strings["Password reset request issued. Check your email."] = "La richiesta per reimpostare la password è stata inviata. Controlla la tua email."; $a->strings["Site Member (%s)"] = "Utente del sito (%s)"; @@ -1656,8 +1637,8 @@ $a->strings["Please enter your invitation code"] = "Inserisci il codice dell'inv $a->strings["Your email address"] = "Il tuo indirizzo email"; $a->strings["Choose a password"] = "Scegli una password"; $a->strings["Please re-enter your password"] = "Ripeti la password per verifica"; -$a->strings["Block Name"] = "Nome del riquadro"; -$a->strings["Block Title"] = "Titolo del riquadro"; +$a->strings["Block Name"] = "Nome del block"; +$a->strings["Block Title"] = "Titolo del block"; $a->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."; $a->strings["Remove This Account"] = "Elimina questo account"; $a->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."; @@ -1760,12 +1741,33 @@ $a->strings["%d message sent."] = array( $a->strings["You have no more invitations available"] = "Non hai altri inviti disponibili"; $a->strings["Send invitations"] = "Spedisci inviti"; $a->strings["Enter email addresses, one per line:"] = "Inserisci gli indirizzi email, uno per riga:"; +$a->strings["Your message:"] = "Il tuo messaggio:"; $a->strings["Please join my community on \$Projectname."] = "Entra nella mia comunità su \$Projectname."; $a->strings["You will need to supply this invitation code: "] = "Dovrai fornire questo codice di invito:"; $a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registrati su qualsiasi server \$Projectname (sono tutti interconnessi)"; $a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Inserisci il mio indirizzo \$Projectname nel riquadro di ricerca del sito."; $a->strings["or visit "] = "oppure visita "; $a->strings["3. Click [Connect]"] = "3. Clicca su [Aggiungi]"; +$a->strings["Unable to lookup recipient."] = "Impossibile associare un destinatario."; +$a->strings["Unable to communicate with requested channel."] = "Impossibile comunicare con il canale richiesto."; +$a->strings["Cannot verify requested channel."] = "Impossibile verificare il canale richiesto."; +$a->strings["Selected channel has private message restrictions. Send failed."] = "Il canale ha delle regole restrittive per la ricezione dei messaggi privati. Invio fallito."; +$a->strings["Messages"] = "Messaggi"; +$a->strings["Message recalled."] = "Messaggio revocato."; +$a->strings["Conversation removed."] = "Conversazione rimossa."; +$a->strings["Requested channel is not in this network"] = "Il canale cercato non è in questa rete"; +$a->strings["Send Private Message"] = "Invia un messaggio privato"; +$a->strings["To:"] = "A:"; +$a->strings["Subject:"] = "Oggetto:"; +$a->strings["Send"] = "Invia"; +$a->strings["Delete message"] = "Elimina il messaggio"; +$a->strings["Delivery report"] = "Rapporto di trasmissione"; +$a->strings["Recall message"] = "Revoca il messaggio"; +$a->strings["Message has been recalled."] = "Il messaggio è stato revocato."; +$a->strings["Delete Conversation"] = "Elimina la conversazione"; +$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Non è disponibile alcun modo sicuro di comunicare con questo canale. <strong>Se possibile</strong>, prova a rispondere direttamente dalla pagina del profilo del mittente."; +$a->strings["Send Reply"] = "Invia la risposta"; +$a->strings["Your message for %s (%s):"] = "Il tuo messaggio per %s (%s):"; $a->strings["[Embedded content - reload page to view]"] = "[Contenuto incorporato - ricarica la pagina per visualizzarlo correttamente]"; $a->strings["Source of Item"] = "Sorgente"; $a->strings["Name is required"] = "Il nome è obbligatorio"; @@ -1901,9 +1903,11 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ca $a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Abilita la modalità esperto per fare cambiamenti! (in <a href=\"settings/features\">Impostazioni > Funzionalità opzionali</a>)"; $a->strings["Miscellaneous Settings"] = "Impostazioni varie"; $a->strings["Default photo upload folder"] = "Cartella predefinita per le foto caricate"; +$a->strings["%Y - current year, %m - current month"] = "%Y - anno corrente, %m - mese corrente"; $a->strings["Default file upload folder"] = "Cartella predefinita per i file caricati"; $a->strings["Personal menu to display in your channel pages"] = "Menu personale da mostrare sulle pagine del tuo canale"; $a->strings["Remove this channel."] = "Elimina questo canale."; +$a->strings["Firefox Share \$Projectname provider"] = "Funzionalità Firefox Share per \$Projectname"; $a->strings["Xchan Lookup"] = "Ricerca canale"; $a->strings["Lookup xchan beginning with (or webbie): "] = "Cerca un canale (o un webbie) che inizia per:"; $a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Hai creato %1$.0f dei %2$.0f canali permessi."; @@ -1969,12 +1973,19 @@ $a->strings["Visit %s's profile [%s]"] = "Visita il profilo di %s [%s]"; $a->strings["Location not found."] = "Indirizzo non trovato."; $a->strings["Location lookup failed."] = "La ricerca dell'indirizzo è fallita."; $a->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."; +$a->strings["Syncing locations"] = "Sincronizzazione tra hub"; $a->strings["No locations found."] = "Nessun indirizzo trovato."; $a->strings["Manage Channel Locations"] = "Modifica gli indirizzi del canale"; $a->strings["Location (address)"] = "Indirizzo"; $a->strings["Primary Location"] = "Indirizzo primario"; $a->strings["Drop location"] = "Elimina un indirizzo"; +$a->strings["Sync now"] = "Sincronizza ora"; +$a->strings["Please wait several minutes between consecutive operations."] = "Si raccomanda di attendere alcuni minuti prima di effettuare una nuova sincronizzazione."; +$a->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 sui loro hub e rimuovendoli."; +$a->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."; $a->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."; +$a->strings["Share content from Firefox to \$Projectname"] = "Condividi i contenuti su \$Projectname da Firefox"; +$a->strings["Activate the Firefox \$Projectname provider"] = "Attiva Firefox Share per \$Projectname"; $a->strings["\$Projectname Server - Setup"] = "Server \$Projectname - Installazione"; $a->strings["Could not connect to database."] = " Impossibile connettersi al database."; $a->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."; @@ -2109,7 +2120,7 @@ $a->strings["Homepage URL:"] = "Indirizzo home page:"; $a->strings["Religious Views:"] = "Orientamento religioso:"; $a->strings["Keywords:"] = "Parole chiave, tag:"; $a->strings["Example: fishing photography software"] = "Per esempio: pesca fotografia programmazione"; -$a->strings["Used in directory listings"] = "Visibile sugli elenchi pubblici di canali"; +$a->strings["Used in directory listings"] = "Visibile negli elenchi pubblici di canali"; $a->strings["Tell us about yourself..."] = "Raccontaci di te..."; $a->strings["Hobbies/Interests"] = "Hobby/interessi"; $a->strings["Contact information and Social Networks"] = "Contatti personali e i tuoi social network"; diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index e83610f51..d981a38b9 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1382,6 +1382,10 @@ a.rconnect:hover, a.rateme:hover, div.rateme:hover { border-radius: $radiuspx; } +#jotnets-wrapper, #jotnets-collapse { + margin-bottom: 18px; +} + .acl-list-item { width: 48%; /* fallback if browser does not support calc() */ width: calc(50% - 10px); @@ -2311,3 +2315,7 @@ nav .badge.mail-update:hover { .help-searchlist a { font-size: 130%; } + +.response-list ul { + list-style-type: none; +} diff --git a/view/tpl/acl_selector.tpl b/view/tpl/acl_selector.tpl index e8b779622..a873457fe 100755 --- a/view/tpl/acl_selector.tpl +++ b/view/tpl/acl_selector.tpl @@ -6,22 +6,32 @@ <h4 class="modal-title">{{$aclModalTitle}}</h4> </div> <div class="modal-body"> + {{if $jotnets}} + <div class="jotnets-wrapper" role="tab" id="jotnets-wrapper"> + <a data-toggle="collapse" class="btn btn-block btn-default" href="#jotnets-collapse" aria-expanded="false" aria-controls="jotnets-collapse">{{$jnetModalTitle}} <span class="caret"></span></a> + </div> + <div id="jotnets-collapse" class="panel-collapse collapse" role="tabpanel" aria-labelledby="acl-select"> + {{$jotnets}} + <div class="clear"></div> + </div> + {{/if}} + <div id="acl-wrapper"> <button id="acl-showall" class="btn btn-block btn-default"><i class="icon-globe"></i> {{$showall}}</button> <input type="text" id="acl-search" placeholder=""> + <div id="acl-list"> <div id="acl-list-content"></div> + </div> <span id="acl-fields"></span> </div> + <div class="acl-list-item" rel="acl-template" style="display:none"> <img data-src="{0}"><p>{1}</p> <button class="acl-button-hide btn btn-xs btn-default"><i class="icon-remove"></i> {{$hide}}</button> <button class="acl-button-show btn btn-xs btn-default"><i class="icon-ok"></i> {{$show}}</button> </div> - {{if $jotnets}} - {{$jotnets}} - {{/if}} </div> <div class="modal-footer clear"> <button type="button" class="btn btn-default" data-dismiss="modal">{{$aclModalDismiss}}</button> diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 4782f827b..0d375400c 100755 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -177,7 +177,7 @@ <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> <h4 class="modal-title">{{$response.title}}</h4> </div> - <div class="modal-body"> + <div class="modal-body response-list"> <ul>{{foreach $response.list as $liker}}<li role="presentation">{{$liker}}</li>{{/foreach}}</ul> </div> <div class="modal-footer clear"> |